/* AgentCall shared theme — extracted from index.html (homepage keeps its own inline copy). */
    /* ============================================================
       AgentCall — Light theme, editorial layout
       ============================================================ */

    :root {
      --bg: #f3f0e8;
      --bg-2: #ebe7dc;
      --bg-card: #ffffff;
      --bg-dark: #0e0f0d;
      --bg-dark-2: #16170f;
      --ink: #0c0d0a;
      --ink-2: #1a1c19;
      --muted: #5a584f;
      --muted-2: #8d8a7e;
      --line: #d8d3c4;
      --line-2: #c6c0ad;
      --line-dark: #2a2c24;
      --lime: #c8ff3a;
      --lime-soft: #e6fa8a;
      --ink-on-lime: #0a0b07;
      --orange: #ff5b25;
      --berry: #4d2bff;
      --serif: 'Instrument Serif', 'Times New Roman', serif;
      --sans: 'Inter', system-ui, -apple-system, sans-serif;
      --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
      --shadow-lg: 0 30px 80px -30px rgba(15, 17, 12, 0.18), 0 8px 20px -10px rgba(15, 17, 12, 0.08);
      --shadow-md: 0 14px 40px -16px rgba(15, 17, 12, 0.16), 0 4px 10px -4px rgba(15, 17, 12, 0.06);
      --radius: 18px;
      --radius-sm: 10px;
      --radius-lg: 28px;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
    body {
      margin: 0;
      font-family: var(--sans);
      color: var(--ink);
      background: var(--bg);
      font-size: 16px;
      line-height: 1.55;
      overflow-x: hidden;
      letter-spacing: -0.005em;
      background-image:
        radial-gradient(circle at 14% 8%, rgba(200, 255, 58, 0.22), transparent 40%),
        radial-gradient(circle at 86% 18%, rgba(255, 91, 37, 0.10), transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(77, 43, 255, 0.06), transparent 50%);
      background-attachment: fixed;
    }
    body::before {
      content: '';
      position: fixed; inset: 0;
      pointer-events: none;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
      opacity: 0.55;
      z-index: 1;
      mix-blend-mode: multiply;
    }
    main { position: relative; z-index: 2; }

    a { color: inherit; text-decoration: none; }
    img, svg { display: block; max-width: 100%; }
    button { font-family: inherit; cursor: pointer; }

    ::selection { background: var(--lime); color: var(--ink-on-lime); }

    .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 28px; }
    @media (min-width: 900px) { .container { padding: 0 40px; } }

    /* ===== Typography ===== */
    h1, h2, h3, h4 { font-family: var(--sans); font-weight: 700; color: var(--ink); letter-spacing: -0.035em; margin: 0; line-height: 1.02; }
    .serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; font-style: italic; }
    .mono { font-family: var(--mono); }

    .eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--ink);
      padding: 8px 14px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.6);
      border-radius: 999px;
      backdrop-filter: blur(8px);
    }
    .eyebrow .dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--lime);
      box-shadow: 0 0 0 4px rgba(200, 255, 58, 0.25);
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.3);opacity:.6} }

    .section-label {
      font-family: var(--mono);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.22em;
      color: var(--muted);
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 24px;
    }
    .section-label::before {
      content: ''; width: 28px; height: 1px; background: var(--ink);
    }

    /* ===== Nav ===== */
    .nav-wrap {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 16px 0;
      transition: all 0.3s ease;
    }
    .nav-wrap.scrolled {
      backdrop-filter: blur(18px) saturate(160%);
      background: rgba(243, 240, 232, 0.78);
      border-bottom: 1px solid var(--line);
    }
    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .nav-logo {
      height: 44px;
      color: var(--ink);
      transition: transform 0.3s ease;
    }
    .nav-logo:hover { transform: translateX(2px); }
    .nav-logo svg { height: 100%; width: auto; }
    .nav-links {
      display: none;
      align-items: center;
      gap: 4px;
      padding: 6px;
      background: rgba(255,255,255,0.5);
      border: 1px solid var(--line);
      border-radius: 999px;
      backdrop-filter: blur(10px);
    }
    .nav-links a {
      font-size: 13.5px;
      font-weight: 500;
      color: var(--ink-2);
      padding: 8px 14px;
      border-radius: 999px;
      transition: all 0.2s ease;
    }
    .nav-links a:hover { background: var(--ink); color: var(--bg); }
    .nav-cta {
      display: flex; align-items: center; gap: 10px;
    }
    .nav-cta .btn-ghost {
      display: none;
      font-size: 13.5px;
      font-weight: 500;
      color: var(--ink);
      padding: 10px 16px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 20px;
      font-size: 14px;
      font-weight: 600;
      border-radius: 999px;
      border: 1px solid transparent;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      letter-spacing: -0.01em;
      white-space: nowrap;
    }
    .btn-dark {
      background: var(--ink);
      color: var(--bg);
      border-color: var(--ink);
    }
    .btn-dark:hover { transform: translateY(-1px); box-shadow: 0 10px 30px -10px rgba(15,17,12,0.4); }
    .btn-lime {
      background: var(--lime);
      color: var(--ink-on-lime);
      border-color: var(--ink-on-lime);
    }
    .btn-lime:hover { transform: translateY(-1px); box-shadow: 0 10px 30px -10px rgba(200,255,58,0.6); background: #d6ff5e; }
    .btn-outline {
      background: transparent;
      color: var(--ink);
      border-color: var(--ink);
    }
    .btn-outline:hover { background: var(--ink); color: var(--bg); }
    .btn-soft {
      background: rgba(255,255,255,0.7);
      color: var(--ink);
      border-color: var(--line-2);
    }
    .btn-soft:hover { background: var(--bg-card); border-color: var(--ink); }
    .btn .arrow { transition: transform 0.25s ease; }
    .btn:hover .arrow { transform: translateX(4px); }

    @media (min-width: 980px) {
      .nav-links { display: inline-flex; }
      .nav-cta .btn-ghost { display: inline-flex; }
    }

    /* Scroll progress */
    .scroll-bar {
      position: fixed; top: 0; left: 0; height: 2px;
      background: linear-gradient(90deg, var(--lime), var(--orange));
      z-index: 200;
      width: 0%;
      transition: width 0.05s linear;
    }

    /* ===== Hero ===== */
    .hero {
      padding: 220px 0 70px;        /* big top padding pushes text below the nav */
      position: relative;
      overflow: hidden;
      min-height: min(86vh, 800px);
      display: flex;
      align-items: flex-start;      /* anchor text below the nav, not vertically centered */
    }
    .hero .container {
      position: relative;
      z-index: 2;
      width: 100%;
    }
    .hero-inner {
      display: grid;
      gap: 28px;                    /* tighter stack: headline → sub → CTAs */
      max-width: 920px;             /* enough room for the longest headline line */
    }
    .hero-headline {
      font-size: clamp(40px, 6vw, 92px);
      font-weight: 700;
      letter-spacing: -0.04em;
      line-height: 0.96;
      max-width: none;        /* let explicit <br>s own the line breaks */
    }
    @media (min-width: 720px) {
      /* Desktop: lock the 4-line break exactly as authored, no auto-wrap. */
      .hero-headline { white-space: nowrap; }
    }
    .hero-headline .serif {
      font-weight: 400;
      letter-spacing: -0.025em;
    }
    .hero-headline .accent {
      position: relative;
      display: inline-block;
    }
    .hero-headline .accent::after {
      content: '';
      position: absolute;
      left: -2%; right: -2%;
      bottom: 6%;
      height: 38%;
      background: var(--lime);
      z-index: -1;
      border-radius: 4px;
      transform: skewY(-1deg);
    }
    .hero-sub {
      font-size: clamp(17px, 1.6vw, 22px);
      color: var(--muted);
      max-width: 50ch;
      line-height: 1.45;
      letter-spacing: -0.012em;
      margin: 0;
    }
    .hero-sub strong { color: var(--ink); font-weight: 600; }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    /* "Prompt for LLMs" tooltip — shown for 3s after a successful copy */
    #copy-prompt-btn { position: relative; overflow: visible; }
    .cp-tooltip {
      position: absolute;
      top: calc(100% + 14px);
      left: 50%;
      padding: 9px 14px;
      background: var(--ink);
      color: var(--bg);
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: 0.02em;
      border-radius: 8px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transform: translateX(-50%) translateY(-6px);
      transition: opacity 0.22s ease, transform 0.22s ease;
      z-index: 10;
      box-shadow: 3px 3px 0 rgba(15,17,12,0.25);
    }
    .cp-tooltip.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
    .cp-tooltip::before {
      content: '';
      position: absolute;
      bottom: 100%;
      left: 50%;
      transform: translateX(-50%);
      width: 0; height: 0;
      border-left: 7px solid transparent;
      border-right: 7px solid transparent;
      border-bottom: 7px solid var(--ink);
    }
    @media (max-width: 520px) {
      .cp-tooltip { white-space: normal; max-width: 240px; text-align: center; }
    }
    .hero-meta {
      display: flex;
      gap: 20px;
      align-items: center;
      flex-wrap: wrap;
      font-size: 13px;
      color: var(--muted);
    }
    .hero-meta-item {
      display: flex; gap: 8px; align-items: center;
    }
    .hero-meta-item svg { color: var(--ink); }

    .hero-visual {
      position: relative;
      margin-top: 20px;
    }

    /* Hero illustration — used as the section background, blended with cream */
    .hero-art {
      position: absolute;
      inset: 0;
      margin: 0;
      padding: 0;
      pointer-events: none;
      z-index: 0;          /* behind .container (z-index: 2) */
      overflow: hidden;
    }
    .hero-art img {
      position: absolute;
      right: 0%;            /* flush with viewport — no clip on the rolling bot */
      bottom: 18%;
      width: 54%;           /* narrower so the image starts further right on the page */
      max-width: 980px;
      min-width: 560px;
      height: auto;
      display: block;
      background: transparent;
      border: none;
      box-shadow: none;
      /* Real alpha PNG — no blend trick, no mask needed. */
      opacity: 1;
    }
    .hero-art-cap,
    .hero-art-dot { display: none; }   /* drop the framed caption pill */

    @media (max-width: 800px) {
      .hero { min-height: 0; padding: 110px 0 60px; }
      .hero-inner { max-width: 100%; }
      .hero-art {
        position: relative;
        inset: auto;
        margin-top: 28px;
        height: auto;
        overflow: visible;
      }
      .hero-art img {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        opacity: 0.95;
      }
    }

    /* Meeting mockup */
    .meeting-card {
      background: var(--bg-dark);
      border-radius: var(--radius-lg);
      padding: 22px;
      box-shadow: var(--shadow-lg);
      color: #e8e6df;
      position: relative;
      overflow: hidden;
      transform: rotate(-0.6deg);
    }
    .meeting-bar {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 16px;
    }
    .meeting-pills { display: flex; gap: 6px; }
    .meeting-pills span { width: 11px; height: 11px; border-radius: 50%; background: #3a3b34; }
    .meeting-pills span:nth-child(1) { background: #ff5f57; }
    .meeting-pills span:nth-child(2) { background: #febc2e; }
    .meeting-pills span:nth-child(3) { background: #28c840; }
    .meeting-name {
      font-family: var(--mono);
      font-size: 11px;
      color: #8d8a7e;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .meeting-time {
      font-family: var(--mono);
      font-size: 11px;
      color: #c8ff3a;
      letter-spacing: 0.08em;
    }
    .meeting-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
    .participant {
      aspect-ratio: 4 / 3;
      border-radius: 14px;
      background: linear-gradient(135deg, #21221c, #181913);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      padding: 10px;
      border: 1px solid rgba(255,255,255,0.04);
    }
    .participant.bot {
      background: linear-gradient(135deg, #1f261a 0%, #161a13 100%);
      border: 1px solid rgba(200, 255, 58, 0.45);
      box-shadow: 0 0 0 3px rgba(200, 255, 58, 0.12), inset 0 0 60px rgba(200, 255, 58, 0.08);
    }
    .participant .avatar {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%, -55%);
      width: 44px; height: 44px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700;
      font-size: 16px;
      color: var(--bg);
      letter-spacing: -0.02em;
    }
    .participant.bot .avatar {
      background: var(--lime);
      color: var(--ink-on-lime);
      box-shadow: 0 0 30px rgba(200, 255, 58, 0.5);
    }
    .participant .name-tag {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.08em;
      color: #d4d2c8;
      background: rgba(0,0,0,0.4);
      padding: 4px 7px;
      border-radius: 5px;
      backdrop-filter: blur(4px);
    }
    .participant.speaking {
      box-shadow: inset 0 0 0 2px var(--lime);
    }
    .participant.speaking::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(200, 255, 58, 0.12), transparent 60%);
      animation: speaking 1.4s ease-in-out infinite;
    }
    @keyframes speaking { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }

    .live-caption {
      position: absolute;
      left: 22px; right: 22px; bottom: 22px;
      background: rgba(15, 17, 12, 0.85);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 14px;
      padding: 14px 16px;
      display: flex;
      gap: 12px;
      align-items: flex-start;
      transform: translateY(60%);
      opacity: 0;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .live-caption.show { transform: translateY(0); opacity: 1; }
    .live-caption .badge {
      width: 28px; height: 28px;
      border-radius: 8px;
      background: var(--lime);
      color: var(--ink-on-lime);
      display: flex; align-items: center; justify-content: center;
      font-weight: 700;
      font-size: 12px;
      flex-shrink: 0;
    }
    .live-caption .speaker {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.1em;
      color: var(--lime);
      text-transform: uppercase;
      margin-bottom: 2px;
    }
    .live-caption .text {
      font-size: 13px;
      color: #f3f0e8;
      line-height: 1.4;
    }

    /* Terminal */
    .terminal {
      background: var(--bg-dark);
      border-radius: var(--radius);
      padding: 0;
      overflow: hidden;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--line-dark);
      position: absolute;
      right: -10px;
      bottom: -30px;
      width: 380px;
      transform: rotate(2deg);
      z-index: 3;
    }
    @media (max-width: 880px) {
      .terminal { position: static; width: 100%; transform: none; margin-top: -10px; }
      .meeting-card { transform: none; }
    }
    .term-head {
      display: flex; align-items: center; gap: 8px;
      padding: 10px 14px;
      background: #0a0b08;
      border-bottom: 1px solid var(--line-dark);
    }
    .term-head .dots { display: flex; gap: 5px; }
    .term-head .dots span { width: 9px; height: 9px; border-radius: 50%; }
    .term-head .dots span:nth-child(1) { background: #ff5f57; }
    .term-head .dots span:nth-child(2) { background: #febc2e; }
    .term-head .dots span:nth-child(3) { background: #28c840; }
    .term-head .title { font-family: var(--mono); font-size: 11px; color: #6c6a60; margin-left: 6px; }
    .term-body {
      font-family: var(--mono);
      font-size: 12.5px;
      line-height: 1.65;
      color: #c8ccc1;
      padding: 14px 16px;
      min-height: 220px;
      max-height: 280px;
      overflow: hidden;
    }
    .term-line { white-space: pre-wrap; word-break: break-word; }
    .term-line .prompt { color: var(--lime); }
    .term-line .str { color: #f4d27c; }
    .term-line .ok { color: var(--lime); }
    .term-line .out { color: #d4d2c8; }
    .term-line .speaker { color: #8cb5ff; }
    .term-line .kw { color: #ff9b75; }
    .term-line .cmt { color: #6c6a60; font-style: italic; }
    .term-line .var { color: #c0c4b8; }
    .term-line .fn { color: #b3e36a; }
    .cursor-blink::after { content: '▊'; color: var(--lime); animation: blink 1s steps(2) infinite; margin-left: 2px; }
    @keyframes blink { 50% { opacity: 0; } }

    /* ===== Marquee ===== */
    .marquee-wrap {
      padding: 20px 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(255,255,255,0.4);
      overflow: hidden;
      position: relative;
    }
    .marquee-wrap::before, .marquee-wrap::after {
      content: '';
      position: absolute; top: 0; bottom: 0;
      width: 120px; z-index: 2; pointer-events: none;
    }
    .marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
    .marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
    .marquee {
      display: flex; gap: 60px;
      width: max-content;
      animation: marquee 30s linear infinite;
    }
    .marquee-item {
      display: flex; align-items: center; gap: 12px;
      font-family: var(--mono);
      font-size: 13px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--ink-2);
      white-space: nowrap;
    }
    .marquee-item .star {
      color: var(--orange);
      font-weight: 700;
      font-size: 18px;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* ===== Generic Section ===== */
    .section {
      padding: 120px 0;
      position: relative;
    }
    .section-head {
      margin-bottom: 60px;
      max-width: 760px;
    }
    .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
    .section-head.center .section-label::before { display: none; }
    .section-title {
      font-size: clamp(34px, 5vw, 64px);
      font-weight: 700;
      line-height: 1.02;
      letter-spacing: -0.04em;
      margin-bottom: 18px;
    }
    .section-title .serif { font-weight: 400; }
    .section-sub {
      font-size: clamp(16px, 1.3vw, 18px);
      color: var(--muted);
      max-width: 60ch;
      margin: 0;
      line-height: 1.55;
    }
    .section-head.center .section-sub { margin-left: auto; margin-right: auto; }

    /* ===== Steps ===== */
    .steps {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--bg-card);
    }
    @media (min-width: 960px) {
      .steps { grid-template-columns: repeat(3, 1fr); }
    }
    .step {
      padding: 36px 32px;
      border-bottom: 1px solid var(--line);
      position: relative;
    }
    @media (min-width: 960px) {
      .step { border-bottom: none; border-right: 1px solid var(--line); }
      .step:last-child { border-right: none; }
    }
    .step:last-child { border-bottom: none; }
    .step-no {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-family: var(--mono);
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 30px;
      letter-spacing: 0.1em;
    }
    .step-no b {
      font-family: var(--sans);
      font-weight: 700;
      font-size: 22px;
      color: var(--ink);
    }
    .step h3 {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 12px;
      letter-spacing: -0.025em;
    }
    .step p { color: var(--muted); margin: 0 0 22px 0; }
    .step-code {
      background: var(--bg-dark);
      border-radius: 12px;
      padding: 16px 18px;
      font-family: var(--mono);
      font-size: 12.5px;
      color: #d4d2c8;
      line-height: 1.7;
      overflow-x: auto;
    }
    .step-code .var { color: #c0c4b8; }
    .step-code .fn { color: #b3e36a; }
    .step-code .str { color: #f4d27c; }
    .step-code .kw { color: #ff9b75; }
    .step-code .cmt { color: #6c6a60; font-style: italic; }

    /* ===== Modes ===== */
    .modes {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
    }
    @media (min-width: 800px) { .modes { grid-template-columns: repeat(3, 1fr); } }
    .mode {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .mode:hover {
      border-color: var(--ink);
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .mode-icon-wrap {
      width: 52px; height: 52px;
      border-radius: 14px;
      background: var(--lime);
      display: flex; align-items: center; justify-content: center;
      color: var(--ink-on-lime);
      margin-bottom: 24px;
    }
    .mode:nth-child(2) .mode-icon-wrap { background: var(--ink); color: var(--lime); }
    .mode:nth-child(3) .mode-icon-wrap { background: var(--orange); color: #fff; }
    .mode h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 12px;
      letter-spacing: -0.025em;
    }
    .mode p { color: var(--muted); margin: 0 0 18px 0; }
    .mode .best {
      display: inline-block;
      font-family: var(--mono);
      font-size: 11px;
      color: var(--ink);
      padding: 6px 10px;
      background: var(--bg-2);
      border-radius: 6px;
      letter-spacing: 0.02em;
    }

    /* ===== Voice Section ===== */
    .voice-wrap {
      display: grid;
      gap: 28px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 960px) {
      .voice-wrap { grid-template-columns: 1.1fr 1fr; }
    }
    .voice-features {
      display: grid;
      gap: 8px;
    }
    .voice-feat {
      padding: 22px 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--bg-card);
      display: flex;
      gap: 18px;
      align-items: flex-start;
      transition: all 0.25s ease;
    }
    .voice-feat:hover { border-color: var(--ink); background: var(--bg-card); }
    .voice-feat-icon {
      width: 38px; height: 38px;
      border-radius: 10px;
      background: var(--bg-2);
      display: flex; align-items: center; justify-content: center;
      color: var(--ink);
      flex-shrink: 0;
    }
    .voice-feat h4 { font-size: 16px; font-weight: 600; margin: 0 0 4px 0; letter-spacing: -0.015em; }
    .voice-feat p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.5; }

    .inject-cards {
      display: grid;
      gap: 16px;
    }
    .inject {
      background: var(--bg-dark);
      color: #e8e6df;
      border-radius: var(--radius);
      padding: 26px;
      position: relative;
      overflow: hidden;
    }
    .inject:nth-child(2) {
      background: var(--bg-card);
      color: var(--ink);
      border: 1px solid var(--line);
    }
    .inject-tag {
      display: inline-block;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.1em;
      color: var(--lime);
      padding: 4px 9px;
      background: rgba(200,255,58,0.1);
      border: 1px solid rgba(200,255,58,0.3);
      border-radius: 5px;
      margin-bottom: 16px;
    }
    .inject:nth-child(2) .inject-tag { color: var(--ink); background: var(--lime); border-color: var(--ink); }
    .inject p { font-size: 14px; line-height: 1.55; }
    .inject .label {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #8d8a7e;
      margin-top: 18px;
      margin-bottom: 6px;
    }
    .inject:nth-child(2) .label { color: var(--muted); }
    .inject .said {
      font-size: 14px;
      padding: 10px 12px;
      border-radius: 8px;
      background: rgba(255,255,255,0.04);
      font-family: var(--mono);
    }
    .inject:nth-child(2) .said { background: var(--bg-2); }
    .inject .spoken {
      font-family: var(--serif);
      font-style: italic;
      font-size: 18px;
      line-height: 1.45;
      color: #f3f0e8;
      padding: 10px 0;
    }
    .inject:nth-child(2) .spoken { color: var(--ink); }

    /* ===== TTS ===== */
    .tts-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-bottom: 28px;
    }
    @media (min-width: 800px) { .tts-stats { grid-template-columns: repeat(4, 1fr); } }
    .tts-stat {
      background: var(--bg-card);
      padding: 32px 24px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .tts-stat-num {
      font-size: clamp(36px, 4vw, 56px);
      font-weight: 700;
      letter-spacing: -0.04em;
      line-height: 1;
      color: var(--ink);
    }
    .tts-stat-label {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.1em;
      color: var(--muted);
      text-transform: uppercase;
    }
    .tts-langs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 28px;
    }
    .lang-tag {
      padding: 8px 14px;
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: 999px;
      font-size: 13px;
      color: var(--ink-2);
      font-weight: 500;
      transition: all 0.2s ease;
    }
    .lang-tag:hover { border-color: var(--ink); background: var(--ink); color: var(--bg); }

    .code-block {
      background: var(--bg-dark);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--line-dark);
      box-shadow: var(--shadow-md);
    }
    .code-head {
      display: flex; justify-content: space-between; align-items: center;
      padding: 12px 18px;
      background: #0a0b08;
      border-bottom: 1px solid var(--line-dark);
    }
    .code-head .dots { display: flex; gap: 6px; }
    .code-head .dots span { width: 10px; height: 10px; border-radius: 50%; }
    .code-head .dots span:nth-child(1) { background: #ff5f57; }
    .code-head .dots span:nth-child(2) { background: #febc2e; }
    .code-head .dots span:nth-child(3) { background: #28c840; }
    .code-head .lang { font-family: var(--mono); font-size: 11px; color: #6c6a60; letter-spacing: 0.1em; }
    .code-block pre {
      margin: 0;
      padding: 20px 22px;
      font-family: var(--mono);
      font-size: 13px;
      color: #d4d2c8;
      line-height: 1.7;
      overflow-x: auto;
    }
    .code-block .var { color: #c0c4b8; }
    .code-block .fn { color: #b3e36a; }
    .code-block .str { color: #f4d27c; }
    .code-block .kw { color: #ff9b75; }
    .code-block .cmt { color: #6c6a60; font-style: italic; }

    /* ===== Transcription ===== */
    .transcript-wrap {
      display: grid;
      gap: 32px;
      grid-template-columns: 1fr;
      align-items: start;
    }
    @media (min-width: 960px) { .transcript-wrap { grid-template-columns: 1.05fr 1fr; } }
    .transcript-mock {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px;
      position: relative;
    }
    .ts-row {
      display: flex; gap: 14px;
      padding: 14px 0;
      border-bottom: 1px dashed var(--line);
    }
    .ts-row:last-child { border-bottom: none; }
    .ts-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 13px;
      color: #fff; flex-shrink: 0;
    }
    .ts-row:nth-child(1) .ts-avatar { background: #4d2bff; }
    .ts-row:nth-child(2) .ts-avatar { background: #ff5b25; }
    .ts-row:nth-child(3) .ts-avatar { background: var(--lime); color: var(--ink-on-lime); }
    .ts-row:nth-child(4) .ts-avatar { background: var(--ink); }
    .ts-content { flex: 1; min-width: 0; }
    .ts-meta {
      display: flex; gap: 10px; align-items: baseline;
      margin-bottom: 4px;
    }
    .ts-name { font-weight: 600; font-size: 14px; }
    .ts-time { font-family: var(--mono); font-size: 11px; color: var(--muted); }
    .ts-tag {
      display: inline-block;
      font-family: var(--mono);
      font-size: 9px;
      letter-spacing: 0.1em;
      padding: 2px 6px;
      border-radius: 4px;
      background: var(--lime);
      color: var(--ink-on-lime);
      text-transform: uppercase;
      font-weight: 600;
    }
    .ts-text { font-size: 14px; color: var(--ink-2); line-height: 1.5; }
    .transcript-features {
      display: grid;
      gap: 10px;
    }
    .ft-row {
      display: flex; gap: 12px;
      padding: 14px 16px;
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: 12px;
      font-size: 14px;
      align-items: center;
    }
    .ft-check {
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--lime);
      color: var(--ink-on-lime);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }

    /* ===== Awareness ===== */
    .awareness {
      display: grid; gap: 28px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 800px) { .awareness { grid-template-columns: 1fr 1fr; } }
    .aw-card {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
    }
    .aw-card h3 {
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 24px;
      display: flex; align-items: center; gap: 12px;
    }
    .aw-card h3 .pip {
      display: inline-block; width: 8px; height: 8px;
      background: var(--lime); border-radius: 50%;
    }
    .aw-card.actions h3 .pip { background: var(--orange); }
    .aw-list { display: grid; gap: 14px; }
    .aw-item {
      display: grid;
      grid-template-columns: minmax(140px, auto) 1fr;
      gap: 16px;
      padding: 12px 0;
      border-bottom: 1px dashed var(--line);
      font-size: 14px;
    }
    .aw-item:last-child { border-bottom: none; }
    .aw-item strong {
      font-weight: 600;
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--ink);
    }
    .aw-item span { color: var(--muted); }

    /* ===== Platforms ===== */
    .platforms-section { background: var(--ink); color: var(--bg); padding: 100px 0; border-radius: var(--radius-lg); }
    .platforms-section .section-head { color: var(--bg); }
    .platforms-section .section-title { color: var(--bg); }
    .platforms-section .section-sub { color: rgba(243,240,232,0.65); }
    .platforms-section .section-label { color: rgba(243,240,232,0.6); }
    .platforms-section .section-label::before { background: var(--lime); }
    .platforms-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1px;
      background: rgba(255,255,255,0.06);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    @media (min-width: 900px) { .platforms-grid { grid-template-columns: repeat(2, 1fr); } }
    .platform-col {
      background: var(--ink);
      padding: 32px;
    }
    .platform-col h3 {
      color: var(--lime);
      font-family: var(--mono);
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      margin-bottom: 24px;
    }
    .platform-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
    .platform-col li {
      font-size: 22px;
      font-weight: 600;
      letter-spacing: -0.025em;
      color: var(--bg);
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: padding-left 0.3s ease, color 0.3s ease;
    }
    .platform-col li:hover { color: var(--lime); padding-left: 8px; }

    /* ===== Safety ===== */
    .safety-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .safety-table th, .safety-table td {
      padding: 18px 22px;
      text-align: left;
      border-bottom: 1px solid var(--line);
    }
    .safety-table th {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      background: var(--bg-2);
      font-weight: 500;
    }
    .safety-table tr:last-child td { border-bottom: none; }
    .safety-table td:first-child { font-weight: 600; }
    .safety-table td { font-size: 15px; }

    /* ===== Tunnel ===== */
    .tunnel-wrap {
      display: grid; gap: 36px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 900px) { .tunnel-wrap { grid-template-columns: 1fr 1fr; align-items: center; } }
    .tunnel-features { display: grid; gap: 14px; }
    .tunnel-flow {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 28px;
      display: grid;
      gap: 16px;
    }
    .tunnel-step {
      display: flex; gap: 12px; align-items: center;
      padding: 14px 16px;
      border-radius: 12px;
      background: var(--bg-2);
      font-family: var(--mono);
      font-size: 13px;
    }
    .tunnel-step.url { background: var(--ink); color: var(--bg); }
    .tunnel-step.url .live { color: var(--lime); }
    .tunnel-arrow {
      text-align: center;
      color: var(--muted);
      font-size: 18px;
    }

    /* ===== Use Cases ===== */
    .usecases {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }
    @media (min-width: 700px) { .usecases { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1080px) { .usecases { grid-template-columns: repeat(3, 1fr); } }
    .usecase {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 30px;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .usecase:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--ink);
    }
    .usecase-num {
      font-family: var(--mono);
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.14em;
      margin-bottom: 14px;
    }
    .usecase h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 12px;
      letter-spacing: -0.025em;
    }
    .usecase p { color: var(--muted); margin: 0; font-size: 14.5px; line-height: 1.5; }
    .usecase::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 70px; height: 70px;
      background: radial-gradient(circle, var(--lime), transparent 70%);
      opacity: 0; transition: opacity 0.3s ease;
    }
    .usecase:hover::before { opacity: 0.5; }

    /* ===== Pricing ===== */
    .pricing-grid {
      display: grid;
      gap: 18px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 900px) { .pricing-grid { grid-template-columns: 1fr 1fr 1fr !important; } }
    .price-card {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 38px 32px;
    }
    .price-card.feat {
      background: var(--ink);
      color: var(--bg);
      border-color: var(--ink);
      position: relative;
    }
    .price-card.feat::after {
      content: '';
      position: absolute; inset: -2px;
      border-radius: var(--radius-lg);
      border: 2px solid var(--lime);
      pointer-events: none;
    }
    .price-card .tag {
      display: inline-block;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 5px 10px;
      background: var(--lime);
      color: var(--ink-on-lime);
      border-radius: 5px;
      margin-bottom: 18px;
    }
    .price-card h3 {
      font-size: 26px;
      font-weight: 700;
      letter-spacing: -0.025em;
      margin-bottom: 12px;
    }
    .price-card.feat h3 { color: var(--bg); }
    .price-card p { color: var(--muted); margin-bottom: 22px; line-height: 1.5; }
    .price-card.feat p { color: rgba(243,240,232,0.65); }
    .price-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
    .price-list li {
      display: flex; gap: 12px;
      align-items: flex-start;
      font-size: 14.5px;
      padding: 8px 0;
    }
    .price-card.feat .price-list li { color: rgba(243,240,232,0.9); }
    .price-cta {
      margin-top: 24px;
      width: fit-content;
    }
    .price-cta:hover { transform: translateY(-2px); }
    .price-list .ck {
      width: 20px; height: 20px;
      border-radius: 50%;
      background: var(--lime);
      color: var(--ink-on-lime);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 700;
      flex-shrink: 0;
    }

    /* ===== Quickstart ===== */
    .qs-wrap {
      display: grid; gap: 36px;
      grid-template-columns: 1fr;
    }
    @media (min-width: 960px) { .qs-wrap { grid-template-columns: 0.85fr 1.15fr; } }
    .qs-step {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 18px;
      padding: 18px 0;
      border-bottom: 1px dashed var(--line);
    }
    .qs-step:last-child { border-bottom: none; }
    .qs-num {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--ink);
      color: var(--bg);
      display: flex; align-items: center; justify-content: center;
      font-weight: 600; font-size: 14px;
      font-family: var(--mono);
    }
    .qs-step h4 { font-size: 17px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 4px; }
    .qs-step p { color: var(--muted); margin: 0; font-size: 14px; line-height: 1.5; }
    .qs-step code {
      font-family: var(--mono);
      font-size: 12.5px;
      background: var(--bg-2);
      padding: 2px 6px;
      border-radius: 4px;
      color: var(--ink);
    }

    /* ===== FAQ ===== */
    .faq-list { display: grid; gap: 12px; }
    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      transition: all 0.25s ease;
    }
    .faq-item.open { border-color: var(--ink); }
    .faq-q {
      width: 100%;
      border: none;
      background: transparent;
      padding: 22px 26px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: var(--sans);
      font-size: 17px;
      font-weight: 600;
      color: var(--ink);
      text-align: left;
      letter-spacing: -0.015em;
    }
    .faq-q .sign {
      width: 28px; height: 28px;
      border-radius: 50%;
      border: 1px solid var(--line);
      display: flex; align-items: center; justify-content: center;
      transition: all 0.25s ease;
      flex-shrink: 0;
    }
    .faq-item.open .faq-q .sign { background: var(--ink); color: var(--bg); transform: rotate(45deg); border-color: var(--ink); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }
    .faq-item.open .faq-a { max-height: 400px; }
    .faq-a-inner {
      padding: 0 26px 22px 26px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.6;
    }

    /* ===== CTA Banner ===== */
    .cta {
      padding: 100px 0;
    }
    .cta-card {
      background: var(--ink);
      border-radius: var(--radius-lg);
      padding: 80px 40px;
      text-align: center;
      color: var(--bg);
      position: relative;
      overflow: hidden;
    }
    .cta-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 10%, rgba(200, 255, 58, 0.18), transparent 40%),
        radial-gradient(circle at 80% 90%, rgba(255, 91, 37, 0.14), transparent 50%);
    }
    .cta-card h2 {
      position: relative;
      font-size: clamp(40px, 6vw, 88px);
      font-weight: 700;
      letter-spacing: -0.04em;
      color: var(--bg);
      line-height: 1;
      margin-bottom: 20px;
    }
    .cta-card .serif { font-style: italic; font-weight: 400; }
    .cta-card .lime-mark { color: var(--lime); }
    .cta-card p {
      position: relative;
      color: rgba(243,240,232,0.7);
      font-size: 18px;
      margin-bottom: 36px;
    }
    .cta-card .hero-ctas { position: relative; justify-content: center; }

    /* ===== Footer ===== */
    footer {
      padding: 80px 0 40px;
      border-top: 1px solid var(--line);
      background: rgba(255,255,255,0.3);
    }
    .footer-grid {
      display: grid;
      gap: 40px;
      grid-template-columns: 1fr;
      margin-bottom: 50px;
    }
    @media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); } }
    .footer-brand .nav-logo { height: 36px; margin-bottom: 16px; }
    .footer-brand p { color: var(--muted); font-size: 14px; max-width: 36ch; }
    .footer-col h4 {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 16px;
      font-weight: 500;
    }
    .footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
    .footer-col a {
      font-size: 14.5px;
      color: var(--ink-2);
      transition: color 0.2s ease;
    }
    .footer-col a:hover { color: var(--ink); }
    .footer-bottom {
      padding-top: 30px;
      border-top: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      font-family: var(--mono);
      font-size: 12px;
      color: var(--muted);
      letter-spacing: 0.04em;
    }

    /* ===== Reveal Animations ===== */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-d1 { transition-delay: 0.08s; }
    .reveal-d2 { transition-delay: 0.16s; }
    .reveal-d3 { transition-delay: 0.24s; }
    .reveal-d4 { transition-delay: 0.32s; }

    /* Mobile nav toggle */
    .nav-toggle {
      display: flex;
      flex-direction: column;
      gap: 4px;
      padding: 8px;
      background: transparent;
      border: 1px solid var(--line);
      border-radius: 8px;
    }
    .nav-toggle span {
      width: 18px; height: 1.5px;
      background: var(--ink);
    }
    @media (min-width: 980px) {
      .nav-toggle { display: none; }
    }
    .mobile-menu {
      position: fixed;
      top: 60px;
      left: 16px; right: 16px;
      background: rgba(243, 240, 232, 0.98);
      backdrop-filter: blur(20px);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 20px;
      box-shadow: var(--shadow-lg);
      z-index: 99;
      display: none;
      flex-direction: column;
      gap: 8px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      padding: 12px 14px;
      font-size: 15px;
      font-weight: 500;
      border-radius: 10px;
    }
    .mobile-menu a:hover { background: var(--bg-2); }

    @media (max-width: 800px) {
      .section { padding: 80px 0; }
      .hero { padding: 110px 0 60px; }
      .container { padding: 0 20px; }
      .cta-card { padding: 56px 24px; }
      .footer-bottom { font-size: 11px; }
    }

    /* ============================================================
       COHESIVE EDITORIAL INK PASS · "Sketchbook journal"
       Sweeps every component to match the hand-drawn illustration
       aesthetic: thick ink borders, stamped offset shadows, slight
       rotations, hand-drawn underlines, paper-stamped section labels.
       ============================================================ */

    :root {
      --ink-line: 2px solid var(--ink);
      --ink-thin: 1.5px solid var(--ink);
      --ink-stamp-sm: 3px 3px 0 var(--ink);
      --ink-stamp: 5px 5px 0 var(--ink);
      --ink-stamp-lg: 8px 8px 0 var(--ink);
    }

    /* Quieter gradient washes, stronger paper grain */
    body {
      background-image:
        radial-gradient(circle at 14% 8%, rgba(200, 255, 58, 0.12), transparent 30%),
        radial-gradient(circle at 86% 18%, rgba(255, 91, 37, 0.06), transparent 35%);
    }
    body::before { opacity: 0.7; }

    /* === Buttons: neo-brutalist stamped === */
    .btn-dark, .btn-lime, .btn-outline, .btn-soft {
      border: var(--ink-line);
      box-shadow: var(--ink-stamp-sm);
      transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.18s ease;
    }
    .btn-dark:hover, .btn-lime:hover, .btn-outline:hover, .btn-soft:hover {
      transform: translate(-2px, -2px);
      box-shadow: var(--ink-stamp);
    }
    .btn-dark:active, .btn-lime:active, .btn-outline:active, .btn-soft:active {
      transform: translate(0, 0);
      box-shadow: 0 0 0 var(--ink);
    }

    /* === Eyebrow & section labels: ink stamps === */
    .eyebrow {
      border: var(--ink-thin);
      box-shadow: var(--ink-stamp-sm);
      background: var(--bg-card);
    }
    .section-label {
      background: var(--bg-card);
      padding: 7px 13px;
      border: var(--ink-thin);
      border-radius: 6px;
      box-shadow: var(--ink-stamp-sm);
      color: var(--ink);
      gap: 0;
      transform: rotate(-1deg);
    }
    .section-label::before { display: none; }
    .platforms-section .section-label {
      background: var(--lime);
      border-color: var(--lime);
      box-shadow: 3px 3px 0 var(--lime);
      color: var(--ink);
    }

    /* === Nav: stamped pill === */
    .nav-links {
      border: var(--ink-thin);
      box-shadow: var(--ink-stamp-sm);
      background: var(--bg-card);
    }
    .nav-toggle {
      border: var(--ink-thin);
      box-shadow: var(--ink-stamp-sm);
      background: var(--bg-card);
    }

    /* === Generic card-like elements get the stamped paper treatment === */
    .mode,
    .voice-feat,
    .usecase,
    .price-card,
    .aw-card,
    .tunnel-flow,
    .transcript-mock,
    .flow-card,
    .ft-row,
    .tts-stat,
    .platform-col,
    .faq-item {
      border: var(--ink-line);
      box-shadow: var(--ink-stamp);
    }

    /* Hover lift unified */
    .mode:hover, .usecase:hover {
      transform: translate(-3px, -3px);
      box-shadow: var(--ink-stamp-lg);
      border-color: var(--ink);
    }
    .flow-card:hover {
      transform: translate(-3px, -3px);
      box-shadow: var(--ink-stamp-lg);
    }

    /* Slight sketchbook-rotation variation between sibling cards */
    .mode:nth-child(1) { transform: rotate(-0.4deg); }
    .mode:nth-child(2) { transform: rotate(0.3deg); }
    .mode:nth-child(3) { transform: rotate(-0.2deg); }
    .mode:nth-child(1):hover { transform: rotate(-0.4deg) translate(-3px, -3px); }
    .mode:nth-child(2):hover { transform: rotate(0.3deg) translate(-3px, -3px); }
    .mode:nth-child(3):hover { transform: rotate(-0.2deg) translate(-3px, -3px); }

    .usecase:nth-child(odd) { transform: rotate(-0.3deg); }
    .usecase:nth-child(even) { transform: rotate(0.35deg); }
    .usecase:nth-child(odd):hover { transform: rotate(-0.3deg) translate(-3px, -3px); }
    .usecase:nth-child(even):hover { transform: rotate(0.35deg) translate(-3px, -3px); }

    /* The connected step grid stays straight (visual rhythm) */
    .flow-card { transform: none; }

    /* === Tts stat grid: simplify to flat ink === */
    .tts-stats {
      border: var(--ink-line);
      box-shadow: var(--ink-stamp);
      background: var(--bg-card);
    }
    .tts-stat {
      border: none;
      box-shadow: none;
      border-right: var(--ink-thin);
      border-bottom: var(--ink-thin);
    }
    .tts-stat:last-child { border-right: none; }
    .tts-stat:nth-last-child(-n+2) { border-bottom: none; }
    @media (max-width: 800px) {
      .tts-stat:nth-child(odd) { border-right: var(--ink-thin); }
      .tts-stat:nth-child(even) { border-right: none; }
      .tts-stat:nth-last-child(-n+2) { border-bottom: var(--ink-thin); }
      .tts-stat:nth-last-child(-n+1) { border-bottom: none; }
    }

    /* === Language pills: stamped chips === */
    .lang-tag {
      border: var(--ink-thin);
      box-shadow: var(--ink-stamp-sm);
      background: var(--bg-card);
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }
    .lang-tag:hover {
      background: var(--lime);
      color: var(--ink);
      border-color: var(--ink);
      transform: translate(-2px, -2px);
      box-shadow: var(--ink-stamp);
    }

    /* === Code blocks: terminal pages clipped to the journal === */
    .code-block {
      border: var(--ink-line);
      box-shadow: var(--ink-stamp);
    }

    /* === Safety table: drawn matrix === */
    .safety-table {
      border: var(--ink-line);
      box-shadow: var(--ink-stamp);
      border-collapse: separate;
      border-spacing: 0;
    }
    .safety-table th { border-bottom: var(--ink-line); background: var(--bg-2); }
    .safety-table tr td { border-bottom: 1px dashed var(--ink); }
    .safety-table tr:last-child td { border-bottom: none; }

    /* === FAQ: stamped items, ink toggle === */
    .faq-item {
      background: var(--bg-card);
    }
    .faq-q .sign {
      border: var(--ink-thin);
      background: var(--bg-card);
      box-shadow: 2px 2px 0 var(--ink);
    }
    .faq-item.open .faq-q .sign {
      background: var(--ink);
      color: var(--bg);
      box-shadow: 2px 2px 0 var(--lime);
    }

    /* === Status check & price check pips: ink stamps === */
    .ft-check, .ck {
      border: 1.5px solid var(--ink);
      background: var(--lime);
      box-shadow: 1.5px 1.5px 0 var(--ink);
    }
    .ck { box-shadow: 1.5px 1.5px 0 var(--ink); }

    /* === Hero headline accent: hand-drawn lime underline === */
    .hero-headline .accent::after {
      left: -3%; right: -3%;
      bottom: -2%;
      height: 22%;
      background: var(--lime);
      border-radius: 8px 14px 10px 16px / 12px 8px 14px 10px;
      transform: skewY(-1.4deg) rotate(-0.5deg);
      z-index: -1;
    }

    /* === Marquee: ticket-tape feel === */
    .marquee-wrap {
      border-top: var(--ink-line);
      border-bottom: var(--ink-line);
      background: var(--lime);
    }
    .marquee-item .star { color: var(--ink); }
    .marquee-item { color: var(--ink); font-weight: 600; }
    .marquee-wrap::before { background: linear-gradient(to right, var(--lime), transparent); }
    .marquee-wrap::after { background: linear-gradient(to left, var(--lime), transparent); }

    /* === Platforms (dark) section: blackboard with offset stamp === */
    .platforms-section {
      border: var(--ink-line);
      box-shadow: var(--ink-stamp-lg);
    }
    .platforms-grid { background: rgba(255,255,255,0.12); }
    .platform-col {
      border: none;
      box-shadow: none;
    }

    /* === Tunnel flow steps: drawn boxes === */
    .tunnel-step {
      border: var(--ink-thin);
      box-shadow: 2px 2px 0 var(--ink);
    }

    /* === Awareness cards inner items get drawn underlines === */
    .aw-item { border-bottom: 1px dashed var(--ink); }
    .aw-item:last-child { border-bottom: none; }

    /* === Tunnel features and transcript feature rows === */
    .ft-row {
      box-shadow: var(--ink-stamp-sm);
    }

    /* === CTA banner card: keep dark but stamp the edge === */
    .cta-card {
      border: var(--ink-line);
      box-shadow: var(--ink-stamp-lg);
    }

    /* === Hero CTAs: align with stamped buttons === */
    .hero-art img {
      border: none;
      box-shadow: none;
    }
    .hero-art-cap { display: none; }

    /* === Live caption + meeting card bits from hero (legacy) — removed === */

    /* === Section dividers: hand-drawn dashed rules between major sections === */
    .section + .section:not(.section-how)::before {
      content: '';
      display: block;
      position: relative;
      width: 80px;
      height: 12px;
      margin: -40px auto 30px;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 12'><path d='M2 6 C 12 2, 18 10, 28 6 C 38 2, 44 10, 54 6 C 64 2, 70 10, 78 6' fill='none' stroke='%230a0a0a' stroke-width='2' stroke-linecap='round'/></svg>");
      background-repeat: no-repeat;
      background-position: center;
    }

    /* === Footer: dashed top border, ink-stamped links list === */
    footer {
      border-top: var(--ink-line);
      background: var(--bg-card);
    }
    .footer-bottom { border-top: 1px dashed var(--ink); }

    /* === Pricing card "featured" stamp === */
    .price-card.feat::after { border: var(--ink-line); }
    .price-card .tag {
      border: var(--ink-thin);
      box-shadow: 2px 2px 0 var(--ink);
    }

    /* === Mode icon container: outlined ink box === */
    .mode-icon-wrap {
      border: var(--ink-thin);
      box-shadow: 2.5px 2.5px 0 var(--ink);
    }
    .flow-ico {
      border: var(--ink-thin);
      box-shadow: 2px 2px 0 var(--ink);
    }
    .voice-feat-icon {
      border: var(--ink-thin);
      background: var(--bg-card);
    }

    /* === Inject cards: outlined === */
    .inject {
      border: var(--ink-line);
      box-shadow: var(--ink-stamp);
    }
    .inject:nth-child(1) { border-color: var(--ink); }

    /* === Quickstart steps: dashed dividers === */
    .qs-step { border-bottom: 1px dashed var(--ink); }
    .qs-num {
      border: var(--ink-thin);
      box-shadow: 2px 2px 0 var(--lime);
    }

    /* === Flow callout: ink-stamped === */
    .flow-callout {
      border: var(--ink-line);
      box-shadow: var(--ink-stamp-lg);
    }

    /* === How-tagline already has the look — boost contrast === */
    .how-tagline {
      box-shadow: 4px 4px 0 var(--ink);
    }

    /* === Tighten mobile === */
    @media (max-width: 800px) {
      .mode, .mode:nth-child(n) { transform: rotate(0); }
      .mode:hover, .mode:nth-child(n):hover { transform: translate(-2px, -2px); }
      .usecase, .usecase:nth-child(n) { transform: rotate(0); }
      .usecase:nth-child(n):hover { transform: translate(-2px, -2px); }
      .section-label { transform: rotate(-0.6deg); }
      :root {
        --ink-stamp: 4px 4px 0 var(--ink);
        --ink-stamp-lg: 6px 6px 0 var(--ink);
      }
    }


    .btn-ph {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 16px 8px 12px;
      background: #ffffff;
      color: var(--ink);
      border: var(--ink-line);
      border-radius: 999px;
      box-shadow: var(--ink-stamp-sm);
      font-family: var(--sans);
      transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.18s ease;
      text-decoration: none;
    }
    .btn-ph:hover {
      transform: translate(-2px, -2px);
      box-shadow: var(--ink-stamp);
      background: #fffbe6;
    }
    .btn-ph .ph-cat {
      font-size: 22px;
      line-height: 1;
    }
    .btn-ph .ph-stack {
      display: flex;
      flex-direction: column;
      text-align: left;
      line-height: 1.05;
    }
    .btn-ph .ph-pre {
      font-size: 10px;
      font-family: var(--mono);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #da552f;
    }
    .btn-ph .ph-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--ink);
    }


    /* ============================================================
       Legal pages (Terms + Privacy Policy) — :target overlay
       ============================================================ */
    .legal-page {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 100;
      overflow-y: auto;
      background: var(--bg);
      padding: 60px 24px 100px;
      font-family: var(--sans);
      color: var(--ink);
      -webkit-font-smoothing: antialiased;
    }
    .legal-page:target { display: block; }
    .legal-page .legal-container { max-width: 760px; margin: 0 auto; }
    .legal-back {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 36px;
      padding: 8px 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: var(--bg-card);
      font-size: 14px;
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s ease, border-color 0.2s ease;
    }
    .legal-back:hover { color: var(--ink); border-color: var(--ink); }
    .legal-page .legal-updated {
      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted);
      margin: 0 0 32px;
    }
    .legal-title {
      font-family: var(--serif);
      font-size: clamp(36px, 5vw, 56px);
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--ink);
      margin: 0 0 8px;
      font-weight: 400;
    }
    .legal-page h3 {
      font-family: var(--sans);
      font-size: 20px;
      font-weight: 700;
      color: var(--ink);
      margin: 36px 0 12px;
      letter-spacing: -0.01em;
    }
    .legal-page p,
    .legal-page ul {
      font-size: 16px;
      line-height: 1.65;
      color: var(--ink-2);
      margin: 0 0 16px;
    }
    .legal-page ul { padding-left: 22px; }
    .legal-page li { margin-bottom: 8px; }
    .legal-page a {
      color: var(--ink);
      text-decoration: underline;
      text-decoration-color: var(--line-2);
      text-underline-offset: 3px;
      transition: background 0.15s ease, text-decoration-color 0.15s ease;
    }
    .legal-page a:hover {
      text-decoration-color: var(--ink);
      background: var(--lime-soft);
    }
    .legal-page strong { color: var(--ink); font-weight: 600; }

    /* ============================================================
       Skip link (accessibility — first focusable element)
       ============================================================ */
    .skip-link {
      position: absolute;
      top: 8px;
      left: 8px;
      background: var(--ink);
      color: var(--bg);
      padding: 10px 16px;
      border-radius: var(--radius-sm);
      font-family: var(--sans);
      font-weight: 600;
      text-decoration: none;
      z-index: 200;
      transform: translateY(-200%);
      transition: transform 0.15s ease;
    }
    .skip-link:focus { transform: translateY(0); outline: 2px solid var(--lime); outline-offset: 2px; }

    /* ============================================================
       Reduced motion — disable infinite animations / parallax / reveals
       ============================================================ */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
      }
      html { scroll-behavior: auto !important; }
      .reveal, .reveal-d1, .reveal-d2, .reveal-d3, .reveal-d4 {
        opacity: 1 !important;
        transform: none !important;
      }
    }

/* ---- component/animation block 2 ---- */
  .section-how {
    position: relative;
    overflow: hidden;
    padding: 140px 0 110px;
  }
  .section-how::before {
    content: '';
    position: absolute;
    inset: 60px 0;
    background:
      radial-gradient(circle at 12% 22%, rgba(200,255,58,0.22), transparent 32%),
      radial-gradient(circle at 88% 78%, rgba(255,91,37,0.10), transparent 38%),
      radial-gradient(circle at 50% 100%, rgba(77,43,255,0.06), transparent 45%);
    pointer-events: none;
    z-index: 0;
  }
  .section-how::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle, rgba(15,17,12,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    background-position: 12px 12px;
    opacity: 0.4;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    pointer-events: none;
    z-index: 0;
  }
  .section-how .container { position: relative; z-index: 1; }

  .how-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink);
    background: var(--lime);
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border: 1px solid var(--ink);
    box-shadow: 3px 3px 0 var(--ink);
    margin-top: 12px;
  }

  .flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
    margin-top: 64px;
  }
  @media (min-width: 1024px) {
    .flow {
      grid-template-columns: 1fr 56px 1fr 56px 1fr;
      gap: 0;
    }
  }

  .flow-card {
    /* Card is now structural only — the illustration zone is transparent and
       blends with the section background; the body below is the white box. */
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 40px -28px rgba(15,17,12,0.22);
    transition: transform .35s cubic-bezier(0.16,1,0.3,1), box-shadow .35s ease, border-color .35s ease;
    display: flex;
    flex-direction: column;
  }
  .flow-card::before { display: none; }   /* removed 3px ink top accent */
  .flow-card:hover {
    transform: translateY(-8px);
    border-color: var(--ink);
    box-shadow: 0 36px 70px -24px rgba(15,17,12,0.26);
  }

  /* Illustration zone — transparent, blends with the section background
     (gradient + dot grid from .section-how::before / ::after show through). */
  .flow-art {
    position: relative;
    padding: 28px 24px 12px;
    aspect-ratio: 1 / 1;
    max-height: 320px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .flow-art > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .flow-card:hover .flow-art > img { transform: scale(1.04); }
  .flow-art .live-badge {
    z-index: 4;
  }

  /* Body (01/02/03 + label + heading + body text) stays a clean white box. */
  .flow-body {
    background: var(--bg-card);
    border-radius: 0 0 24px 24px;
    position: relative;
    z-index: 1;
  }

  /* Step 1: API card */
  .api-card {
    position: relative;
    z-index: 1;
    background: #0e0f0d;
    border-radius: 14px;
    padding: 16px 18px;
    color: #d4d2c8;
    font-family: var(--mono);
    font-size: 12px;
    box-shadow: 0 14px 36px -18px rgba(15,17,12,0.5);
  }
  .api-pill {
    display: inline-block;
    background: rgba(200,255,58,0.16);
    color: var(--lime);
    padding: 3px 9px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
  }
  .api-line { line-height: 1.8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .api-key { color: #8cabff; }
  .api-str { color: #f4d27c; }
  .api-status {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid #22241d;
    font-size: 10.5px;
    color: var(--lime);
    display: flex; align-items: center; gap: 8px;
  }
  .ok-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 4px rgba(200,255,58,0.18);
    animation: pulse 2.2s ease-in-out infinite;
  }
  .platform-chips {
    display: flex; gap: 6px;
    margin-top: 14px;
    justify-content: center;
    position: relative; z-index: 1;
  }
  .plat-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--ink);
  }
  .plat-chip::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--cdot, var(--lime));
    margin-right: 6px;
  }

  /* Step 2: live transcript */
  .live-badge {
    position: absolute;
    top: 16px; right: 16px;
    display: flex; align-items: center; gap: 6px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: var(--ink);
    background: rgba(255,255,255,0.78);
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    backdrop-filter: blur(6px);
    z-index: 3;
  }
  .live-badge .live-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--orange);
    animation: live-pulse 1.4s ease-in-out infinite;
  }
  @keyframes live-pulse {
    0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,91,37,0.55); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(255,91,37,0); }
  }

  .transcript-strip {
    position: relative; z-index: 1;
    display: grid; gap: 8px;
    margin-top: 8px;
  }
  .ts-row {
    display: flex; gap: 10px; align-items: center;
    padding: 10px 12px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 12px;
    font-size: 12.5px;
    box-shadow: 0 4px 10px -6px rgba(15,17,12,0.1);
    animation: ts-in 0.7s both;
  }
  .ts-row:nth-child(1) { animation-delay: 0.15s; }
  .ts-row:nth-child(2) { animation-delay: 0.55s; }
  .ts-row:nth-child(3) { animation-delay: 0.95s; }
  .ts-row.is-bot {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
  }
  .ts-row.is-bot .ts-row-text { color: var(--lime); font-style: italic; }
  .ts-pip { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
  .ts-row-name {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-2);
    flex-shrink: 0;
  }
  .ts-row.is-bot .ts-row-name { color: rgba(200,255,58,0.85); }
  .ts-row-text { color: var(--ink-2); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  @keyframes ts-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

  .wave {
    width: 100%; height: 22px;
    margin-top: 12px;
    color: var(--orange);
    opacity: 0.55;
    position: relative; z-index: 1;
  }
  .wave path {
    stroke-dasharray: 200;
    animation: wave-flow 4s linear infinite;
  }
  @keyframes wave-flow { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -200; } }

  /* Step 3: speech card */
  .speech-card {
    position: relative; z-index: 1;
    background: var(--bg-dark);
    border-radius: 16px;
    padding: 18px 20px;
    color: var(--bg);
    box-shadow: 0 16px 34px -18px rgba(15,17,12,0.45);
  }
  .speech-meta {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.12em;
    color: var(--lime);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .bot-chip {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink-on-lime);
    font-weight: 800;
    font-size: 11px;
    display: flex; align-items: center; justify-content: center;
  }
  .speech-text {
    font-family: var(--serif);
    font-size: 17px;
    font-style: italic;
    line-height: 1.4;
    color: #f3f0e8;
  }
  .speech-text em { color: var(--lime); font-style: italic; font-weight: 400; }
  .speech-bars {
    display: flex; gap: 3px;
    align-items: flex-end;
    height: 32px;
    margin-top: 14px;
  }
  .speech-bars span {
    flex: 1;
    background: var(--lime);
    border-radius: 2px;
    transform-origin: bottom;
    animation: bar 1.2s ease-in-out infinite;
  }
  .speech-bars span:nth-child(1)  { animation-delay: .00s; height: 30%; }
  .speech-bars span:nth-child(2)  { animation-delay: .08s; height: 70%; }
  .speech-bars span:nth-child(3)  { animation-delay: .16s; height: 50%; }
  .speech-bars span:nth-child(4)  { animation-delay: .24s; height: 90%; }
  .speech-bars span:nth-child(5)  { animation-delay: .32s; height: 40%; }
  .speech-bars span:nth-child(6)  { animation-delay: .40s; height: 80%; }
  .speech-bars span:nth-child(7)  { animation-delay: .48s; height: 60%; }
  .speech-bars span:nth-child(8)  { animation-delay: .56s; height: 95%; }
  .speech-bars span:nth-child(9)  { animation-delay: .64s; height: 35%; }
  .speech-bars span:nth-child(10) { animation-delay: .72s; height: 75%; }
  .speech-bars span:nth-child(11) { animation-delay: .80s; height: 50%; }
  .speech-bars span:nth-child(12) { animation-delay: .88s; height: 65%; }
  @keyframes bar { 0%,100% { transform: scaleY(0.35); } 50% { transform: scaleY(1); } }

  /* Card body */
  .flow-body {
    padding: 28px 28px 30px;
    flex: 1;
    display: flex; flex-direction: column;
  }
  .flow-row {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }
  .flow-num {
    font-family: var(--mono);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--ink);
    line-height: 1;
  }
  .flow-ico {
    display: inline-flex;
    width: 32px; height: 32px;
    align-items: center; justify-content: center;
    border-radius: 9px;
    background: var(--lime);
    color: var(--ink-on-lime);
  }
  .flow-card:nth-child(3) .flow-ico { background: #8cabff; color: var(--ink-on-lime); }
  .flow-card:nth-child(5) .flow-ico { background: var(--orange); color: #fff; }
  .flow-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--muted);
    text-transform: uppercase;
  }
  .flow-body h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin: 0 0 12px 0;
  }
  .flow-body p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
  }

  /* Install snippet — code block with copy-to-clipboard inside Card 1 */
  .flow-snippet {
    margin-top: 14px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    background: var(--bg-2, #eeeae0);
    border: 1px dashed var(--ink);
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--mono);
    font-size: 12.5px;
    color: var(--ink);
    text-align: left;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .flow-snippet:hover { background: rgba(15,17,12,0.06); transform: translateY(-1px); }
  .flow-snippet:active { transform: translateY(0); }
  .flow-snippet code {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: inherit;
    color: var(--ink);
  }
  .flow-snippet .fs-host { color: var(--muted); }
  .flow-snippet svg { flex-shrink: 0; color: var(--muted); }
  .flow-snippet.copied { background: rgba(200,255,58,0.18); border-color: var(--ink); }
  .flow-snippet.copied svg.fs-check { color: var(--ink); }

  /* "View on GitHub" link below the snippet */
  .flow-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px dashed var(--ink);
    padding-bottom: 2px;
    width: fit-content;
    transition: gap 0.25s ease, color 0.2s ease;
  }
  .flow-link:hover { gap: 12px; color: var(--ink); }
  .flow-link svg { transition: transform 0.25s ease; }
  .flow-link:hover svg { transform: translateX(2px); }

  /* Inline link in body text (Card 2: Dashboard → API Keys) */
  .flow-inline {
    color: var(--ink);
    font-weight: 600;
    text-decoration: none;
    background-image: linear-gradient(var(--lime), var(--lime));
    background-repeat: no-repeat;
    background-size: 100% 30%;
    background-position: 0 90%;
    padding: 0 2px;
    transition: background-size 0.2s ease;
  }
  .flow-inline:hover { background-size: 100% 60%; }

  /* Pull-quote in Card 3 body */
  .flow-quote {
    display: block;
    margin-bottom: 10px;
    padding: 8px 12px;
    background: var(--bg-2, #eeeae0);
    border-left: 3px solid var(--ink);
    border-radius: 6px;
    font-family: var(--mono);
    font-size: 12.5px;
    color: var(--ink);
    line-height: 1.45;
    font-style: normal;
  }

  /* Connector arrows */
  .flow-arrow {
    display: none;
    align-self: center;
    color: var(--ink);
    opacity: 0.4;
    width: 100%;
    height: 28px;
  }
  @media (min-width: 1024px) { .flow-arrow { display: block; } }
  .flow-arrow path { stroke-dasharray: 6 5; animation: arrow-flow 2.6s linear infinite; }
  @keyframes arrow-flow { to { stroke-dashoffset: -22; } }

  /* Bottom callout */
  .flow-callout {
    margin-top: 56px;
    background: var(--ink);
    color: var(--bg);
    border-radius: 24px;
    padding: 28px 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px 36px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--ink);
  }
  .flow-callout::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 6% 80%, rgba(200,255,58,0.22), transparent 40%),
      radial-gradient(circle at 95% 20%, rgba(255,91,37,0.14), transparent 40%);
    pointer-events: none;
  }
  .callout-stats {
    display: flex; gap: 36px; flex-wrap: wrap;
    position: relative;
  }
  .callout-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: rgba(243,240,232,0.55);
    text-transform: uppercase;
  }
  .callout-stat b {
    font-family: var(--sans);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--bg);
    text-transform: none;
    line-height: 1;
  }
  .callout-stat b .lime-text { color: var(--lime); }
  .flow-callout .btn { position: relative; flex-shrink: 0; }

  /* Bold marketing claim inside the bottom callout (replaces .callout-stats) */
  .callout-claim {
    flex: 1 1 480px;
    font-family: var(--sans);
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.18;
    color: var(--bg);
    position: relative;
    z-index: 1;
    max-width: 760px;
  }
  .callout-claim .lime-text { color: var(--lime); }
  @media (max-width: 800px) {
    .callout-claim { font-size: 22px; }
  }

  @media (max-width: 800px) {
    .section-how { padding: 90px 0 70px; }
    .flow-callout { padding: 24px; }
    .callout-stat b { font-size: 22px; }
  }

/* ============================================================
   Rate table — pricing + comparison pages (shared component)
   ============================================================ */
.rate-table-wrap { overflow-x: auto; max-width: 880px; margin: 0 auto; }
.rate-table { width: 100%; border-collapse: collapse; background: var(--bg-card);
  border: var(--ink-line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--ink-stamp-sm); }
.rate-table thead th { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 12.5px;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); padding: 16px 18px;
  border-bottom: var(--ink-line); background: var(--bg-2); text-align: right; }
.rate-table thead th:first-child { text-align: left; }
.rate-table thead th.pro { background: var(--lime); color: var(--ink-on-lime); }
.rate-table td { padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: 15px;
  color: var(--ink-2); text-align: right; }
.rate-table td:first-child { text-align: left; color: var(--ink); font-weight: 500; }
.rate-table tr:last-child td { border-bottom: none; }
.rate-table td.rate { font-family: 'JetBrains Mono', monospace; font-weight: 600; white-space: nowrap; }
.rate-table td.pro { background: rgba(200,255,58,0.12); font-weight: 700; color: var(--ink); }
.rate-table td.free { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--muted); }
@media (max-width: 560px) { .rate-table td, .rate-table thead th { padding: 11px 12px; font-size: 13px; } }

/* ============================================================
   Blog — post prose + index cards (shared)
   ============================================================ */
.post { max-width: 760px; margin: 0 auto; padding: 120px 24px 40px; }
.post-meta { font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: 0.02em;
  color: var(--muted-2); text-transform: uppercase; margin-bottom: 14px; }
.post h1 { font-size: clamp(32px, 5vw, 52px); line-height: 1.08; letter-spacing: -0.02em;
  color: var(--ink); margin: 0 0 22px; font-weight: 800; }
.post-lede { font-size: 20px; line-height: 1.55; color: var(--ink-2); margin: 0 0 8px; }
.post h2 { font-size: 26px; line-height: 1.2; letter-spacing: -0.01em; color: var(--ink);
  margin: 44px 0 14px; font-weight: 800; }
.post h3 { font-size: 19px; color: var(--ink); margin: 28px 0 10px; font-weight: 700; }
.post p { font-size: 17px; line-height: 1.7; color: var(--ink-2); margin: 0 0 18px; }
.post ul, .post ol { margin: 0 0 20px; padding-left: 22px; }
.post li { font-size: 17px; line-height: 1.7; color: var(--ink-2); margin-bottom: 8px; }
.post a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.post a:hover { color: var(--muted); }
.post blockquote { margin: 0 0 24px; padding: 18px 22px; background: var(--bg-card); border: var(--ink-line);
  border-radius: var(--radius); box-shadow: var(--ink-stamp-sm); font-family: 'JetBrains Mono', monospace;
  font-size: 14.5px; line-height: 1.75; color: var(--ink-2); }
.post strong { color: var(--ink); font-weight: 700; }
.post-cta { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--line); }

.blog-list { max-width: 820px; margin: 0 auto; display: grid; gap: 18px; }
.blog-card { display: block; background: var(--bg-card); border: var(--ink-line); border-radius: var(--radius);
  box-shadow: var(--ink-stamp-sm); padding: 26px 28px; text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease; }
.blog-card:hover { transform: translate(-3px,-3px); box-shadow: var(--ink-stamp); }
.blog-card .card-label { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--muted-2); }
.blog-card h2 { font-size: 22px; line-height: 1.2; color: var(--ink); margin: 8px 0 8px; font-weight: 800; letter-spacing: -0.01em; }
.blog-card p { font-size: 15px; line-height: 1.55; color: var(--muted); margin: 0; }

/* Copy-paste prompt block (use-case blog posts) */
.prompt-label { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; text-transform: uppercase;
  letter-spacing: 0.04em; color: var(--muted-2); margin: 22px 0 8px; font-weight: 700; }
.prompt-box { background: var(--bg-dark); color: #e8e6dc; border: var(--ink-line); border-radius: var(--radius);
  box-shadow: var(--ink-stamp-sm); padding: 20px 22px; margin: 0 0 22px; font-family: 'JetBrains Mono', monospace;
  font-size: 13.5px; line-height: 1.7; white-space: pre-wrap; overflow-x: auto; }
