/* ============================================================================
   FinallyAnEasyCRM.com

   A sibling to tifftheaiprincess.com, not a copy of it. Same brand family:
   the royal / paper / champagne palette and the Cormorant + Jakarta pairing.
   But the hierarchy is deliberately inverted so the two never read as the
   same page:

     her site              this site
     --------------------  ---------------------------------
     serif display         sans display, serif italic accent
     floating glass pill   solid anchored top bar
     double-frame bezel    single hairline card
     numbered eyebrow pill ruled kicker label
     logo-on-a-plinth hero product UI hero

   ========================================================================= */

:root {
  /* Brand, sampled from the AI Princess wordmark */
  --royal:        #2D4C8A;
  --royal-deep:   #1E3563;
  --royal-ink:    #14203A;
  --royal-mid:    #4A6BA8;
  --royal-soft:   #8CA3CC;
  --royal-mist:   #DEE5F1;

  /* Paper. Cooler and flatter than her cream, so this reads as a tool. */
  --paper:        #F6F6F4;
  --paper-alt:    #EFF1F5;
  --paper-pure:   #FFFFFF;

  /* Champagne. Reserved for the login door and small accents. */
  --gold:         #B99755;
  --gold-soft:    #E2D3AF;
  --gold-mist:    #F5EEE0;

  --sage:         #4C7A5E;
  --rose:         #A25A5A;

  /* Hairlines and fills, defined once so every card agrees */
  --line:      rgba(20, 32, 58, 0.10);
  --line-soft: rgba(20, 32, 58, 0.07);
  --fill:      rgba(45, 76, 138, 0.045);

  --font-accent: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-ui:     "Plus Jakarta Sans", "Segoe UI Variable", system-ui, sans-serif;

  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-glide:  cubic-bezier(0.16, 1, 0.3, 1);

  --gutter: clamp(1.25rem, 5vw, 2.75rem);
  --shell:  1200px;
  --r-lg:   18px;
  --r-md:   12px;
  --r-sm:   9px;

  --lift-sm: 0 1px 2px rgba(20, 32, 58, 0.05), 0 4px 12px -6px rgba(20, 32, 58, 0.10);
  --lift-md: 0 1px 3px rgba(20, 32, 58, 0.06), 0 14px 32px -14px rgba(20, 32, 58, 0.20);
  --lift-lg: 0 2px 6px rgba(20, 32, 58, 0.05), 0 30px 60px -28px rgba(20, 32, 58, 0.28);

  --nav-h:  68px;
  --z-nav:  70;
  --z-menu: 80;
}

/* ---------- 1. RESET ---------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1.5rem);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--royal-ink);
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* height:auto is load-bearing. The logos carry width/height attributes to
   reserve space, and those double as presentational hints, so without this
   any CSS setting only width would stretch the mark to the attribute height. */
img { display: block; max-width: 100%; height: auto; }
svg { display: block; max-width: 100%; }
h1, h2, h3, h4, p, figure, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: rgba(45, 76, 138, 0.15); }

.skip {
  position: absolute; left: 0.75rem; top: -4rem; z-index: 200;
  padding: 0.7rem 1.15rem; border-radius: var(--r-sm);
  background: var(--royal-ink); color: #fff;
  font-size: 0.85rem; font-weight: 600;
  transition: top 0.3s var(--ease-spring);
}
.skip:focus { top: 0.75rem; }

/* The paper grain belonged to her editorial treatment; this surface is flat. */
.grain { display: none; }

/* ---------- 2. LAYOUT ---------- */

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter); }
.shell--narrow { max-width: 880px; }

.section { padding-block: clamp(5rem, 10vw, 8.5rem); position: relative; }
.section--tight { padding-block: clamp(4rem, 7vw, 6rem); }
.section--alt { background: var(--paper-alt); }

.section--ink { background: var(--royal-ink); color: #fff; }
.section--ink::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 12% 0%, rgba(74, 107, 168, 0.28), transparent 70%),
    radial-gradient(40% 40% at 92% 100%, rgba(185, 151, 85, 0.13), transparent 72%);
}
.section--ink > * { position: relative; }

/* ---------- 3. TYPE ---------- */

/* Kicker: a short rule, then a label. Replaces her numbered pill entirely. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--royal);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px; flex: none;
  border-radius: 2px;
  background: var(--gold);
}
.eyebrow--ink { color: var(--gold-soft); }
.eyebrow .dot { display: none; }

/* Display: sans-led and tight. The serif appears only as an italic accent,
   the exact inverse of her ratio. */
.display {
  font-family: var(--font-ui);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.038em;
  text-wrap: balance;
}
.display em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.012em;
  /* A serif runs optically small beside a bold sans, so it gets nudged up. */
  font-size: 1.12em;
  line-height: 0.9;
  color: var(--royal);
}
.section--ink .display em { color: var(--gold-soft); }

.display--xl { font-size: clamp(2.6rem, 5.4vw, 4.25rem); }
.display--lg { font-size: clamp(2.05rem, 3.9vw, 3.05rem); }
.display--md { font-size: clamp(1.7rem, 2.9vw, 2.25rem); }

.lede {
  font-size: clamp(1rem, 1.15vw, 1.115rem);
  line-height: 1.65;
  color: rgba(20, 32, 58, 0.66);
  max-width: 56ch;
  text-wrap: pretty;
}
.section--ink .lede { color: rgba(255, 255, 255, 0.64); }

.muted { color: rgba(20, 32, 58, 0.56); }
.section--ink .muted { color: rgba(255, 255, 255, 0.54); }
.fine { font-size: 0.8125rem; line-height: 1.55; }

.section-head { max-width: 60ch; }
.section-head .eyebrow { margin-bottom: 1.25rem; }
.section-head .display { margin-bottom: 1.1rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lede { margin-inline: auto; }
.section-head--center .eyebrow { justify-content: center; }

.strip-label {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(20, 32, 58, 0.40);
}

/* ---------- 4. BUTTONS ---------- */
/* Squared-off and flat: no capsule, no nested circular disc. */

.btn {
  --btn-bg: var(--royal);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.15rem;
  border-radius: var(--r-sm);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  white-space: nowrap;
  transition: transform 0.4s var(--ease-spring),
              box-shadow 0.4s var(--ease-spring),
              background-color 0.3s var(--ease-glide);
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--lift-md); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--royal); outline-offset: 2px; }

/* The markup wraps each arrow in .nest; it used to be a circular disc and is
   now a plain inline glyph that nudges on hover. */
.btn .nest {
  display: inline-flex;
  align-items: center;
  width: auto; height: auto;
  background: none;
  box-shadow: none;
  opacity: 0.7;
  transition: transform 0.4s var(--ease-spring), opacity 0.3s var(--ease-glide);
}
.btn:hover .nest { transform: translateX(2px); opacity: 1; }
.btn .nest svg { width: 14px; height: 14px; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--royal-ink);
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn--ghost:hover { background: rgba(45, 76, 138, 0.05); box-shadow: inset 0 0 0 1px rgba(45, 76, 138, 0.22); }

/* The CRM login. Champagne, so it reads as a door rather than a purchase. */
.btn--login { --btn-bg: var(--gold); --btn-fg: #241B08; }
.btn--login:hover { --btn-bg: #A8874A; }

.btn--onink { --btn-bg: #fff; --btn-fg: var(--royal-ink); }
.btn--onink-ghost {
  --btn-bg: transparent;
  --btn-fg: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}
.btn--onink-ghost:hover { background: rgba(255, 255, 255, 0.07); }

.btn--sm { padding: 0.55rem 0.9rem; font-size: 0.835rem; }
.btn--sm .nest svg { width: 12px; height: 12px; }

.actions { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }

/* ---------- 5. CARDS ---------- */
/* One hairline, one radius. .bezel is now a bare wrapper so the existing
   markup keeps working without the double frame. */

.bezel { border-radius: var(--r-lg); }
.bezel__core {
  height: 100%;
  padding: clamp(1.35rem, 2.2vw, 1.85rem);
  border-radius: var(--r-lg);
  background: var(--paper-pure);
  border: 1px solid var(--line);
  transition: border-color 0.4s var(--ease-glide),
              box-shadow 0.4s var(--ease-glide),
              transform 0.4s var(--ease-spring);
}
.bezel:hover .bezel__core {
  border-color: rgba(45, 76, 138, 0.22);
  box-shadow: var(--lift-md);
  transform: translateY(-2px);
}

.bezel--ink .bezel__core { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.11); }
.bezel--ink:hover .bezel__core {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}
.bezel--gold .bezel__core { border-color: rgba(185, 151, 85, 0.35); }

.card { display: flex; flex-direction: column; gap: 0.65rem; height: 100%; }

.card__icon {
  display: grid; place-items: center;
  width: 2.35rem; height: 2.35rem; flex: none;
  margin-bottom: 0.3rem;
  border-radius: var(--r-sm);
  background: var(--fill);
  color: var(--royal);
}
.card__icon svg { width: 16px; height: 16px; }
.bezel--ink .card__icon { background: rgba(255, 255, 255, 0.08); color: var(--gold-soft); }

.card__title { font-size: 1rem; font-weight: 650; letter-spacing: -0.022em; }
.card__body  { font-size: 0.9rem; line-height: 1.6; color: rgba(20, 32, 58, 0.62); }
.bezel--ink .card__body { color: rgba(255, 255, 255, 0.6); }

/* ---------- 6. TOP BAR ---------- */
/* Solid, full width, anchored to the page, not a floating glass capsule. */

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(246, 246, 244, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease-glide), background-color 0.35s var(--ease-glide);
}
.nav-wrap.is-stuck { border-bottom-color: var(--line); background: rgba(246, 246, 244, 0.95); }

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--nav-h);
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.nav__brand { display: flex; align-items: center; gap: 0.55rem; flex: none; }
.nav__brand img { width: auto; height: 25px; }
.nav__brand-txt { font-size: 0.95rem; font-weight: 700; letter-spacing: -0.032em; white-space: nowrap; }
@media (max-width: 420px) { .nav__brand-txt { display: none; } }

.nav__links { display: none; align-items: center; gap: 0.15rem; margin-inline: auto; }
@media (min-width: 1000px) { .nav__links { display: flex; } }

.nav__link {
  padding: 0.45rem 0.7rem;
  border-radius: var(--r-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(20, 32, 58, 0.66);
  transition: color 0.3s var(--ease-glide), background-color 0.3s var(--ease-glide);
}
.nav__link:hover { color: var(--royal-ink); background: rgba(45, 76, 138, 0.055); }
.nav__link.is-active { color: var(--royal); }

.nav__cta { display: flex; align-items: center; gap: 0.45rem; margin-left: auto; }
@media (min-width: 1000px) { .nav__cta { margin-left: 0; } }
.nav__cta .is-desk { display: none; }
@media (min-width: 620px) { .nav__cta .is-desk { display: inline-flex; } }

.nav__toggle {
  display: grid; place-items: center;
  width: 2.35rem; height: 2.35rem;
  border-radius: var(--r-sm);
  box-shadow: inset 0 0 0 1px var(--line);
  color: var(--royal-ink);
}
@media (min-width: 1000px) { .nav__toggle { display: none; } }
.nav__toggle svg { width: 16px; height: 16px; }

/* Mobile sheet */
.menu {
  position: fixed; inset: 0; z-index: var(--z-menu);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  background: var(--paper);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease-glide), visibility 0.35s;
}
.menu.is-open { opacity: 1; visibility: visible; }
.menu__inner { width: min(440px, 100%); margin-inline: auto; }
.menu__link {
  display: block;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.menu__actions { display: grid; gap: 0.55rem; margin-top: 1.75rem; }
.menu__actions .btn { width: 100%; justify-content: center; }
.menu__close {
  position: absolute; top: 1.15rem; right: var(--gutter);
  display: grid; place-items: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: var(--r-sm);
  box-shadow: inset 0 0 0 1px var(--line);
}
.menu__close svg { width: 16px; height: 16px; }

/* ---------- 7. HERO ---------- */

.hero {
  position: relative;
  padding-block: clamp(3.25rem, 6vw, 5.5rem) clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: -30% -20% auto 40%; height: 120%;
  pointer-events: none;
  background: radial-gradient(45% 45% at 60% 30%, rgba(45, 76, 138, 0.09), transparent 70%);
}
.hero__grid { position: relative; display: grid; gap: clamp(2.75rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 1000px) { .hero__grid { grid-template-columns: 1fr 1fr; } }

.hero .display { margin-block: 1.3rem 1.1rem; }
.hero .lede { margin-bottom: 1.8rem; }

.hero__trust {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.25rem;
  margin-top: 1.6rem;
  font-size: 0.8125rem;
  color: rgba(20, 32, 58, 0.55);
}
.hero__trust li { display: flex; align-items: center; gap: 0.4rem; }
.hero__trust svg { width: 12px; height: 12px; color: var(--sage); flex: none; }

/* ---------- 8. HERO PRODUCT MOCK ---------- */
/* A slice of the actual inbox, not the brand mark on a plinth. */

.stage { position: relative; }

.mock {
  border-radius: var(--r-lg);
  background: var(--paper-pure);
  border: 1px solid var(--line);
  box-shadow: var(--lift-lg);
  overflow: hidden;
}

.mock__bar {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 0.95rem;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(20, 32, 58, 0.015);
}
.mock__dots { display: flex; gap: 5px; }
.mock__dots i { width: 8px; height: 8px; border-radius: 999px; background: rgba(20, 32, 58, 0.13); }
.mock__title { font-size: 0.75rem; font-weight: 600; letter-spacing: -0.015em; color: rgba(20, 32, 58, 0.55); }
.mock__live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sage);
}
.mock__live i {
  width: 6px; height: 6px; border-radius: 999px; background: var(--sage);
  animation: blip 2.4s var(--ease-glide) infinite;
}
@keyframes blip { 0%, 100% { opacity: 1; } 50% { opacity: 0.28; } }

.mock__rows { padding: 0.35rem; }

.thread {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.65rem;
  border-radius: var(--r-md);
}
.thread.is-sel { background: rgba(45, 76, 138, 0.05); }

.thread__av {
  display: grid; place-items: center;
  width: 2.05rem; height: 2.05rem; flex: none;
  border-radius: 999px;
  background: var(--fill);
  color: var(--royal);
  font-size: 0.69rem; font-weight: 700; letter-spacing: -0.01em;
}
.thread__av--gold { background: var(--gold-mist); color: #8A6E36; }
.thread__av--sage { background: rgba(76, 122, 94, 0.12); color: var(--sage); }

.thread__body { min-width: 0; }
.thread__who { font-size: 0.815rem; font-weight: 650; letter-spacing: -0.02em; }
.thread__msg {
  font-size: 0.775rem;
  color: rgba(20, 32, 58, 0.55);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.thread__meta { display: flex; flex-direction: column; align-items: flex-end; gap: 0.28rem; flex: none; }
.thread__chan {
  padding: 0.14rem 0.4rem;
  border-radius: 5px;
  background: var(--fill);
  font-size: 0.59rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--royal);
}
.thread__chan--gold { background: var(--gold-mist); color: #8A6E36; }
.thread__chan--sage { background: rgba(76, 122, 94, 0.12); color: var(--sage); }
.thread__time { font-size: 0.655rem; color: rgba(20, 32, 58, 0.38); }

/* The approval card: the one behaviour that defines the product. */
.approve {
  margin: 0.35rem;
  padding: 0.85rem 0.95rem;
  border-radius: var(--r-md);
  background: var(--royal-ink);
  color: #fff;
}
.approve__head {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-soft);
}
.approve__head svg { width: 12px; height: 12px; }
.approve__txt { margin-top: 0.5rem; font-size: 0.815rem; line-height: 1.5; color: rgba(255, 255, 255, 0.86); }
.approve__row { display: flex; align-items: center; gap: 0.4rem; margin-top: 0.75rem; }
.approve__btn { padding: 0.34rem 0.7rem; border-radius: 6px; font-size: 0.715rem; font-weight: 650; background: #fff; color: var(--royal-ink); }
.approve__btn--ghost { background: transparent; color: rgba(255, 255, 255, 0.6); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18); }
.approve__note { margin-left: auto; font-size: 0.655rem; color: rgba(255, 255, 255, 0.4); }

/* One floating stat, rather than three drifting chips */
.stat {
  position: absolute;
  right: -0.9rem; bottom: -2.1rem;
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.65rem 0.9rem;
  border-radius: var(--r-md);
  background: var(--paper-pure);
  border: 1px solid var(--line);
  box-shadow: var(--lift-md);
}
.stat__n { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.045em; line-height: 1; }
.stat__l { font-size: 0.67rem; line-height: 1.3; color: rgba(20, 32, 58, 0.52); }
@media (max-width: 560px) { .stat { right: 0; bottom: -1rem; } }

/* ---------- 9. PROOF STRIP ---------- */

.marquee {
  position: relative; overflow: hidden; padding-block: 0.85rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track { display: flex; gap: 2.75rem; width: max-content; animation: slide 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.875rem; font-weight: 500;
  color: rgba(20, 32, 58, 0.45);
  white-space: nowrap;
}
.marquee__item svg { width: 14px; height: 14px; color: rgba(45, 76, 138, 0.35); flex: none; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- 10. REPLACES LEDGER ---------- */

.ledger { display: grid; gap: 1rem; margin-top: clamp(2.5rem, 4vw, 3.5rem); align-items: stretch; }
@media (min-width: 900px) { .ledger { grid-template-columns: 1fr auto 1fr; } }

.ledger__list { display: flex; flex-direction: column; gap: 0.4rem; }
.ledger__row {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.6rem 0.85rem;
  border-radius: var(--r-sm);
  background: var(--paper-pure);
  border: 1px solid var(--line-soft);
  font-size: 0.9rem;
  color: rgba(20, 32, 58, 0.58);
}
.ledger__row s { text-decoration-color: rgba(162, 90, 90, 0.5); text-decoration-thickness: 1.5px; }
.ledger__row .x {
  display: grid; place-items: center;
  width: 1.2rem; height: 1.2rem; flex: none;
  border-radius: 4px;
  background: rgba(162, 90, 90, 0.1);
  color: var(--rose);
}
.ledger__row .x svg { width: 9px; height: 9px; }

.ledger__arrow { display: grid; place-items: center; padding: 0.75rem; color: rgba(45, 76, 138, 0.3); }
.ledger__arrow svg { width: 22px; height: 22px; }
@media (max-width: 899px) { .ledger__arrow { transform: rotate(90deg); } }

.ledger__won { display: grid; }
.won {
  display: flex; flex-direction: column; justify-content: center;
  height: 100%;
  padding: clamp(1.75rem, 3vw, 2.4rem);
  border-radius: var(--r-lg);
  background: var(--royal-ink);
  color: #fff;
  box-shadow: var(--lift-lg);
}
.won .eyebrow { margin-bottom: 1.1rem; }
.won h3 { font-size: clamp(1.35rem, 2.3vw, 1.8rem); font-weight: 700; letter-spacing: -0.035em; line-height: 1.14; }
.won h3 em { font-family: var(--font-accent); font-style: italic; font-weight: 500; font-size: 1.12em; color: var(--gold-soft); }
.won p { margin-top: 0.85rem; font-size: 0.9rem; line-height: 1.6; color: rgba(255, 255, 255, 0.64); }
.won ul { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 1.3rem; }
.won li {
  padding: 0.28rem 0.6rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.715rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- 11. FEATURE EXPLORER ---------- */

.explorer { display: grid; gap: 1rem; margin-top: clamp(2.5rem, 4vw, 3.5rem); }
@media (min-width: 1000px) {
  .explorer { grid-template-columns: 272px 1fr; gap: 1.25rem; align-items: start; }
  /* Matched to the ten-item rail, so switching to a shorter tab does not
     make the page jump. */
  .explorer > .bezel { min-height: 34rem; }
}

.explorer__rail { display: flex; gap: 0.3rem; overflow-x: auto; padding-bottom: 0.5rem; scrollbar-width: thin; }
@media (min-width: 1000px) {
  .explorer__rail {
    flex-direction: column; overflow: visible; padding-bottom: 0;
    position: sticky; top: calc(var(--nav-h) + 1.5rem);
  }
}

.tab {
  display: flex; align-items: center; gap: 0.6rem;
  flex: none; width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: var(--r-sm);
  text-align: left;
  color: rgba(20, 32, 58, 0.68);
  border-left: 2px solid transparent;
  transition: background-color 0.3s var(--ease-glide), color 0.3s var(--ease-glide),
              border-color 0.3s var(--ease-glide);
}
@media (max-width: 999px) { .tab { width: max-content; border-left: 0; border-bottom: 2px solid transparent; } }
.tab:hover { background: rgba(45, 76, 138, 0.045); }
.tab:focus-visible { outline: 2px solid var(--royal); outline-offset: -2px; }
.tab.is-active { background: rgba(45, 76, 138, 0.07); border-color: var(--royal); color: var(--royal-ink); }

.tab__ico {
  display: grid; place-items: center;
  width: 1.7rem; height: 1.7rem; flex: none;
  border-radius: 6px;
  color: rgba(45, 76, 138, 0.5);
  transition: color 0.3s var(--ease-glide);
}
.tab__ico svg { width: 15px; height: 15px; }
.tab.is-active .tab__ico { color: var(--royal); }
.tab__txt { min-width: 0; }
.tab__name { display: block; font-size: 0.845rem; font-weight: 600; letter-spacing: -0.022em; line-height: 1.3; }
.tab__meta { display: block; font-size: 0.655rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(20, 32, 58, 0.38); }

.panel { display: none; }
.panel.is-active { display: block; animation: panelIn 0.4s var(--ease-glide) both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.panel__head { margin-bottom: 1.45rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line-soft); }
.panel__head h3 { font-size: clamp(1.3rem, 2.1vw, 1.65rem); font-weight: 700; letter-spacing: -0.035em; line-height: 1.15; }
.panel__head p { margin-top: 0.4rem; font-size: 0.915rem; color: rgba(20, 32, 58, 0.6); max-width: 58ch; }

.panel__grid { display: grid; gap: 1.1rem 1.85rem; }
@media (min-width: 620px) { .panel__grid { grid-template-columns: 1fr 1fr; } }

.feat { display: flex; gap: 0.6rem; }
.feat__tick { display: grid; place-items: center; width: 1rem; height: 1rem; flex: none; margin-top: 0.24rem; color: var(--royal); }
.feat__tick svg { width: 11px; height: 11px; }
.feat h4 { font-size: 0.895rem; font-weight: 650; letter-spacing: -0.022em; }
.feat p { font-size: 0.85rem; line-height: 1.55; color: rgba(20, 32, 58, 0.58); }

.count-note { margin-top: 1.5rem; font-size: 0.8125rem; color: rgba(20, 32, 58, 0.5); }

/* ---------- 12. PILLARS / ASKS / STEPS / PILLS ---------- */

.pillars { display: grid; gap: 1rem; margin-top: clamp(2.5rem, 4vw, 3.5rem); }
@media (min-width: 720px)  { .pillars { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .pillars { grid-template-columns: repeat(4, 1fr); } }

.asks { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: clamp(2rem, 3vw, 2.5rem); }
.ask {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
  transition: background-color 0.3s var(--ease-glide), border-color 0.3s var(--ease-glide);
}
.ask:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 255, 255, 0.2); }
.ask::before {
  content: "\201C";
  font-family: var(--font-accent);
  font-size: 1.3rem;
  line-height: 0;
  position: relative; top: 0.32rem;
  color: var(--gold-soft);
}

.steps { display: grid; gap: 1rem; margin-top: clamp(2.5rem, 4vw, 3.5rem); }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step__num {
  display: inline-grid; place-items: center;
  width: 1.85rem; height: 1.85rem;
  margin-bottom: 0.3rem;
  border-radius: 6px;
  background: var(--royal-ink);
  color: #fff;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0;
}

.pills { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.3rem; }
.pill {
  padding: 0.45rem 0.85rem;
  border-radius: var(--r-sm);
  background: var(--paper-pure);
  border: 1px solid var(--line-soft);
  font-size: 0.845rem; font-weight: 500;
}

/* ---------- 13. PRICING (single plan) ---------- */

.plan-wrap { margin-top: clamp(2.5rem, 4vw, 3.5rem); }
.plan { display: grid; gap: clamp(1.75rem, 3.5vw, 3rem); }
@media (min-width: 900px) { .plan { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); } }

.plan__buy { display: flex; flex-direction: column; gap: 1.1rem; }
.plan__price { display: flex; align-items: baseline; gap: 0.7rem; flex-wrap: wrap; }
.plan__amt {
  display: inline-flex; align-items: flex-start;
  font-size: clamp(3.25rem, 5.6vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.9;
}
.plan__amt i { font-style: normal; font-size: 0.45em; line-height: 1; margin-top: 0.14em; margin-right: 0.05em; color: var(--royal); }
.plan__per { font-size: 0.845rem; line-height: 1.4; color: rgba(20, 32, 58, 0.55); }

.plan__meta { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.9rem; }
.plan__meta li { display: flex; align-items: flex-start; gap: 0.55rem; color: rgba(20, 32, 58, 0.7); }
.plan__meta svg { width: 11px; height: 11px; flex: none; margin-top: 0.4rem; color: var(--gold); }
.plan__meta strong { font-weight: 650; color: var(--royal-ink); }

.plan__cta { margin-top: auto; display: flex; flex-direction: column; gap: 0.7rem; align-items: stretch; }
.plan__cta .btn { justify-content: center; }

.plan__has { display: flex; flex-direction: column; gap: 1rem; }
.plan__list { display: grid; gap: 0.55rem 1.5rem; font-size: 0.9rem; }
@media (min-width: 620px) { .plan__list { grid-template-columns: 1fr 1fr; } }
.plan__list li { display: flex; align-items: flex-start; gap: 0.55rem; color: rgba(20, 32, 58, 0.7); }
.plan__list svg { width: 11px; height: 11px; flex: none; margin-top: 0.4rem; color: var(--royal); }

.tier__flag {
  align-self: flex-start;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  background: var(--gold-mist);
  border: 1px solid rgba(185, 151, 85, 0.32);
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #8A6E36;
}

/* ---------- 14. MARKETPLACE ---------- */

.market { display: grid; gap: 1rem; margin-top: clamp(2.5rem, 4vw, 3.5rem); }
@media (min-width: 860px) { .market { grid-template-columns: repeat(3, 1fr); } }

/* ---------- 15. FAQ ---------- */

.faq { margin-top: clamp(2.5rem, 4vw, 3.5rem); border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  width: 100%;
  padding: 1.15rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.024em;
  line-height: 1.4;
  transition: color 0.3s var(--ease-glide);
}
.qa__q:hover { color: var(--royal); }
.qa__q:focus-visible { outline: 2px solid var(--royal); outline-offset: 2px; }
.qa__sign {
  display: grid; place-items: center;
  width: 1.5rem; height: 1.5rem; flex: none;
  border-radius: 5px;
  background: var(--fill);
  color: var(--royal);
  transition: transform 0.4s var(--ease-spring);
}
.qa__sign svg { width: 11px; height: 11px; }
.qa.is-open .qa__sign { transform: rotate(45deg); }

.qa__a { overflow: hidden; height: 0; transition: height 0.4s var(--ease-spring); }
.qa__a-inner { padding-bottom: 1.35rem; max-width: 70ch; font-size: 0.925rem; color: rgba(20, 32, 58, 0.64); }
.qa__a-inner p + p { margin-top: 0.7rem; }

/* ---------- 16. CLOSER ---------- */

.closer { text-align: center; }
.closer .actions { justify-content: center; margin-top: 1.85rem; }
.closer .lede { margin-inline: auto; }
.closer .eyebrow { margin-inline: auto; }

/* ---------- 17. FOOTER ---------- */

.foot { background: var(--royal-ink); color: rgba(255, 255, 255, 0.58); }

.foot__top {
  display: grid;
  gap: clamp(2.25rem, 4vw, 2.75rem);
  padding-block: clamp(3rem, 5vw, 4.25rem);
}
@media (min-width: 700px)  { .foot__top { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .foot__top { grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr)); gap: 2.5rem; } }

.foot__brand { max-width: 32ch; }
@media (min-width: 700px) and (max-width: 999px) { .foot__brand { grid-column: 1 / -1; max-width: 46ch; } }
.foot__brand img { height: 36px; width: auto; margin-bottom: 1rem; }
.foot__brand p { font-size: 0.875rem; line-height: 1.65; }
.foot__brand .btn { margin-top: 1.35rem; }

.foot__col h4 {
  margin-bottom: 0.9rem;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
.foot__col li + li { margin-top: 0.55rem; }
.foot__col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s var(--ease-glide);
}
.foot__col a:hover { color: #fff; }

.foot__base {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.75rem;
  align-items: center;
  padding-block: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}
.foot__base ul { display: flex; flex-wrap: wrap; gap: 0.5rem 1.35rem; margin-left: auto; }
.foot__base a { transition: color 0.25s var(--ease-glide); }
.foot__base a:hover { color: rgba(255, 255, 255, 0.85); }
.foot__sep { color: rgba(255, 255, 255, 0.2); }
@media (max-width: 700px) { .foot__base ul { margin-left: 0; } }

/* ---------- 18. REVEAL ---------- */
/* Scoped to .js, which an inline script in <head> sets. Content must never be
   invisible because a script did not run. */

.js .reveal { opacity: 0; transform: translateY(12px); }
.js .reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease-glide), transform 0.7s var(--ease-spring);
}
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ---------- 19. NARROW ---------- */

@media (max-width: 640px) {
  :root { --gutter: 1.15rem; }
  .section { padding-block: clamp(3.5rem, 12vw, 5rem); }
  .actions .btn { width: 100%; justify-content: center; }
}
