    /* ---------------------------------------------------------------------
       Tokens
       ------------------------------------------------------------------ */
    :root {
      --bg: #0c0e0e;
      --bg-2: #111313;
      --surface: #1c1c1e;
      --surface-2: #232325;
      --border: #232527;
      --border-soft: #181a1a;
      --text: #f0f0f0;
      --text-soft: #c5c5c5;
      --muted: #888888;
      --dim: #555a5a;
      --accent: #e1fa52;
      --accent-ink: #0c0e0e;
      --accent-glow: rgba(225, 250, 82, 0.08);
      --accent-glow-strong: rgba(225, 250, 82, 0.18);

      --sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
      --serif: 'Playfair Display', 'Times New Roman', serif;

      --container: 1240px;
      --pad: clamp(1.25rem, 4vw, 2.25rem);
      --radius-sm: 10px;
      --radius: 16px;
      --radius-lg: 24px;
      --radius-xl: 32px;

      --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    }

    /* ---------------------------------------------------------------------
       Reset
       ------------------------------------------------------------------ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }
    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-size-adjust: 100%;
      /* Belt for horizontal scroll: html (and body below) both clip x. */
      overflow-x: clip;
    }
    body {
      margin: 0;
      background: var(--bg);
      color: var(--text);
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.55;
      font-feature-settings: 'ss01', 'cv11';
      overflow-x: clip;
      position: relative;
    }
    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; }
    h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.05; letter-spacing: -0.025em; }
    p { margin: 0; }
    ul, ol { margin: 0; padding: 0; list-style: none; }

    /* Subtle film grain over the whole page */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 200;
      opacity: 0.05;
      mix-blend-mode: overlay;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    }

    .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding-inline: var(--pad);
      position: relative;
    }

    .eyebrow {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .accent { color: var(--accent); }
    .italic { font-family: var(--serif); font-style: italic; font-weight: 500; letter-spacing: -0.01em; }

    /* ---------------------------------------------------------------------
       Nav
       ------------------------------------------------------------------ */
    .nav {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 60;
      padding: 1.15rem 0;
      background: transparent;
    }
    .nav-inner {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 1.5rem;
    }
    .nav-inner > .logo { justify-self: start; }
    .nav-inner > .nav-center { justify-self: center; }
    .nav-inner > .nav-cta { justify-self: end; }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      font-weight: 600;
      font-size: 1.04rem;
      letter-spacing: -0.015em;
      color: var(--text);
    }
    .logo .logo-mark {
      height: 18px;
      width: auto;
      display: block;
      transition: transform 300ms var(--ease-out);
    }
    .logo:hover .logo-mark { transform: rotate(-6deg) translateY(-1px); }

    .nav-links {
      display: flex;
      gap: 2.25rem;
    }
    .nav-links a {
      color: var(--text-soft);
      font-size: 0.74rem;
      font-weight: 500;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      transition: color 180ms var(--ease-out);
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: -6px;
      height: 1px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 250ms var(--ease-out);
    }
    .nav-links a:hover { color: var(--text); }
    .nav-links a:hover::after { transform: scaleX(1); }

    /* Accent pill — primary nav CTA, with shine sweep */
    .btn-light {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.55rem 1rem 0.55rem 1.1rem;
      border-radius: 999px;
      background: var(--accent);
      color: var(--accent-ink);
      font-weight: 600;
      font-size: 0.86rem;
      letter-spacing: -0.005em;
      border: 1px solid color-mix(in srgb, var(--accent) 70%, white);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.55) inset,
        0 8px 22px -10px rgba(225, 250, 82, 0.45);
      transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
      white-space: nowrap;
      overflow: hidden;
      isolation: isolate;
    }
    .btn-light > * { position: relative; z-index: 2; }
    .btn-light .arrow { display: inline-block; transition: transform 240ms var(--ease-out); }
    .btn-light:hover {
      transform: translateY(-1px);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.7) inset,
        0 0 0 5px var(--accent-glow),
        0 14px 30px -10px rgba(225, 250, 82, 0.55);
    }
    .btn-light:hover .arrow { transform: translateX(3px); }

    @media (max-width: 820px) {
      .nav-links { gap: 1.4rem; }
      .nav-links a { font-size: 0.86rem; }
    }
    @media (max-width: 640px) {
      .nav-inner { grid-template-columns: auto 1fr; }
      .nav-inner > .nav-center { display: none; }
      .nav-inner > .nav-cta { justify-self: end; }
    }

    /* ---------------------------------------------------------------------
       Hero
       ------------------------------------------------------------------ */
    .hero {
      position: relative;
      padding-top: clamp(6rem, 11vw, 8rem);
      padding-bottom: 0;
      /* No overflow clip — the glow needs to bleed past hero into features.
         Horizontal bleed is caught by body { overflow-x: hidden }. */
      isolation: isolate;
    }
    .hero::before {
      /* Static atmospheric secondaries — quiet hint of light, mostly dark. */
      content: '';
      position: absolute;
      inset: -35% -10% -10% -28%;
      background:
        radial-gradient(40% 45% at 42% 58%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 72%),
        radial-gradient(35% 55% at 18% 65%, color-mix(in srgb, var(--accent) 5%, transparent), transparent 78%),
        radial-gradient(45% 35% at 55% 28%, color-mix(in srgb, var(--accent) 4%, transparent), transparent 80%);
      pointer-events: none;
      z-index: -1;
      filter: blur(48px);
      opacity: 0.7;
    }
    /* Cursor-tracked glow lives on a real DOM element so updates to --gx/--gy
       reliably trigger a repaint. Extends well past hero bottom and is masked
       to dissolve gradually through the features section — no hard cut. */
    .hero-glow {
      position: absolute;
      inset: -35% -10% -180% -28%;
      background: radial-gradient(
        42% 25% at var(--gx, 28%) var(--gy, 24%),
        color-mix(in srgb, var(--accent) 14%, transparent),
        transparent 65%
      );
      pointer-events: none;
      z-index: -1;
      filter: blur(46px);
      opacity: 0.85;
      will-change: background;
      mask-image: linear-gradient(to bottom, black 0%, black 40%, transparent 85%);
      -webkit-mask-image: linear-gradient(to bottom, black 0%, black 40%, transparent 85%);
    }
    .hero::after {
      /* Subtle grain over the hero background */
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      opacity: 0.045;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='hn'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23hn)'/></svg>");
      mix-blend-mode: overlay;
    }

    .hero-inner {
      text-align: center;
      max-width: 1080px;
      margin: 0 auto;
    }
    .hero .eyebrow {
      opacity: 0;
      animation: rise 700ms var(--ease-out) 100ms forwards;
    }

    /* Quiet announcement chip above the headline */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.38rem 0.85rem 0.38rem 0.7rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.025);
      border: 1px solid var(--border);
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 400;
      letter-spacing: 0.01em;
      white-space: nowrap;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      opacity: 0;
      animation: rise 700ms var(--ease-out) 100ms forwards;
    }

    .hero-badge .glyph {
      font-size: 0.85rem;
      line-height: 1;
      color: var(--accent);
      display: inline-block;
      transform-origin: center;
      animation: badge-pulse 2.8s ease-in-out infinite;
    }
    @keyframes badge-pulse {
      0%, 100% {
        opacity: 0.55;
        transform: translateY(-0.5px) scale(0.94);
      }
      50% {
        opacity: 1;
        transform: translateY(-0.5px) scale(1);
      }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-badge .glyph {
        animation: none;
        opacity: 1;
        transform: translateY(-0.5px);
      }
    }

    .hero h1 {
      font-size: clamp(1.1rem, 6.2vw, 5.4rem);
      letter-spacing: -0.04em;
      line-height: 1.02;
      margin-top: 1.2rem;
      font-weight: 500;
      /* Each line becomes a content-sized flex item centered on the cross axis.
         This sidesteps any inline-flow centering quirks introduced by the
         .bleep span and guarantees all three lines share the exact same
         center axis based on their own intrinsic widths. */
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .hero h1 .line {
      display: block;
      /* min-width: 0 disables flex's default min-width: auto (which would
         otherwise resolve to min-content and silently override the max-width
         cap on a nowrap line). With this in place, max-width: 100% actually
         caps the flex item at the h1 container width. */
      min-width: 0;
      max-width: 100%;
      opacity: 0;
      transform: translateY(18px);
      animation: rise 800ms var(--ease-out) forwards;
    }
    /* Lock to a single line per .line on desktop only. Drop the max-width cap
       at the same breakpoint so a long nowrap line can grow past the h1's width
       and `align-items: center` actually centers it (instead of the text
       overflowing to the right of a 1080-capped block). */
    @media (min-width: 1024px) {
      .hero h1 .line { white-space: nowrap; max-width: none; }
    }

    .hero h1 .line-1 { animation-delay: 200ms; }
    .hero h1 .line-2 { animation-delay: 320ms; }
    .hero h1 .line-3 {
      animation-delay: 460ms;
      color: var(--accent);
      font-family: var(--serif);
      font-style: italic;
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1.08;
      /* serif italic optical adjustment */
      margin-top: 0.06em;
    }

    .hero .subhead {
      max-width: 36rem;
      margin: 1.55rem auto 0;
      font-size: clamp(1rem, 1.35vw, 1.115rem);
      color: var(--text-soft);
      line-height: 1.55;
      opacity: 0;
      animation: rise 800ms var(--ease-out) 600ms forwards;
    }
    .hero .subhead em {
      font-family: var(--serif);
      font-style: italic;
      color: var(--text);
      font-weight: 500;
    }

    .hero-cta-wrap {
      margin-top: 2.25rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.05rem;
      opacity: 0;
      animation: rise 800ms var(--ease-out) 740ms forwards;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.95rem 1.5rem 0.95rem 1.55rem;
      border-radius: 999px;
      background: var(--accent);
      color: var(--accent-ink);
      font-weight: 600;
      font-size: 0.99rem;
      letter-spacing: -0.005em;
      border: 1px solid color-mix(in srgb, var(--accent) 70%, white);
      box-shadow:
        0 0 0 0 var(--accent-glow-strong),
        0 12px 40px -10px rgba(225, 250, 82, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition:
        transform 220ms var(--ease-out),
        box-shadow 320ms var(--ease-out),
        background 220ms var(--ease-out);
    }
    .btn .arrow {
      display: inline-block;
      transition: transform 280ms var(--ease-out);
    }
    .btn:hover {
      transform: translateY(-2px);
      box-shadow:
        0 0 0 6px var(--accent-glow),
        0 18px 60px -10px rgba(225, 250, 82, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
    }
    .btn:hover .arrow { transform: translateX(4px); }
    .btn:active { transform: translateY(0); }

    .micro {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--muted);
      display: inline-flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.45rem 0.6rem;
      align-items: center;
      max-width: 38rem;
      text-align: center;
    }
    .micro .dot {
      width: 3px; height: 3px;
      border-radius: 999px;
      background: var(--dim);
      display: inline-block;
    }

    /* ----------- Hero screenshot — placeholder for user-supplied image ----- */
    .hero-shot {
      margin-top: clamp(3rem, 7vw, 5.5rem);
      position: relative;
      width: min(1180px, 100%);
      margin-left: auto;
      margin-right: auto;
      /* deliberate bottom clip — we want the panels to slip past viewport */
      max-height: clamp(380px, 60vh, 720px);
      overflow: hidden;
      mask-image: linear-gradient(to bottom, black 0%, black 80%, transparent 100%);
      -webkit-mask-image: linear-gradient(to bottom, black 0%, black 80%, transparent 100%);
      opacity: 0;
      transform: translateY(28px);
      animation: rise 1100ms var(--ease-out) 900ms forwards;
    }
    .hero-shot::before {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: var(--radius-xl);
      pointer-events: none;
      background:
        linear-gradient(180deg, rgba(225,250,82,0.12), transparent 30%);
      z-index: 1;
    }

    /* The 3-panel mock — user can drop a real image into .hero-shot to replace */
    .mock-3panel {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.1rem;
      padding: 1rem;
      border-radius: var(--radius-xl);
      background: linear-gradient(180deg, #141617 0%, #0e1010 100%);
      border: 1px solid var(--border);
      box-shadow:
        0 1px 0 rgba(255,255,255,0.04) inset,
        0 30px 80px -20px rgba(0,0,0,0.6);
    }
    .panel {
      position: relative;
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, #18191b 0%, #131516 100%);
      border: 1px solid var(--border);
      padding: 1rem 1rem 1.15rem;
      min-height: 340px;
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
      overflow: hidden;
    }
    /* Real screenshot fills the panel edge-to-edge from the top. Panel's
       overflow: hidden clips the long image; auto-scroll animation pans the
       image vertically inside the panel so visitors see every frame. */
    .panel-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: auto;
      display: block;
      user-select: none;
      pointer-events: none;
      will-change: transform;
    }
    /* Reverse variant (panel 2): start with the BOTTOM of the image visible.
       The translateY uses --scroll-dist (image overflow distance), set by JS
       once the image loads. Falls back to 380px so the bottom is approximately
       anchored before measurement completes. */
    .panel--reverse .panel-img {
      transform: translateY(calc(-1 * var(--scroll-dist, 380px)));
    }

    /* Auto-scroll animation activates after JS measures the real overflow
       distance for each image (.is-loaded class). */
    .panel.is-loaded .panel-img {
      animation: panel-scroll-down 18s ease-in-out infinite;
    }
    .panel.is-loaded.panel--reverse .panel-img {
      animation-name: panel-scroll-up;
      transform: none;     /* let the animation drive the transform */
    }
    /* Light desync between panels so they don't all peak at once. */
    .panel.is-loaded:nth-child(2) .panel-img { animation-duration: 22s; }
    .panel.is-loaded:nth-child(3) .panel-img { animation-duration: 20s; }

    @keyframes panel-scroll-down {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(calc(-1 * var(--scroll-dist, 0px))); }
    }
    @keyframes panel-scroll-up {
      0%, 100% { transform: translateY(calc(-1 * var(--scroll-dist, 0px))); }
      50%      { transform: translateY(0); }
    }

    /* Pause-on-interact (hover or keyboard focus) so the user can read /
       click into the lightbox cleanly. */
    .panel:hover .panel-img,
    .panel:focus-visible .panel-img {
      animation-play-state: paused;
    }
    @media (prefers-reduced-motion: reduce) {
      .panel-img { animation: none !important; }
    }

    /* Each panel is now interactive — opens a lightbox with the full image. */
    .panel { cursor: pointer; }
    .panel:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    /* Hover affordance — small ↗ chip top-right, signaling "click to expand". */
    .panel-affordance {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 30px;
      height: 30px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      background: rgba(12, 14, 14, 0.72);
      border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
      color: var(--accent);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 4;
      pointer-events: none;
      opacity: 0;
      transform: translateY(-3px);
      transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out);
    }
    .panel-affordance svg { width: 13px; height: 13px; display: block; }
    @media (hover: hover) and (pointer: fine) {
      .panel:hover .panel-affordance,
      .panel:focus-visible .panel-affordance {
        opacity: 1;
        transform: translateY(0);
      }
    }
    @media (hover: none), (pointer: coarse) {
      .panel-affordance { opacity: 1; transform: translateY(0); }
    }

    /* Lightbox — full viewport, click outside or × to close. */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 300;
      background: rgba(0, 0, 0, 0.86);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4vh 4vw;
      opacity: 0;
      pointer-events: none;
      transition: opacity 280ms var(--ease-out);
    }
    .lightbox.is-open {
      opacity: 1;
      pointer-events: auto;
    }
    .lightbox-scroll {
      position: relative;
      display: inline-flex;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.7);
      transform: translateY(8px) scale(0.985);
      transition: transform 320ms var(--ease-out);
    }
    .lightbox.is-open .lightbox-scroll {
      transform: translateY(0) scale(1);
    }
    /* Show the WHOLE image, scaled down to fit the viewport. */
    .lightbox-img {
      display: block;
      max-width: calc(100vw - 8vw);
      max-height: calc(100vh - 8vh);
      width: auto;
      height: auto;
    }
    .lightbox-close {
      position: fixed;
      top: 22px;
      right: 22px;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid var(--border);
      color: var(--text);
      font: inherit;
      font-size: 1.25rem;
      line-height: 1;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      transition: background 200ms var(--ease-out), border-color 200ms var(--ease-out);
    }
    .lightbox-close:hover {
      background: rgba(255, 255, 255, 0.14);
      border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
    }
    .lightbox-close:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }
    .panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 0.7rem;
      border-bottom: 1px solid var(--border-soft);
    }
    .panel-head .title {
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      color: var(--muted);
      text-transform: uppercase;
      font-weight: 500;
    }
    .panel-head .pill {
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      color: var(--accent);
      text-transform: uppercase;
      padding: 0.18rem 0.45rem;
      border-radius: 999px;
      border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
      background: color-mix(in srgb, var(--accent) 10%, transparent);
    }
    .url-chip {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.72rem;
      color: var(--text-soft);
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border-soft);
      padding: 0.45rem 0.6rem;
      border-radius: 8px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .url-chip .fav {
      width: 14px; height: 14px;
      border-radius: 3px;
      background: linear-gradient(135deg, #ff8a3d, #c2410c);
      flex-shrink: 0;
    }

    .why-input {
      flex: 1;
      background: rgba(255,255,255,0.02);
      border: 1px dashed color-mix(in srgb, var(--accent) 25%, var(--border));
      border-radius: 12px;
      padding: 0.85rem;
      font-size: 0.85rem;
      color: var(--text);
      line-height: 1.5;
      position: relative;
    }
    .why-input .label {
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.5rem;
      display: block;
    }
    .why-input .typed {
      color: var(--text);
      font-weight: 500;
    }
    .why-input .caret {
      display: inline-block;
      width: 1px;
      height: 1em;
      background: var(--accent);
      vertical-align: -0.18em;
      margin-left: 1px;
      animation: blink 1s infinite steps(1);
    }
    .tag-row {
      display: flex;
      gap: 0.35rem;
      flex-wrap: wrap;
    }
    .tag {
      font-size: 0.66rem;
      padding: 0.22rem 0.5rem;
      border-radius: 999px;
      background: rgba(255,255,255,0.04);
      color: var(--text-soft);
      border: 1px solid var(--border-soft);
    }
    .panel .save-btn {
      align-self: stretch;
      text-align: center;
      padding: 0.6rem 0.8rem;
      border-radius: 10px;
      background: var(--accent);
      color: var(--accent-ink);
      font-weight: 600;
      font-size: 0.8rem;
      letter-spacing: -0.005em;
    }

    .search-bar {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.55rem 0.7rem;
      border-radius: 10px;
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border-soft);
      font-size: 0.78rem;
      color: var(--muted);
    }
    .search-bar svg { width: 12px; height: 12px; opacity: 0.7; }
    .search-bar .q { color: var(--text); }
    .save-list { display: flex; flex-direction: column; gap: 0.6rem; }
    .save-item {
      padding: 0.6rem 0.65rem;
      border-radius: 10px;
      background: rgba(255,255,255,0.02);
      border: 1px solid var(--border-soft);
    }
    .save-item .row {
      display: flex; align-items: center; gap: 0.45rem;
      font-size: 0.74rem; color: var(--text);
    }
    .save-item .why {
      font-family: var(--serif);
      font-style: italic;
      font-size: 0.78rem;
      color: var(--text-soft);
      margin-top: 0.2rem;
      line-height: 1.4;
    }
    .save-item .meta {
      font-size: 0.62rem;
      color: var(--muted);
      margin-top: 0.35rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .save-item.is-active {
      background: color-mix(in srgb, var(--accent) 7%, transparent);
      border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
    }
    .resurface-card {
      flex: 1;
      border-radius: 14px;
      padding: 1rem;
      background:
        radial-gradient(120% 100% at 0% 0%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 55%),
        rgba(255,255,255,0.02);
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }
    .resurface-card .stamp {
      font-size: 0.62rem;
      color: var(--accent);
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    .resurface-card .ttl {
      font-size: 1rem;
      letter-spacing: -0.015em;
      font-weight: 600;
    }
    .resurface-card .quote {
      font-family: var(--serif);
      font-style: italic;
      font-size: 0.92rem;
      line-height: 1.45;
      color: var(--text-soft);
    }
    .resurface-actions {
      display: flex;
      gap: 0.5rem;
      margin-top: auto;
    }
    .ghost-btn {
      flex: 1;
      text-align: center;
      padding: 0.55rem 0.6rem;
      border-radius: 10px;
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      font-size: 0.74rem;
      color: var(--text);
      font-weight: 500;
    }
    .ghost-btn.primary {
      background: var(--accent);
      color: var(--accent-ink);
      border-color: transparent;
      font-weight: 600;
    }

    @media (max-width: 820px) {
      .mock-3panel { grid-template-columns: 1fr; }
      .panel { min-height: 240px; }
      /* Mobile: show only the first panel, grow it to fill hero-shot's visible area. */
      .panel:nth-child(n+2) { display: none; }
      .panel:first-child { min-height: clamp(380px, 60vh, 720px); }
    }

    /* ---------------------------------------------------------------------
       Sections
       ------------------------------------------------------------------ */
    section {
      position: relative;
      padding: clamp(5rem, 10vw, 8.5rem) 0;
    }
    .section-head {
      max-width: 880px;
      margin-bottom: clamp(2.5rem, 5vw, 4rem);
    }
    .section-head h2 {
      font-size: clamp(2.1rem, 4.6vw, 3.5rem);
      letter-spacing: -0.035em;
      line-height: 1.05;
    }
    .section-head h2 em {
      font-family: var(--serif);
      font-style: italic;
      font-weight: 500;
      color: var(--accent);
    }
    .section-head .eyebrow { margin-bottom: 1rem; }
    .section-head .lede {
      font-size: 1.05rem;
      color: var(--text-soft);
      margin-top: 1rem;
      max-width: 42rem;
    }

    /* ---------------------------------------------------------------------
       How it works
       ------------------------------------------------------------------ */
    .how {
    }
    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .step {
      position: relative;
      padding: 2rem 1.6rem 2.1rem;
      border-radius: var(--radius);
      background: linear-gradient(180deg, #141616, #101212);
      border: 1px solid var(--border);
      overflow: hidden;
      transition: border-color 280ms var(--ease-out), transform 280ms var(--ease-out);
    }
    .step::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(70% 50% at 50% 0%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 60%);
      opacity: 0;
      transition: opacity 280ms var(--ease-out);
    }
    .step:hover { border-color: color-mix(in srgb, var(--accent) 35%, var(--border)); transform: translateY(-3px); }
    .step:hover::before { opacity: 1; }
    .step .num {
      font-family: var(--serif);
      font-style: italic;
      font-size: 2rem;
      color: var(--accent);
      font-weight: 500;
      letter-spacing: -0.01em;
      display: inline-block;
      margin-bottom: 1rem;
    }
    .step h3 {
      font-size: 1.18rem;
      font-weight: 600;
      letter-spacing: -0.015em;
      line-height: 1.25;
    }
    .step p {
      margin-top: 0.6rem;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.55;
    }
    @media (max-width: 820px) {
      .steps { grid-template-columns: 1fr; }
    }

    /* ---------------------------------------------------------------------
       Features grid
       ------------------------------------------------------------------ */
    .features {
    }
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.1rem;
    }
    .feature {
      position: relative;
      padding: 2rem 1.5rem 2rem;
      border-radius: var(--radius);
      background: var(--surface);
      border: 1px solid var(--border);
      overflow: hidden;
      transition: transform 320ms var(--ease-out), border-color 320ms var(--ease-out), background 320ms var(--ease-out);
      min-height: 220px;
      display: flex;
      flex-direction: column;
    }
    .feature::after {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 14%, transparent), transparent 30%);
      opacity: 0;
      transition: opacity 320ms var(--ease-out);
      pointer-events: none;
      z-index: 0;
    }
    .feature:hover {
      transform: translateY(-4px);
      border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
      background: #1f2022;
    }
    .feature:hover::after { opacity: 1; }
    .feature > * { position: relative; z-index: 1; }

    .feature .num {
      font-family: var(--serif);
      font-style: italic;
      font-size: 1.4rem;
      font-weight: 500;
      color: var(--muted);
      letter-spacing: 0.02em;
      transition: color 280ms var(--ease-out);
    }
    .feature:hover .num { color: var(--accent); }
    .feature h3 {
      margin-top: 1.1rem;
      font-size: 1.18rem;
      font-weight: 600;
      letter-spacing: -0.015em;
      line-height: 1.25;
    }
    .feature p {
      margin-top: 0.55rem;
      color: var(--muted);
      font-size: 0.96rem;
      line-height: 1.55;
    }
    .feature .underline {
      width: 28px;
      height: 1px;
      background: var(--border);
      margin-top: 1rem;
      transition: background 280ms var(--ease-out), width 320ms var(--ease-out);
    }
    .feature:hover .underline { background: var(--accent); width: 48px; }

    .feature .icon {
      width: 22px;
      height: 22px;
      color: var(--accent);
      stroke: currentColor;
      fill: none;
      stroke-width: 1.75;
      stroke-linecap: round;
      stroke-linejoin: round;
      display: block;
      margin-bottom: 1.1rem;
      flex-shrink: 0;
      transition: transform 320ms var(--ease-out), filter 320ms var(--ease-out);
    }
    .feature:hover .icon {
      transform: translateY(-1px);
      filter: drop-shadow(0 0 10px color-mix(in srgb, var(--accent) 40%, transparent));
    }

    @media (max-width: 1000px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px)  { .feature-grid { grid-template-columns: 1fr; } }

    /* ---------------------------------------------------------------------
       Roast section
       ------------------------------------------------------------------ */
    .roast {
      position: relative;
      padding: clamp(3.5rem, 6vw, 5.25rem) 0;
    }
    .roast-head {
      max-width: 980px;
    }
    .roast-head .label {
      color: var(--muted);
    }
    .roast-head h2 {
      margin-top: 0.85rem;
      font-size: clamp(2.4rem, 6vw, 4.6rem);
      letter-spacing: -0.045em;
      line-height: 1;
      font-weight: 800;
    }
    .roast-head h2 em {
      font-family: var(--serif);
      font-style: italic;
      font-weight: 600;
      color: var(--accent);
    }

    .quotes {
      margin-top: clamp(2.25rem, 4vw, 3rem);
      display: flex;
      flex-direction: column;
      gap: clamp(0.35rem, 1vw, 0.7rem);
      max-width: 1080px;
    }
    .quote {
      font-size: clamp(1.4rem, 4vw, 3rem);
      font-weight: 500;
      letter-spacing: -0.035em;
      line-height: 1.15;
      color: var(--muted);
    }
    .quote .strike {
      text-decoration: line-through;
      text-decoration-color: var(--dim);
      color: var(--dim);
    }
    /* Single-line lock + staggered indents only at lg breakpoint and up.
       Below this, statements wrap naturally and sit flush left. */
    @media (min-width: 1024px) {
      .quote { white-space: nowrap; line-height: 1.05; }
      .quote:nth-child(2) { transform: translateX(clamp(0.5rem, 4vw, 3rem)); }
      .quote:nth-child(3) { transform: translateX(clamp(1rem, 8vw, 6rem)); }
    }
    /* Final gut-punch — same style, no strike, brighter and slightly set off. */
    .quote-final {
      color: #d8d8d8;
      margin-top: clamp(0.6rem, 1.6vw, 1.1rem);
    }
    .quote em.lit {
      font-family: var(--serif);
      font-style: italic;
      font-weight: 600;
      color: var(--accent);
      text-decoration: none;
    }

    .roast-kicker {
      margin-top: clamp(1.6rem, 2.6vw, 2.25rem);
      max-width: 720px;
      padding-top: clamp(1.5rem, 2.5vw, 2rem);
    }
    .roast-kicker p {
      font-size: clamp(1.15rem, 1.8vw, 1.4rem);
      line-height: 1.45;
      color: var(--text);
      letter-spacing: -0.01em;
    }
    .roast-kicker em {
      font-family: var(--serif);
      font-style: italic;
      font-weight: 500;
      color: var(--accent);
    }

    /* ---------------------------------------------------------------------
       Final CTA
       ------------------------------------------------------------------ */
    .final {
      position: relative;
      text-align: center;
      overflow: hidden;
      /* Inherits the default section padding (clamp(5rem, 10vw, 8.5rem) 0)
         like .how/.features. Generous bottom room so the absolute footer
         sits well below the CTA content with real breathing room. */
      padding-bottom: clamp(11rem, 18vw, 15rem);
    }
    .final::before {
      content: '';
      position: absolute;
      width: 110%;
      height: 80%;
      left: -5%;
      bottom: -20%;
      background: radial-gradient(50% 60% at 50% 100%, var(--accent-glow), transparent 70%);
      pointer-events: none;
      z-index: -1;
    }
    .final h2 {
      font-size: clamp(1.5rem, 5.6vw, 4.2rem);
      letter-spacing: -0.04em;
      line-height: 1.05;
    }
    /* Lock the two parts to their own lines, no wrapping. */
    .final h2 > span,
    .final h2 > em {
      display: block;
      white-space: nowrap;
    }
    .final h2 em {
      font-family: var(--serif);
      font-style: italic;
      font-weight: 600;
      color: var(--accent);
    }
    .final .lede {
      max-width: 38rem;
      margin: 1.4rem auto 0;
      font-size: 1.05rem;
      color: var(--text-soft);
    }
    .final .actions {
      margin-top: 2.2rem;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 0.95rem;
    }

    /* ---------------------------------------------------------------------
       Footer
       ------------------------------------------------------------------ */
    footer {
      /* Mirror the nav: absolute, transparent, doesn't take its own layout
         space — sits over the bottom of the .final section so the two
         visually blend on a single canvas. */
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 5;
      padding: 2.4rem 0 2.6rem;
      background: transparent;
    }
    .foot-inner {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      justify-content: space-between;
      flex-wrap: wrap;
    }
    .foot-left {
      display: flex;
      align-items: center;
      gap: 0.85rem;
    }
    .foot-left .by {
      color: var(--muted);
      font-size: 0.86rem;
    }
    .foot-right {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
    }
    .foot-links {
      display: flex;
      gap: 1.6rem;
      flex-wrap: wrap;
    }
    .foot-links a {
      color: var(--text-soft);
      font-size: 0.88rem;
      transition: color 200ms var(--ease-out);
    }
    .foot-links a:hover { color: var(--accent); }
    .foot-socials {
      display: inline-flex;
      gap: 0.5rem;
    }
    .foot-social {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 999px;
      color: var(--text-soft);
      border: 1px solid var(--border);
      transition: color 200ms var(--ease-out), border-color 200ms var(--ease-out), background 200ms var(--ease-out);
    }
    .foot-social:hover {
      color: var(--accent);
      border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
      background: color-mix(in srgb, var(--accent) 6%, transparent);
    }
    .foot-social svg {
      width: 13px;
      height: 13px;
      display: block;
    }

    /* ---------------------------------------------------------------------
       Reveal-on-scroll
       ------------------------------------------------------------------ */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
    }
    .reveal.in {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal.delay-1 { transition-delay: 80ms; }
    .reveal.delay-2 { transition-delay: 160ms; }
    .reveal.delay-3 { transition-delay: 240ms; }
    .reveal.delay-4 { transition-delay: 320ms; }
    .reveal.delay-5 { transition-delay: 400ms; }
    .reveal.delay-6 { transition-delay: 480ms; }

    /* Animations */
    @keyframes rise {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes blink {
      50% { opacity: 0; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

    /* ---------------------------------------------------------------------
       Selection / focus
       ------------------------------------------------------------------ */
    ::selection {
      background: var(--accent);
      color: var(--accent-ink);
    }
    a:focus-visible,
    button:focus-visible,
    .btn:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 3px;
      border-radius: 6px;
    }

    /* ---------------------------------------------------------------------
       Mobile (≤ 640px) — tighter rhythm, stacked layouts, smaller type.
       Sits at the end so it consistently wins over earlier rules.
       ------------------------------------------------------------------ */
    @media (max-width: 640px) {
      /* Less breathing room between sections */
      section { padding: clamp(2.5rem, 7vw, 4rem) 0; }
      .roast { padding: clamp(2rem, 5vw, 3.25rem) 0; }
      /* Mobile .final keeps the standard mobile section padding-top + extra
         bottom to clear the (taller, stacked) absolute footer with breathing room. */
      .final { padding-bottom: clamp(12rem, 30vw, 16rem); }
      .hero { padding-top: clamp(6.5rem, 16vw, 8rem); }
      .hero h1 { font-size: clamp(2rem, 9vw, 2.5rem); }

      /* Section heads tighter */
      .section-head { margin-bottom: clamp(1.6rem, 4vw, 2.25rem); }
      .section-head h2 { font-size: clamp(1.65rem, 6.5vw, 2.4rem); }
      .section-head .lede { font-size: 0.96rem; margin-top: 0.75rem; }
      .roast-head h2 { font-size: clamp(1.85rem, 7.5vw, 2.6rem); }

      /* Hero copy — keep things readable, not chunky */
      .hero .subhead {
        margin-top: 1.1rem;
        font-size: 0.95rem;
        max-width: 22rem;
      }
      .hero-cta-wrap { margin-top: 1.5rem; }
      .micro {
        font-size: 0.62rem;
        letter-spacing: 0.18em;
        gap: 0.35rem 0.5rem;
        padding: 0 0.5rem;
      }
      .hero-shot { margin-top: clamp(2rem, 5vw, 3rem); }

      /* Hero badge — slightly smaller, allow it to wrap rather than overflow */
      .hero-badge {
        font-size: 0.72rem;
        padding: 0.35rem 0.7rem 0.35rem 0.6rem;
        white-space: normal;
        text-align: center;
      }

      /* Step cards (THE DEAL) — already stack at 820px; just tighten */
      .step { padding: 1.5rem 1.3rem 1.65rem; }
      .step .num { font-size: 1.7rem; margin-bottom: 0.7rem; }
      .step h3 { font-size: 1.1rem; }
      .step p { font-size: 0.92rem; }

      /* Feature cards — already 1-col under 600px; just tighten + drop min height */
      .feature { padding: 1.55rem 1.3rem; min-height: auto; }
      .feature h3 { font-size: 1.08rem; }
      .feature p { font-size: 0.92rem; }
      .feature .icon { margin-bottom: 0.85rem; }

      /* Quotes wrap naturally below 1024px; just keep their line-height comfy */
      .quote { line-height: 1.2; }
      .quotes { gap: clamp(0.55rem, 2vw, 0.95rem); }

      /* Final CTA */
      .final h2 { font-size: clamp(1.55rem, 7vw, 2.4rem); }
      .final .lede { font-size: 0.96rem; }
      .final .actions { margin-top: 1.6rem; }

      /* Footer — stack instead of side-by-side wrap */
      footer { padding: 2rem 0 2.2rem; }
      .foot-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
      }
      .foot-right {
        width: 100%;
        justify-content: flex-start;
        gap: 1.1rem;
      }
      .foot-links { gap: 1.1rem; }
    }
