/* ==========================================================================
   churchit — glassy marketing site
   A single design system shared by index / pricing / documentation.
   Frappe-flavoured: Inter type, indigo→violet accent, frosted glass surfaces.
   ========================================================================== */

:root {
  color-scheme: light;

  --brand:      #6366f1; /* indigo-500 */
  --brand-2:    #8b5cf6; /* violet-500 */
  --brand-3:    #ec4899; /* pink-500   */
  --brand-ink:  #4338ca;

  --ink:        #0f172a; /* slate-900 */
  --body:       #334155; /* slate-700 */
  --muted:      #64748b; /* slate-500 */
  --line:       rgba(15, 23, 42, 0.08);

  --glass:      rgba(255, 255, 255, 0.55);
  --glass-2:    rgba(255, 255, 255, 0.72);
  --glass-brd:  rgba(255, 255, 255, 0.6);
  --glass-shdw: 0 8px 40px -12px rgba(30, 27, 75, 0.28);

  --radius:     18px;
  --radius-lg:  26px;
  --maxw:       1120px;

  --grad:       linear-gradient(120deg, var(--brand) 0%, var(--brand-2) 50%, var(--brand-3) 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: #eef1fb;
  overflow-x: hidden;
}

/* Aurora mesh backdrop — fixed so glass surfaces always have something to blur */
body::before {
  content: "";
  position: fixed;
  inset: -20vmax;
  z-index: -1;
  background:
    radial-gradient(38vmax 38vmax at 12% 8%,  rgba(99,102,241,0.55), transparent 60%),
    radial-gradient(36vmax 36vmax at 88% 4%,  rgba(236,72,153,0.42), transparent 60%),
    radial-gradient(44vmax 44vmax at 78% 82%, rgba(139,92,246,0.50), transparent 62%),
    radial-gradient(40vmax 40vmax at 8% 92%,  rgba(56,189,248,0.42), transparent 60%);
  filter: saturate(1.15);
  animation: drift 26s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(0, -3%, 0) scale(1.06); }
}

/* ---- Type ---------------------------------------------------------------- */
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.28rem; font-weight: 700; }
p  { margin: 0 0 1rem; }
a  { color: var(--brand-ink); text-decoration: none; }
a:hover { text-decoration: underline; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.wrap { width: min(var(--maxw), 92%); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand-ink);
  padding: .4em .9em; border-radius: 999px;
  background: rgba(99, 102, 241, 0.12); border: 1px solid rgba(99, 102, 241, 0.25);
  backdrop-filter: blur(8px);
}
.lead { font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: var(--body); max-width: 44ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 650; font-size: 1rem; line-height: 1;
  padding: .85em 1.5em; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
/* background-origin: border-box keeps the gradient aligned to the outer edge so
   the 1px transparent border doesn't leave a mismatched colour fringe on the sides. */
.btn-primary { color: #fff; background: var(--grad); background-origin: border-box; box-shadow: 0 10px 30px -8px rgba(99,102,241,.6); }
.btn-primary:hover { box-shadow: 0 16px 40px -10px rgba(139,92,246,.7); }
.btn-ghost { color: var(--ink); background: var(--glass-2); border-color: var(--glass-brd); backdrop-filter: blur(10px); }
.btn-lg { padding: 1em 1.8em; font-size: 1.05rem; }

/* ---- Warning callout ----------------------------------------------------- */
.callout-warn {
  display: flex; gap: .65em; align-items: flex-start; text-align: left;
  margin-top: 1rem; padding: .8em 1.05em;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.38);
  border-radius: var(--radius);
  color: #92400e; font-size: .88rem; line-height: 1.5;
}
.callout-warn .callout-ico { flex: none; font-size: 1.05rem; line-height: 1.45; }
.callout-warn strong { color: #b45309; }

/* ---- Glass card ---------------------------------------------------------- */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow: var(--glass-shdw);
  border-radius: var(--radius-lg);
}

/* ---- Navbar -------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: rgba(255,255,255,0.6);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 1.5rem; height: 66px; }
.brand { display: flex; align-items: center; gap: .55em; font-weight: 800; font-size: 1.2rem; color: var(--ink); letter-spacing: -.02em; }
.nav .brand { font-size: 1.55rem; text-transform: capitalize; }
.brand:hover { text-decoration: none; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  background: var(--grad); color: #fff; font-size: 1.05rem; box-shadow: 0 6px 16px -6px rgba(99,102,241,.8);
}
.nav-links { display: flex; align-items: center; gap: .3rem; margin-left: auto; }
.nav-links a {
  color: var(--body); font-weight: 600; font-size: .95rem; padding: .5em .85em; border-radius: 10px;
}
.nav-links a:hover { color: var(--ink); background: rgba(99,102,241,.08); text-decoration: none; }
.nav-links a.active { color: var(--brand-ink); }
/* The primary CTA in the nav is a button, not a link — keep its button colors
   (the generic `.nav-links a` rule above is more specific than `.btn-primary`). */
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover { color: #fff; background: var(--grad); background-origin: border-box; }
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; cursor: pointer; padding: .4em; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* Dark-mode toggle button */
.theme-toggle {
  display: inline-grid; place-items: center; flex: none;
  width: 40px; height: 40px; margin-left: .2rem; padding: 0;
  border-radius: 999px; cursor: pointer; color: var(--ink);
  background: rgba(99, 102, 241, 0.12); border: 1px solid rgba(99, 102, 241, 0.25);
  backdrop-filter: blur(10px);
  transition: transform .15s ease, background .2s ease, color .2s ease;
}
.theme-toggle:hover { transform: translateY(-2px); background: rgba(99, 102, 241, 0.2); }
.theme-toggle svg { width: 18px; height: 18px; display: block; }
.theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

@media (max-width: 820px) {
  .nav-links {
    position: absolute; top: 66px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line); padding: .5rem 4%;
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: .18s ease;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: .8em; }
  .nav-links .btn { margin-top: .4rem; text-align: center; justify-content: center; }
  .nav-links .theme-toggle { margin: .5rem auto; }
  .nav-toggle { display: block; }
}

/* ---- Sections ------------------------------------------------------------ */
section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-head { max-width: 46ch; margin: 0 auto clamp(2rem, 4vw, 3.2rem); }

/* Hero */
.hero { padding-top: clamp(3rem, 7vw, 5rem); padding-bottom: clamp(3rem, 7vw, 5rem); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { margin-top: 1rem; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

/* Floating app mockup */
.mock { padding: 14px; }
.mock-bar { display: flex; gap: 7px; padding: 4px 6px 12px; }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: #cbd5e1; }
.mock-bar i:nth-child(1){ background:#fb7185; } .mock-bar i:nth-child(2){ background:#fbbf24; } .mock-bar i:nth-child(3){ background:#34d399; }
.mock-screen { border-radius: 16px; background: rgba(255,255,255,.7); border: 1px solid var(--glass-brd); padding: 16px; }
.mock-row { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 12px; background: rgba(255,255,255,.6); margin-bottom: 8px; border: 1px solid var(--line); }
.mock-row .dot { width: 30px; height: 30px; border-radius: 9px; background: var(--grad); flex: none; opacity: .9; }
.mock-row .ln { height: 8px; border-radius: 6px; background: #e2e8f0; }
.mock-row .ln.w1 { width: 60%; } .mock-row .ln.w2 { width: 38%; }
.pill { display: inline-flex; align-items: center; font-size: .7rem; font-weight: 700; color: var(--brand-ink); background: rgba(99,102,241,.12); padding: .3em .7em; border-radius: 999px; white-space: nowrap; }
.pill.soft { color: #047857; background: rgba(16,185,129,.16); }
.mock-row .pill { margin-left: auto; }

/* Detailed dashboard preview */
.mock-bar { align-items: center; }
.mock-url { margin-left: 12px; font-size: .72rem; font-weight: 600; color: var(--muted); background: rgba(255,255,255,.65); border: 1px solid var(--line); padding: .26em .8em; border-radius: 999px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mock-main { display: flex; flex-direction: column; gap: 11px; min-width: 0; }
.mock-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.mock-title { font-weight: 800; color: var(--ink); font-size: 1rem; letter-spacing: -.02em; }
.mock-sub { font-size: .74rem; color: var(--muted); font-weight: 600; margin-top: 2px; }
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mock-kpi { background: rgba(255,255,255,.62); border: 1px solid var(--line); border-radius: 12px; padding: 10px 11px; }
.mock-kpi .k-num { font-weight: 800; color: var(--ink); font-size: 1.02rem; letter-spacing: -.02em; }
.mock-kpi .k-lbl { font-size: .64rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-top: 3px; }
.mock-card { background: rgba(255,255,255,.62); border: 1px solid var(--line); border-radius: 12px; padding: 12px; }
.mock-card-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.mock-lbl { font-size: .72rem; font-weight: 700; color: var(--muted); }
.mock-bars { display: flex; align-items: flex-end; gap: 7px; height: 52px; }
.mock-bars span { flex: 1; height: var(--h); background: var(--grad); border-radius: 5px 5px 3px 3px; opacity: .82; }
.mock-bars span:last-child { opacity: 1; }
.mock-list { display: flex; flex-direction: column; gap: 7px; }
.mock-list .mock-row { margin-bottom: 0; padding: 9px 11px; }
.mock-row .txt { flex: 1; min-width: 0; font-size: .74rem; font-weight: 600; color: var(--body); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-row .dot { display: grid; place-items: center; font-size: .6rem; font-weight: 800; color: #fff; letter-spacing: .02em; }
.mock-row .dot.alt  { background: linear-gradient(120deg, var(--brand-2), var(--brand-3)); }
.mock-row .dot.alt2 { background: linear-gradient(120deg, #0ea5e9, var(--brand-2)); }
.floaty { animation: floaty 6s ease-in-out infinite alternate; }
@keyframes floaty { from { transform: translateY(0) rotate(-.6deg); } to { transform: translateY(-14px) rotate(.6deg); } }

/* Stats strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; }
.stats div { padding: 1.5rem 1rem; text-align: center; }
.stats .num { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.stats .lbl { font-size: .82rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
@media (max-width: 640px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* Feature grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }
.feature {
  padding: 1.6rem; display: flex; flex-direction: column; gap: .6rem;
  transition: transform .2s ease, box-shadow .2s ease; color: inherit;
}
.feature:hover { transform: translateY(-6px); text-decoration: none; box-shadow: 0 22px 50px -20px rgba(67,56,202,.45); }
.feature .ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem; background: rgba(255,255,255,.6); border: 1px solid var(--glass-brd); }
.feature h3 { margin: .3rem 0 0; }
.feature p { color: var(--body); margin: 0; font-size: .96rem; }
.feature .more { margin-top: auto; font-weight: 700; color: var(--brand-ink); font-size: .9rem; }

/* Split "why" band */
.split { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.pillar { padding: 1.6rem; }
.pillar .ico { font-size: 1.7rem; }
.pillar h3 { margin: .6rem 0 .3rem; }

/* CTA band */
.cta-band { padding: clamp(2.5rem, 6vw, 4rem); text-align: center; overflow: hidden; position: relative; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); }
.cta-band { background: var(--grad); border: none; }
.cta-band .btn-ghost { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.4); }
.cta-band .btn-primary { background: #fff; color: var(--brand-ink); box-shadow: 0 12px 30px -8px rgba(0,0,0,.3); }

/* ---- Pricing ------------------------------------------------------------- */
.price-card { max-width: 560px; margin: 0 auto; padding: 2.6rem; text-align: center; position: relative; }
.price-card .tag { position: absolute; top: 1.4rem; right: 1.4rem; font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--grad); padding: .4em .9em; border-radius: 999px; }
.price-amount { font-size: clamp(4rem, 12vw, 6.5rem); font-weight: 800; line-height: 1; letter-spacing: -.04em; }
.price-amount small { font-size: 1.4rem; font-weight: 700; color: var(--muted); letter-spacing: 0; }
.price-list { list-style: none; padding: 0; margin: 1.8rem 0; text-align: left; display: grid; gap: .7rem; }
.price-list li { display: flex; gap: .7em; align-items: flex-start; }
.price-list .ck { color: #10b981; font-weight: 900; flex: none; }
.strike { position: relative; color: var(--muted); }
.strike::after { content: ""; position: absolute; left: -4px; right: -4px; top: 52%; height: 3px; background: var(--brand-3); border-radius: 3px; transform: rotate(-4deg); }

/* Comparison */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 720px) { .compare { grid-template-columns: 1fr; } }
.compare .col { padding: 1.8rem; }
.compare .col.them { background: rgba(255,255,255,.4); }
.compare .col h3 { display: flex; align-items: center; gap: .5em; }
.compare ul { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .8rem; }
.compare li { display: flex; gap: .7em; align-items: flex-start; font-size: .98rem; }
.compare .them li::before { content: "✕"; color: #f43f5e; font-weight: 800; flex: none; }
.compare .us li::before { content: "✓"; color: #10b981; font-weight: 800; flex: none; }
.compare .us { border: 1.5px solid rgba(99,102,241,.5); }

/* FAQ */
.faq { display: grid; gap: 1rem; max-width: 760px; margin-inline: auto; }
.faq details { padding: 1.2rem 1.5rem; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--ink); font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--brand); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: .8rem 0 0; color: var(--body); }

/* ---- Documentation ------------------------------------------------------- */
.doc-layout { display: grid; grid-template-columns: 250px 1fr; gap: 2.2rem; align-items: start; padding-top: 2.5rem; }
@media (max-width: 900px) { .doc-layout { grid-template-columns: 1fr; } }
.doc-side { position: sticky; top: 84px; padding: 1.2rem; }
@media (max-width: 900px) { .doc-side { position: static; } }
.doc-side .title { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; margin: 0 0 .8rem; padding-left: .6rem; }
.doc-side nav { display: grid; gap: 2px; }
.doc-side a { display: flex; align-items: center; gap: .6em; padding: .5em .6em; border-radius: 10px; color: var(--body); font-weight: 600; font-size: .93rem; }
.doc-side a:hover { background: rgba(99,102,241,.08); text-decoration: none; color: var(--ink); }
.doc-side a.active { background: rgba(99,102,241,.14); color: var(--brand-ink); }

.doc-main { min-width: 0; }
.doc-hero { padding: 2.2rem 2.4rem; margin-bottom: 1.6rem; }
.doc-section { padding: 2rem 2.4rem; margin-bottom: 1.4rem; scroll-margin-top: 84px; }
.doc-section > h2 { display: flex; align-items: center; gap: .5em; margin-top: 0; }
.doc-section h3 { margin-top: 1.8rem; font-size: 1.15rem; }
.doc-section p { color: var(--body); }
.doc-section a { font-weight: 600; }
.doc-section ul, .doc-section ol { padding-left: 1.3rem; }
.doc-badge { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--brand-ink); background: rgba(99,102,241,.12); padding: .3em .7em; border-radius: 999px; }

/* ---- Footer -------------------------------------------------------------- */
footer { padding: 3rem 0 2.5rem; border-top: 1px solid var(--line); margin-top: 2rem; }
.foot { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.foot .brand { font-size: 1.05rem; }
.foot-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.foot-links a { color: var(--muted); font-weight: 600; font-size: .92rem; }
.foot small { display: block; margin-top: 1.4rem; color: var(--muted); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  body::before, .floaty { animation: none; }
}

/* ==========================================================================
   Dark mode
   Activated by data-theme="dark" on <html> (set by the inline <head> script +
   the header toggle). Mostly a swap of the design-system variables; the extra
   rules below re-theme the handful of surfaces/accents that use literal colours
   which can't be reached through a variable.
   ========================================================================== */
:root[data-theme="dark"] {
  color-scheme: dark;

  --brand-ink:  #a5b4fc; /* indigo-300 — accents/links legible on dark */

  --ink:        #f1f5f9; /* slate-100 */
  --body:       #cbd5e1; /* slate-300 */
  --muted:      #94a3b8; /* slate-400 */
  --line:       rgba(255, 255, 255, 0.10);

  --glass:      rgba(30, 41, 59, 0.55);
  --glass-2:    rgba(30, 41, 59, 0.72);
  --glass-brd:  rgba(255, 255, 255, 0.12);
  --glass-shdw: 0 8px 40px -12px rgba(0, 0, 0, 0.55);
}

:root[data-theme="dark"] body { background: #0b1020; }
/* Dim the aurora so it glows rather than glares behind dark glass. */
:root[data-theme="dark"] body::before { opacity: .55; }

/* Frosted surfaces that use literal white fills in light mode. */
:root[data-theme="dark"] .nav { background: rgba(15, 23, 42, 0.65); }
:root[data-theme="dark"] .mock-screen,
:root[data-theme="dark"] .mock-row,
:root[data-theme="dark"] .mock-url,
:root[data-theme="dark"] .mock-kpi,
:root[data-theme="dark"] .mock-card,
:root[data-theme="dark"] .feature .ico { background: rgba(30, 41, 59, 0.60); }
:root[data-theme="dark"] .mock-row .ln { background: #334155; }
:root[data-theme="dark"] .compare .col.them { background: rgba(30, 41, 59, 0.40); }

/* Accents/callouts whose literal colours need lightening for dark backgrounds. */
:root[data-theme="dark"] .pill.soft { color: #6ee7b7; background: rgba(16, 185, 129, 0.18); }
:root[data-theme="dark"] .callout-warn { color: #fcd34d; background: rgba(245, 158, 11, 0.14); border-color: rgba(245, 158, 11, 0.40); }
:root[data-theme="dark"] .callout-warn strong { color: #fde68a; }
/* The CTA-band primary button stays white in both themes, so keep its text dark. */
:root[data-theme="dark"] .cta-band .btn-primary { color: #4338ca; }
/* Keep the theme toggle's frosted-glass look in dark mode (the light-theme
   indigo tint would disappear against the dark nav). */
:root[data-theme="dark"] .theme-toggle { background: var(--glass-2); border-color: var(--glass-brd); }
:root[data-theme="dark"] .theme-toggle:hover { background: var(--glass); }

@media (max-width: 820px) {
  :root[data-theme="dark"] .nav-links { background: rgba(11, 16, 32, 0.95); }
}
