  :root {
    --bg: #f4f1ea;           /* warm parchment, picks up the gold tones */
    --bg-deep: #e8e2d2;      /* deeper parchment for bands */
    --slate: #2a2d3e;        /* logo's slate-blue, used for ink */
    --slate-deep: #1a1c28;   /* deepest slate for the dark band */
    --ink: #2a2d3e;          /* primary text = logo slate */
    --ink-soft: #4d4f5c;     /* secondary text */
    --gold: #a88c4f;         /* logo's warm gold */
    --gold-bright: #c9a85c;  /* lighter gold for highlights */
    --gold-deep: #7d6635;    /* deeper gold for hover states */
    --moss: #5a6b3f;
    --rule: #c8bfa8;         /* subtle warm divider */
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  /* Anchor-link targets need extra top space so they don't land behind
     the sticky <nav>. Approx nav height + a small buffer. */
  section[id] { scroll-margin-top: 100px; }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  .display { font-family: 'Fraunces', Georgia, serif; font-optical-sizing: auto; }

  /* ============ NAV ============ */
  nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    padding: 18px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  nav .brand {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  nav .logo {
    height: 48px;
    width: auto;
    display: block;
  }
  nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
  }
  nav ul a {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
  }
  nav ul a:hover { color: var(--gold); }
  nav .cta {
    background: var(--ink);
    color: var(--bg);
    padding: 10px 20px;
    border-radius: 2px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
  }
  nav .cta:hover { background: var(--gold-deep); color: var(--bg); }

  /* Outlined sibling of .cta — used for "Sign up" so it sits next to
     "Log in" (text link) and "Free 5-day trial" (.cta) without three
     filled buttons fighting for visual weight. */
  nav .cta-secondary {
    background: transparent;
    color: var(--ink);
    padding: 9px 18px;
    border: 1px solid var(--ink);
    border-radius: 2px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }
  nav .cta-secondary:hover { background: var(--ink); color: var(--bg); }

  /* Plain text link sized to live in the right-side cluster (matches the
     nav-actions vertical rhythm without box styling). Used for "Log in". */
  nav .nav-link {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 4px;
    transition: color 0.2s;
  }
  nav .nav-link:hover { color: var(--gold-deep); }

  /* Auth list items in the inline <ul>: hidden on desktop (the right
     cluster carries them as styled buttons) and revealed only when the
     ul switches to dropdown mode in the mobile media query below. */
  nav ul .mobile-only-li { display: none; }

  /* Right-side cluster (trial CTA + Log in / Sign up + hamburger).
     On desktop the hamburger is hidden; on mobile, the .nav-link and
     .cta-secondary collapse into the hamburger dropdown (see the
     responsive block below). */
  nav .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  /* Hamburger button — hidden on desktop, visible on mobile via the
     responsive block below. */
  .nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: var(--ink);
    padding: 8px;
    cursor: pointer;
    line-height: 0;
  }
  .nav-toggle:hover { color: var(--gold-deep); }

  /* ============ HERO ============ */
  .hero {
    padding: 100px 48px 80px;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: end;
    border-bottom: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 720px;
    height: 720px;
    background-image: var(--logo-bg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
  }
  .hero > * {
    position: relative;
    z-index: 1;
  }
  .hero .eyebrow {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    font-weight: 600;
  }
  .hero .eyebrow::before {
    content: "❋ ";
    margin-right: 4px;
  }
  .hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: clamp(48px, 7vw, 92px);
    line-height: 0.96;
    letter-spacing: -0.025em;
    margin-bottom: 32px;
    color: var(--ink);
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-deep);
  }
  .hero p.lede {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 560px;
    margin-bottom: 40px;
  }
  .hero .actions {
    display: flex;
    gap: 16px;
    align-items: center;
  }
  .btn-primary {
    background: var(--ink);
    color: var(--bg);
    padding: 16px 28px;
    border: none;
    border-radius: 2px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
  }
  .btn-primary:hover { background: var(--gold-deep); }
  .btn-secondary {
    color: var(--ink);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 1px solid var(--ink);
    transition: color 0.2s;
  }
  .btn-secondary:hover { color: var(--gold); border-color: var(--gold); }

  .hero-mark {
    align-self: end;
    text-align: right;
  }
  .hero-mark .acronym {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.7;
    border-top: 1px solid var(--rule);
    padding-top: 20px;
  }
  .hero-mark .acronym strong {
    color: var(--gold-deep);
    font-weight: 700;
    font-style: normal;
  }

  /* ============ MARQUEE / CRED ============ */
  .cred {
    padding: 32px 48px;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--rule);
    text-align: center;
    font-size: 14px;
    color: var(--ink-soft);
    font-style: italic;
    font-family: 'Fraunces', serif;
  }
  .cred span { color: var(--gold); font-style: normal; font-weight: 600; margin: 0 8px; }

  /* ============ FEATURES ============ */
  .features {
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 48px 80px;
  }
  .section-head {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    margin-bottom: 80px;
    align-items: start;
  }
  .section-head .number {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 0.1em;
    padding-top: 14px;
    border-top: 2px solid var(--gold);
  }
  .section-head h2 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    max-width: 800px;
  }
  .section-head h2 em { font-style: italic; color: var(--gold-deep); }

  .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-left: 1px solid var(--rule);
  }
  .feature {
    padding: 48px 40px;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    background: var(--bg);
    transition: background 0.3s;
  }
  .feature:hover { background: var(--bg-deep); }
  .feature .ornament {
    font-family: 'Fraunces', serif;
    font-size: 48px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 20px;
  }
  .feature h3 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
  }
  .feature p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.6;
  }
  .feature .tag {
    display: inline-block;
    margin-top: 16px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--moss);
    font-weight: 600;
    padding: 4px 10px;
    border: 1px solid var(--moss);
    border-radius: 2px;
  }

  /* ============ PULL QUOTE / DIFFERENTIATION ============ */
  .pull-quote {
    background: var(--slate-deep);
    color: var(--bg);
    padding: 120px 48px;
    margin: 60px 0 0;
    position: relative;
    overflow: hidden;
  }
  .pull-quote::before {
    content: "❝";
    position: absolute;
    font-family: 'Fraunces', serif;
    font-size: 400px;
    color: var(--gold);
    opacity: 0.18;
    top: -80px;
    left: 40px;
    line-height: 1;
  }
  .pull-quote .inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
  }
  .pull-quote p {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.25;
    letter-spacing: -0.01em;
  }
  .pull-quote p em { color: var(--gold-bright); font-style: italic; }
  .pull-quote .attr {
    margin-top: 32px;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg-deep);
    opacity: 0.7;
  }

  /* ============ COMING SOON ============ */
  .coming {
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 48px;
  }
  .coming-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
  }
  .coming-card {
    border: 1px solid var(--rule);
    padding: 32px;
    background: var(--bg);
    position: relative;
  }
  .coming-card::before {
    content: "COMING SOON";
    position: absolute;
    top: -10px;
    left: 24px;
    background: var(--bg);
    padding: 0 10px;
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 700;
  }
  .coming-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }
  .coming-card p {
    color: var(--ink-soft);
    font-size: 15px;
  }

  .coming-aside {
    margin-top: 56px;
    padding: 28px 36px;
    border-left: 3px solid var(--gold);
    background: var(--bg-deep);
    max-width: 720px;
  }
  .coming-aside p {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.5;
    color: var(--ink-soft);
  }
  .coming-aside strong {
    font-style: normal;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.15em;
    color: var(--gold-deep);
    background: var(--bg);
    padding: 2px 8px;
    border-radius: 2px;
  }

  /* ============ CTA ============ */
  .final-cta {
    padding: 140px 48px;
    text-align: center;
    border-top: 1px solid var(--rule);
    background: var(--bg-deep);
  }
  .final-cta h2 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    max-width: 800px;
    margin: 0 auto 24px;
    letter-spacing: -0.02em;
  }
  .final-cta h2 em { font-style: italic; color: var(--gold-deep); }
  .final-cta p {
    color: var(--ink-soft);
    font-size: 18px;
    max-width: 580px;
    margin: 0 auto 40px;
  }
  /* Tertiary clarification copy — the "what's a show" disclaimer.
     Smaller + lower contrast so it sits below the main pitch without
     stealing focus from the trial CTA. */
  .final-cta p.fine-print {
    font-size: 14px;
    line-height: 1.55;
    opacity: 0.7;
    font-style: italic;
    margin-bottom: 28px;
  }
  /* Inline links inside CTA / body copy — brand gold instead of the
     browser-default blue. Underline kept for affordance. */
  .final-cta p a,
  section p a {
    color: var(--gold-deep);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
  }
  .final-cta p a:hover,
  section p a:hover {
    color: var(--gold);
  }

  /* ============ FOOTER ============ */
  footer {
    padding: 48px;
    border-top: 1px solid var(--rule);
    background: var(--bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--ink-soft);
  }
  footer ul { list-style: none; display: flex; gap: 32px; }
  footer a { color: var(--ink-soft); text-decoration: none; }
  footer a:hover { color: var(--gold); }
  .footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .footer-logo {
    height: 28px;
    width: auto;
    opacity: 0.85;
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 900px) {
    nav { padding: 14px 24px; }
    .nav-toggle { display: inline-flex; align-items: center; }
    /* Log in + Sign up collapse into the hamburger dropdown on mobile;
       the trial / dashboard .cta stays in the bar so the loud action is
       always one tap away. */
    nav .nav-link,
    nav .cta-secondary { display: none; }
    /* Reveal the auth <li>s in the dropdown — they were hidden on
       desktop (handled by .nav-actions there). */
    nav ul .mobile-only-li { display: list-item; }
    /* Mobile nav: <ul> starts hidden (Tailwind .hidden). When the toggle
       button removes .hidden the panel drops below the bar as a stacked
       drawer. The bar itself stays small — only logo + hamburger. */
    nav ul {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      background: var(--bg);
      border-bottom: 1px solid var(--rule);
      padding: 8px 0;
      box-shadow: 0 4px 12px rgba(16, 24, 40, 0.08);
    }
    nav ul.hidden { display: none; }
    nav ul li { padding: 12px 24px; border-top: 1px solid var(--rule); }
    nav ul li:first-child { border-top: 0; }
    nav ul a { display: block; font-size: 16px; }
    nav .cta {
      display: inline-block;
      width: fit-content;
    }
    .hero { grid-template-columns: 1fr; padding: 60px 24px; gap: 32px; }
    .hero-mark { text-align: left; }
    .features, .coming { padding: 80px 24px; }
    .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature { padding: 36px 24px; }
    .pull-quote { padding: 80px 24px; }
    .coming-grid { grid-template-columns: 1fr; }
    .final-cta { padding: 80px 24px; }
    footer { flex-direction: column; gap: 24px; padding: 32px 24px; text-align: center; }
    .footer-left { flex-direction: column; gap: 12px; }
    footer ul { flex-wrap: wrap; justify-content: center; gap: 16px; }
  }

  /* ============ ANIMATIONS ============ */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero .eyebrow { animation: fadeUp 0.6s ease-out; }
  .hero h1 { animation: fadeUp 0.8s 0.1s ease-out backwards; }
  .hero p.lede { animation: fadeUp 0.8s 0.2s ease-out backwards; }
  .hero .actions { animation: fadeUp 0.8s 0.3s ease-out backwards; }
  .hero-mark { animation: fadeUp 0.8s 0.4s ease-out backwards; }
