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

    :root {
      --font-body: 'Syne', sans-serif;
      --font-display: 'Syne', sans-serif;
      --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      --color-bg: #1a1a17;
      --color-card: #242420;
      --color-border: #4a4a44;
      --color-accent: #facc15;
      --color-text: #eaeae6;
      --color-text-muted: #8a9692;
      --border-width-card: 2px;
      --radius-card: 0.375rem;
      --bg: var(--color-bg);
      --surface: #1e1e1b;
      --border: #353532;
      --accent: var(--color-accent);
      --accent-dim: rgba(250, 204, 21, 0.12);
      --text: var(--color-text);
      --muted: #9a9a94;
      --muted-light: #b8b8b0;
      --danger: #ef4444;
      --warning: #f59e0b;
      --ok: #22c55e;
    }

    html { scroll-behavior: smooth; }

    body {
      background-color: var(--color-bg);
      background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.07'/%3E%3C/svg%3E"),
        radial-gradient(ellipse at 60% 20%, #9fcfca18 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, #7db8b308 0%, transparent 50%);
      background-repeat: repeat, no-repeat, no-repeat;
      background-size: 300px 300px, 100% 100%, 100% 100%;
      color: var(--color-text);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* NAV */
    nav {
      position: sticky;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 52px;
      border-bottom: 1px solid #27272a;
      background: rgba(8,8,8,0.92);
      backdrop-filter: blur(16px);
    }

    .logo {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -0.5px;
    }

    .logo-link {
      text-decoration: none;
    }

    nav .logo-an { color: #fafafa; }
    nav .logo-guardia { color: var(--accent); }
    footer .logo-an { color: var(--color-text); }
    footer .logo-guardia { color: #ca8a04; }

    .nav-brand {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 3px;
      min-width: 0;
    }

    .nav-tagline {
      font-family: var(--font-mono);
      font-size: 9px;
      font-weight: 500;
      color: var(--muted);
      letter-spacing: 1px;
      text-transform: uppercase;
      line-height: 1.2;
      white-space: nowrap;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
    }

    .nav-links a {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--muted-light);
      text-decoration: none;
      letter-spacing: 0.5px;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: #fafafa; }

    .nav-cta {
      background: var(--accent) !important;
      color: #000 !important;
      padding: 8px 22px !important;
      font-weight: 500 !important;
      transition: opacity 0.2s !important;
    }

    .nav-cta:hover { opacity: 0.85 !important; }

    /* MARQUEE */
    .marquee-wrap {
      width: 100%;
      overflow: hidden;
      background: var(--color-accent);
      color: #000;
      font-family: var(--font-mono);
      font-size: 0.8rem;
      padding: 0.4rem 0;
      white-space: nowrap;
      border-bottom: 2px solid var(--color-border);
    }

    .marquee-track {
      display: inline-flex;
      gap: 0;
      animation: marquee-scroll 75s linear infinite;
    }

    .marquee-track span {
      display: inline-block;
      /* One monospace space at the duplicate seam; avoids 2rem gap + flex whitespace bug */
      padding-right: 1ch;
    }

    @keyframes marquee-scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    @media (prefers-reduced-motion: reduce) {
      .marquee-track { animation-play-state: paused; }
    }

    @media (max-width: 900px) {
      .marquee-wrap {
        display: none;
      }
    }

    /* HERO */
    #hero {
      max-width: 1200px;
      margin: 5rem auto;
      padding: 0 52px;
      text-align: left;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      scroll-margin-top: 1rem;
    }

    #hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3.25rem);
      line-height: 1.1;
      margin-bottom: 0;
      font-weight: 800;
      letter-spacing: -1px;
      grid-column: 1;
    }

    #hero h1 em {
      font-style: normal;
      color: #ca8a04;
    }

    #hero .hero-right {
      grid-column: 2;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    #hero .hero-sub-cta {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: flex-start;
      max-width: 480px;
    }

    .hero-sub {
      font-size: clamp(0.95rem, 1.5vw, 1.1rem);
      color: var(--color-text);
      opacity: 0.75;
      margin-bottom: 0;
      max-width: 480px;
      line-height: 1.75;
    }

    .hero-sub strong { color: var(--color-text); font-weight: 600; opacity: 1; }

    .hero-ctas {
      display: flex;
      gap: 1rem;
      justify-content: flex-start;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--accent);
      color: #000;
      font-family: var(--font-mono);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.5px;
      padding: 14px 36px;
      min-height: 44px;
      box-sizing: border-box;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: opacity 0.2s, transform 0.2s;
    }

    .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

    .btn-ghost {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--muted-light);
      text-decoration: none;
      transition: color 0.2s;
      padding: 14px 20px;
      min-height: 44px;
      box-sizing: border-box;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .btn-ghost:hover { color: var(--color-text); }

    /* CARD GRID */
    .card-grid-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 1.5rem;
      scroll-margin-top: 1rem;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }

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

    @media (max-width: 600px) {
      .card-grid { grid-template-columns: 1fr; }
    }

    .card {
      background: var(--color-card);
      border: 2px solid var(--color-border);
      border-radius: var(--radius-card);
      padding: 1.25rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      box-shadow: 4px 4px 0 0 var(--color-border);
    }

    .card-title {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .card-count {
      font-family: var(--font-mono);
      font-size: 2rem;
      font-weight: 700;
      color: #ca8a04;
      line-height: 1;
    }

    .card-tagline {
      font-size: 0.85rem;
      opacity: 0.7;
      font-style: italic;
    }

    .card-list {
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 0.85rem;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .hero-sub,
    .card-tagline,
    .card-list {
      font-weight: 500;
    }

    .card-list li::before {
      content: "→ ";
      color: #ca8a04;
    }

    .card-list a {
      color: inherit;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .card-viewall {
      font-size: 0.8rem;
      font-family: var(--font-mono);
      color: #ca8a04;
      text-decoration: none;
      margin-top: auto;
      align-self: flex-start;
      padding: 0.65rem 0.5rem;
      min-height: 44px;
      box-sizing: border-box;
      display: inline-flex;
      align-items: center;
    }

    .card-viewall:hover { text-decoration: underline; }

    /* INTENT PILLS */
    .intent-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 1.5rem;
    }

    .intent-label {
      font-family: var(--font-mono);
      font-size: 0.8rem;
      opacity: 0.5;
      margin-bottom: 0.75rem;
    }

    .intent-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.65rem 1.25rem;
      min-height: 44px;
      box-sizing: border-box;
      border: 1px solid var(--border);
      border-radius: 999px;
      font-size: 0.85rem;
      font-family: var(--font-body);
      color: var(--color-text);
      text-decoration: none;
      transition: background 0.15s, color 0.15s;
    }

    .pill:hover {
      background: var(--color-accent);
      color: #000;
      border-color: var(--color-accent);
    }

    /* Pain cards section */
    .pain-section {
      padding-top: 0;
    }
    .pain-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-bottom: 40px;
    }
    @media (max-width: 768px) {
      .pain-grid { grid-template-columns: 1fr; }
    }
    .pain-card {
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 28px;
      background: rgba(255,255,255,0.02);
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .pain-card-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1rem;
      color: var(--color-text);
    }
    .pain-card-body {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.6;
      flex: 1;
    }
    .pain-card-link {
      font-size: 0.85rem;
      color: var(--color-accent);
      text-decoration: none;
      font-weight: 600;
    }
    .pain-card-link:hover { text-decoration: underline; }
    .pain-compare-line {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.4);
      text-align: center;
    }
    .pain-compare-line a {
      color: rgba(255,255,255,0.6);
      text-decoration: underline;
    }

    /* About section */
    .about-section {
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .about-inner {
      max-width: 600px;
    }
    .about-body {
      color: rgba(255,255,255,0.65);
      line-height: 1.75;
      margin-bottom: 16px;
      font-size: 1rem;
    }
    .about-sig {
      color: var(--color-accent);
      font-family: var(--font-display);
      font-weight: 600;
      margin-top: 24px;
    }
    .about-contact {
      margin-top: 20px;
      font-size: 0.9rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.7;
    }
    .about-contact a {
      color: var(--color-accent);
      text-decoration: none;
    }
    .about-contact a:hover {
      text-decoration: underline;
    }

    /* SECTIONS */
    .section {
      padding: 120px 52px;
      border-top: 1px solid var(--border);
      scroll-margin-top: 1rem;
    }

    #features, #product, #pricing, #grid, #intent, #pain, #about {
      scroll-margin-top: 1rem;
    }

    .section-label {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--accent);
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 56px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 24px; height: 1px;
      background: var(--accent);
    }

    .section-h2 {
      font-family: var(--font-display);
      font-size: clamp(36px, 4.5vw, 58px);
      font-weight: 800;
      letter-spacing: -2px;
      line-height: 1.05;
    }

    .section-h2 em {
      font-style: normal;
      color: var(--accent);
    }

    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: end;
      margin-bottom: 64px;
    }

    .two-col p {
      color: var(--muted-light);
      font-size: 15px;
      line-height: 1.8;
    }

    /* FEATURES GRID — three equal columns on wide viewports */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 2px;
      background: var(--border);
    }

    .feature-card {
      background: var(--surface);
      padding: 40px 36px;
      position: relative;
      transition: background 0.2s;
    }

    .feature-card:hover { background: #2e2e2a; }

    .feature-icon {
      font-size: 28px;
      margin-bottom: 16px;
      display: block;
    }

    .feature-card h3 {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.5px;
      margin-bottom: 12px;
      color: var(--color-text);
    }

    .feature-card p {
      font-size: 14px;
      color: var(--muted-light);
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .feature-items { display: flex; flex-direction: column; gap: 7px; }

    .feature-item {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .feature-item::before {
      content: '→';
      font-size: 11px;
    }

    .feature-card .feature-item::before { color: var(--accent); }

    /* MOCK */
    .mock {
      border: 1px solid #27272a;
      overflow: hidden;
      background: #0c0c0c;
    }

    .mock-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 13px 20px;
      background: #090909;
      border-bottom: 1px solid #27272a;
    }

    .mock-bar-left { display: flex; align-items: center; gap: 14px; }
    .mock-bar-right { display: flex; align-items: center; gap: 20px; }
    .mock-bar-meta {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--muted);
    }
    .mock-dots { display: flex; gap: 6px; }
    .mock-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }

    .mock-title {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--muted);
    }

    .mock-score {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--danger);
    }

    .mock-score-num {
      font-weight: 700;
      margin-left: 4px;
      color: var(--danger);
    }

    .mock-score-denom {
      color: var(--muted);
      font-weight: 400;
    }

    .mock-score-delta {
      color: var(--danger);
      font-size: 10px;
      margin-left: 6px;
    }

    .pulse-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--danger);
      animation: pulseAnim 1.8s infinite;
    }

    .mock-kpis {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      border-bottom: 1px solid #27272a;
    }

    .mock-kpi {
      padding: 18px 24px;
      border-right: 1px solid #27272a;
    }

    .mock-kpi:last-child { border-right: none; }

    .mock-kpi-label {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
    }

    .mock-kpi-val {
      font-family: var(--font-display);
      font-size: 34px;
      font-weight: 800;
      letter-spacing: -1px;
      line-height: 1;
    }

    .v-red { color: var(--danger); }
    .v-orange { color: var(--warning); }
    .v-accent { color: var(--accent); }
    .v-low { color: var(--muted-light); }
    .v-green { color: var(--ok); }

    .mock-list { padding: 16px; }

    .mock-list-header {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--muted);
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 0 8px 12px;
    }

    .mock-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 13px 16px;
      background: #080808;
      border: 1px solid #2a2a2a;
      margin-bottom: 6px;
      transition: border-color 0.15s;
    }

    .mock-item:hover { border-color: #2a2a2a; }

    .sev-bar { width: 3px; height: 34px; flex-shrink: 0; }
    .sev-bar.crit { background: var(--danger); }
    .sev-bar.high { background: var(--warning); }
    .sev-bar.med { background: var(--accent); }

    .mock-item-info { flex: 1; min-width: 0; }

    .mock-item-title {
      font-size: 13px;
      font-weight: 500;
      color: #f4f4f5;
      margin-bottom: 3px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .mock-item-meta {
      font-family: var(--font-mono);
      font-size: 10px;
      color: #a1a1aa;
    }

    .mock-badges { display: flex; gap: 6px; flex-shrink: 0; }

    .mbadge {
      font-family: var(--font-mono);
      font-size: 10px;
      padding: 3px 8px;
      border: 1px solid var(--border);
      color: var(--muted-light);
      white-space: nowrap;
    }

    .mbadge.e { border-color: rgba(245,166,35,0.3); color: var(--accent); }
    .mbadge.i { border-color: rgba(255,77,77,0.3); color: var(--danger); }

    /* STEPS */
    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      background: var(--border);
      margin-top: 64px;
    }

    .step {
      background: var(--bg);
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
    }

    .step::before {
      content: attr(data-n);
      font-family: var(--font-display);
      font-size: 130px;
      font-weight: 800;
      color: rgba(250, 204, 21, 0.12);
      position: absolute;
      bottom: -20px; right: 12px;
      line-height: 1;
      pointer-events: none;
    }

    .step-num {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--accent);
      letter-spacing: 2px;
      margin-bottom: 20px;
    }

    .step h3 {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.5px;
      margin-bottom: 12px;
    }

    .step p {
      font-size: 14px;
      color: var(--muted-light);
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    /* PRICING */
    /*
      .comp-table label column width
      ⚠️ Not yet smoke-tested on mobile/zoom. See checklist below.

      COMPARISON TABLE
      - Stable label column: each .comp-row is its own grid; without a fixed/finite
        first track, fr sizing shifts when label min-content differs row-to-row
        (header empty cell vs long feature labels), so vertical rules misalign.
      - --comp-label-col: 28% is empirical (balances label vs plan columns at
        ~desktop widths); not traced to a Figma token—if design hands a spec,
        replace the middle term or the whole clamp. min/max guard overflow and
        very wide tables.
      - repeat(4, …): must match the four plan columns in markup (see .comp-plan-col
        / data-plan cells). Adding a fifth tier → change 4 here and in HTML.
      - Before shipping layout changes, manually spot-check: narrow viewports
        (@media switches at 768px), long plan names in the header row, and
        browser zoom 110%+ for alignment and horizontal scroll.
    */
    .comp-table {
      margin-top: 48px;
      max-width: 1200px;
      border: 1px solid var(--border);
      background: var(--surface);
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      --comp-label-col: clamp(200px, 28%, 320px);
    }

    .comp-row {
      display: grid;
      grid-template-columns: var(--comp-label-col) repeat(4, minmax(0, 1fr));
      border-bottom: 1px solid #27272a;
      min-width: 600px;
    }

    .comp-row:last-of-type {
      border-bottom: none;
    }

    .comp-cell {
      padding: 14px 20px;
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--muted);
      text-align: center;
      border-right: 1px solid #27272a;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .comp-cell:last-child {
      border-right: none;
    }

    .comp-label-col {
      text-align: left;
      justify-content: flex-start;
      color: var(--text);
      font-size: 12px;
    }

    /* Header row */
    .comp-header {
      background: #090909;
      border-bottom: 2px solid var(--border);
      align-items: stretch;
    }

    .comp-header .comp-cell {
      padding: 28px 20px;
    }

    .comp-plan-col {
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 6px;
    }

    .comp-plan-name {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--muted);
    }

    .comp-plan-price {
      font-family: var(--font-display);
      font-size: 42px;
      font-weight: 800;
      letter-spacing: -2px;
      line-height: 1;
      color: var(--text);
    }

    .comp-plan-price sup {
      font-size: 18px;
      font-weight: 700;
      vertical-align: super;
      letter-spacing: 0;
    }

    .comp-plan-period {
      font-family: var(--font-mono);
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0;
      color: var(--muted);
      margin-left: 2px;
    }

    .comp-plan-accounts {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--muted);
      letter-spacing: 0.5px;
    }

    .comp-cta {
      margin-top: 8px;
      font-size: 11px;
      padding: 8px 14px;
      width: 100%;
      text-align: center;
      cursor: pointer;
    }

    /* Group label rows */
    .comp-group .comp-cell {
      padding: 12px 20px 6px;
      font-size: 10px;
      letter-spacing: 1.5px;
      color: var(--muted);
    }

    .comp-group .comp-label-col {
      color: var(--muted);
    }

    /* Cell value types */
    .comp-check {
      color: var(--ok);
      font-size: 14px;
      font-weight: 700;
    }

    .comp-soon {
      color: var(--accent);
      font-size: 10px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .comp-none {
      color: var(--muted-light);
      font-size: 13px;
    }

    .comp-footnote {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--muted);
      padding: 14px 20px;
      opacity: 0.5;
      border-top: 1px solid #27272a;
      margin: 0;
      min-width: 600px;
    }

    /* Plan tab switcher — hidden on desktop, shown on mobile */
    .comp-tabs {
      display: none;
      grid-template-columns: repeat(4, 1fr);
      border-bottom: 1px solid #27272a;
      background: #090909;
    }

    .comp-tab {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--muted);
      background: none;
      border: none;
      border-bottom: 2px solid transparent;
      padding: 12px 8px;
      cursor: pointer;
      transition: color 0.2s ease, border-color 0.2s ease;
      text-align: center;
    }

    .comp-tab.active {
      color: var(--text);
      border-bottom-color: var(--accent);
    }

    .comp-tab:hover:not(.active) {
      color: var(--muted-light);
    }

    .pricing-notice {
      font-family: var(--font-mono);
      font-size: 12px;
      color: var(--accent);
      letter-spacing: 1px;
      margin-top: 24px;
      margin-bottom: 0;
    }

    .pricing-shared {
      margin-top: 2px;
      max-width: 1200px;
      background: var(--surface);
      padding: 20px 36px;
      border: 1px solid var(--border);
    }

    .pricing-shared-label {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--muted);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    .pricing-shared .feature-item {
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--muted-light);
      line-height: 1.5;
    }

    .pricing-shared .feature-item::before {
      color: var(--accent);
    }

    /* BONUS — bridge between main feature cards and cost band */
    .cost-bonus-label {
      font-family: var(--font-mono);
      font-size: 10px;
      color: var(--muted);
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-top: 20px;
      margin-bottom: 20px;
    }

    /* COST LAYER — thin band, full width of feature row */
    .cost-layer {
      width: 100%;
      margin-top: 0;
      background: var(--surface);
      padding: 16px 28px;
      border: 1px solid var(--border);
      position: relative;
      transition: background 0.2s;
    }

    .cost-layer:hover {
      background: #2e2e2a;
    }

    .cost-layer-inner {
      display: grid;
      grid-template-columns: minmax(0, auto) minmax(0, 1.35fr) minmax(0, 1fr);
      gap: 20px 32px;
      align-items: center;
    }

    .cost-layer-head {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .cost-layer-emoji {
      font-size: 22px;
      line-height: 1;
    }

    .cost-layer h3 {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -0.5px;
      margin: 0;
      color: var(--text);
      white-space: nowrap;
    }

    .cost-layer-body {
      margin: 0;
      font-size: 14px;
      color: var(--muted-light);
      line-height: 1.5;
    }

    .cost-layer-items {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 4px 14px;
    }

    .cost-layer-item {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--muted);
      display: flex;
      align-items: flex-start;
      gap: 6px;
      line-height: 1.35;
    }

    .cost-layer-item::before {
      content: '→';
      font-size: 10px;
      color: var(--accent);
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* WAITLIST MODAL */
    .wl-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.7);
      z-index: 900;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
    }

    .wl-backdrop.open {
      opacity: 1;
      pointer-events: auto;
    }

    .wl-modal {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 901;
      background: var(--surface);
      border-top: 1px solid var(--border);
      padding: 40px 40px 48px;
      transform: translateY(100%);
      transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
      max-width: 560px;
      margin: 0 auto;
      border-radius: 0;
    }

    .wl-modal.open {
      transform: translateY(0);
    }

    .wl-close {
      position: absolute;
      top: 20px;
      right: 24px;
      background: none;
      border: none;
      color: var(--muted);
      font-size: 16px;
      cursor: pointer;
      font-family: var(--font-mono);
      padding: 4px 8px;
      transition: color 0.2s ease;
    }

    .wl-close:hover {
      color: var(--text);
    }

    .wl-eyebrow {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .wl-heading {
      font-family: var(--font-display);
      font-size: 36px;
      font-weight: 800;
      letter-spacing: -1.5px;
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .wl-heading em {
      color: var(--accent);
      font-style: normal;
    }

    .wl-desc {
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--muted-light);
      margin-bottom: 24px;
      line-height: 1.5;
    }

    .wl-form {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .wl-form input[type="email"] {
      flex: 1;
      min-width: 200px;
      background: var(--bg);
      border: 1px solid var(--border);
      color: var(--text);
      font-family: var(--font-mono);
      font-size: 13px;
      padding: 12px 16px;
      outline: none;
      transition: border-color 0.2s ease;
    }

    .wl-form input[type="email"]:focus {
      border-color: var(--accent);
    }

    .wl-form button {
      background: var(--accent);
      color: #000;
      border: none;
      font-family: var(--font-mono);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 12px 24px;
      cursor: pointer;
      transition: opacity 0.2s ease;
      white-space: nowrap;
    }

    .wl-form button:hover {
      opacity: 0.85;
    }

    .wl-form button:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .wl-success {
      display: none;
      font-family: var(--font-mono);
      font-size: 13px;
      color: var(--ok);
      margin-top: 16px;
    }

    @media (max-width: 600px) {
      .wl-modal {
        padding: 32px 24px 40px;
      }

      .wl-heading {
        font-size: 28px;
      }

      .wl-form {
        flex-direction: column;
      }

      .wl-form input[type="email"],
      .wl-form button {
        width: 100%;
      }
    }

    /* FOOTER */
    footer {
      border-top: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      align-items: stretch;
      background: var(--color-bg);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 36px 52px;
      gap: 24px;
      flex-wrap: wrap;
    }

    footer p {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--muted);
    }

    .footer-right {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .footer-link {
      font-family: var(--font-mono);
      font-size: 11px;
      color: var(--muted);
      text-decoration: underline;
      text-underline-offset: 3px;
      transition: color 0.2s;
      padding: 0.5rem 0.25rem;
      min-height: 44px;
      box-sizing: border-box;
      display: inline-flex;
      align-items: center;
    }

    .footer-link:hover {
      color: var(--color-text);
    }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes pulseAnim {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.3; transform: scale(0.75); }
    }

    /* RESPONSIVE */
    @media (max-width: 1100px) {
      .features-grid { grid-template-columns: 1fr; }
      .cost-layer-inner {
        grid-template-columns: 1fr;
        gap: 14px;
        align-items: start;
      }
      .cost-layer-head { flex-wrap: wrap; }
      .cost-layer h3 { white-space: normal; }
      .cost-layer-items { grid-template-columns: 1fr; }
      .comp-table { max-width: 720px; }
      .pricing-shared { max-width: 720px; }
    }

    @media (max-width: 900px) {
      nav { padding: 16px 24px; }
      .nav-tagline {
        font-size: 7.5px;
        letter-spacing: 0.6px;
      }
      .nav-links a:not(.nav-cta) { display: none; }
      #hero {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 24px;
        margin: 3rem auto;
        text-align: left;
      }

      #hero h1 {
        grid-column: 1;
      }

      #hero .hero-right {
        grid-column: 1;
      }
      .section { padding: 80px 24px; }
      .two-col { grid-template-columns: 1fr; gap: 32px; }
      .steps { grid-template-columns: 1fr; }
      /* Cost card matches feature-card layout on mobile */
      .cost-layer {
        padding: 40px 36px;
      }

      .cost-layer-inner {
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
      }

      .cost-layer-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 0;
      }

      .cost-layer-emoji {
        font-size: 28px;
        margin-bottom: 16px;
        display: block;
      }

      .cost-layer h3 {
        font-size: 22px;
        white-space: normal;
        margin-bottom: 12px;
      }

      .cost-layer-body {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 24px;
      }

      .cost-layer-items {
        display: flex;
        flex-direction: column;
        gap: 7px;
        grid-template-columns: unset;
      }

      .cost-layer-item {
        font-size: 12px;
      }
      .mock-title { display: none; }
      .mock-bar-meta { display: none; }
      .mock-score-delta { display: none; }
      .mock-kpis { grid-template-columns: repeat(5, minmax(0, 1fr)); }
      .mock-kpi { padding: 12px 10px; }
      .mock-kpi-val { font-size: clamp(20px, 4vw, 34px); }
      .mock-kpi-label { font-size: 8px; letter-spacing: 0.5px; }
      .footer-inner { flex-direction: column; gap: 12px; text-align: center; justify-content: center; }
      .footer-right { flex-direction: column; gap: 8px; }
    }

    @media (max-width: 768px) {
      .comp-tabs {
        display: grid;
      }

      .comp-cell[data-plan] {
        display: none;
      }

      .comp-cell[data-plan].comp-col-active {
        display: flex;
      }

      .comp-row {
        grid-template-columns: 2fr 1fr;
        min-width: 0;
      }

      .comp-header {
        grid-template-columns: 2fr 1fr;
        min-width: 0;
      }

      .comp-group .comp-cell:not(.comp-label-col) {
        display: none;
      }

      .comp-group .comp-label-col {
        grid-column: 1 / -1;
      }

      .comp-table {
        overflow-x: visible;
        max-width: 100%;
      }

      .comp-footnote {
        min-width: 0;
      }

      .comp-header .comp-cell {
        padding: 20px 12px;
      }

      .comp-plan-price {
        font-size: 30px;
      }

      .comp-cell {
        padding: 10px 12px;
        font-size: 10px;
      }

      .comp-label-col {
        font-size: 11px;
      }
    }

    @media (min-width: 769px) {
      .comp-cell[data-plan] {
        display: flex !important;
      }

      .comp-tabs {
        display: none !important;
      }
    }

    /* Compare pages */
    .compare-section {
      max-width: 860px;
    }
    .compare-eyebrow {
      font-family: var(--font-mono);
      font-size: 0.8rem;
      color: var(--color-accent);
      margin-bottom: 16px;
      letter-spacing: 0.05em;
    }
    .compare-h1 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 24px;
      color: var(--color-text);
    }
    .compare-intro {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
      margin-bottom: 48px;
      max-width: 680px;
    }
    .compare-table-wrap {
      overflow-x: auto;
      margin-bottom: 48px;
    }
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.9rem;
    }
    .compare-table th {
      font-family: var(--font-display);
      font-weight: 700;
      text-align: left;
      padding: 12px 16px;
      border-bottom: 1px solid rgba(255,255,255,0.12);
      color: var(--color-text);
    }
    .compare-table th:first-child { color: rgba(255,255,255,0.4); }
    .compare-table td {
      padding: 11px 16px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      color: rgba(255,255,255,0.7);
      vertical-align: top;
    }
    .compare-table td:first-child {
      color: rgba(255,255,255,0.45);
      white-space: nowrap;
    }
    .compare-table tr:last-child td { border-bottom: none; }
    .compare-body {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-bottom: 56px;
      max-width: 720px;
    }
    .compare-body p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.75;
    }
    .compare-body strong {
      color: var(--color-text);
      font-weight: 600;
    }
    .compare-cta {
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .compare-cta p {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--color-text);
    }

    /* Blog */
    .blog-section { max-width: 720px; }
    .blog-eyebrow {
      font-family: var(--font-mono);
      font-size: 0.8rem;
      color: var(--color-accent);
      margin-bottom: 12px;
      letter-spacing: 0.05em;
    }
    .blog-index-h1 {
      font-family: var(--font-display);
      font-size: clamp(1.75rem, 3.5vw, 2.4rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 12px;
      color: var(--color-text);
    }
    .blog-index-intro {
      color: var(--muted);
      font-size: 1.02rem;
      margin-bottom: 40px;
      max-width: 40rem;
    }
    .blog-list { list-style: none; }
    .blog-list-item { padding: 1.4rem 0; border-top: 1px solid rgba(255, 255, 255, 0.06); }
    .blog-list-item:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
    .blog-list-item:first-of-type { border-top: 1px solid rgba(255, 255, 255, 0.1); }
    .blog-list-link {
      display: block;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--color-text);
      text-decoration: none;
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .blog-list-link:hover { color: var(--accent); }
    .blog-list-date {
      display: block;
      font-family: var(--font-mono);
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
      margin-bottom: 10px;
    }
    .blog-list-desc {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.65;
    }

    .blog-article { max-width: 720px; }
    .blog-post-header { margin-bottom: 40px; padding-bottom: 28px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .blog-post-title {
      font-family: var(--font-display);
      font-size: clamp(1.75rem, 3.2vw, 2.3rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 16px;
      color: var(--color-text);
    }
    .blog-post-date {
      display: block;
      font-family: var(--font-mono);
      font-size: 0.75rem;
      color: var(--muted);
      letter-spacing: 0.08em;
    }

    .blog-prose { font-size: 1.02rem; line-height: 1.75; color: rgba(255, 255, 255, 0.72); }
    .blog-prose p { margin-bottom: 1.25em; }
    .blog-prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
    .blog-prose a:hover { color: #fde047; }
    .blog-prose h2 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--color-text);
      margin: 1.6em 0 0.7em;
    }
    .blog-prose h3 {
      font-family: var(--font-display);
      font-size: 1.12rem;
      font-weight: 600;
      color: var(--color-text);
      margin: 1.4em 0 0.55em;
    }
    .blog-prose code {
      font-family: var(--font-mono);
      font-size: 0.9em;
      background: rgba(0, 0, 0, 0.35);
      padding: 0.12em 0.35em;
      border-radius: 3px;
    }
    .blog-prose pre {
      background: #12120f;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 6px;
      padding: 1rem 1.1rem;
      overflow-x: auto;
      margin: 1.4em 0;
      font-size: 0.86rem;
    }
    .blog-prose pre code { background: none; padding: 0; }
    .blog-prose blockquote {
      border-left: 3px solid var(--accent);
      margin: 1.2em 0;
      padding-left: 1rem;
      color: rgba(255, 255, 255, 0.55);
    }
    .blog-prose strong { color: #f0f0ec; font-weight: 600; }
    .blog-prose ul, .blog-prose ol { margin: 1em 0 1.25em; padding-left: 1.35em; }
    .blog-prose li { margin-bottom: 0.4em; }

    .blog-cta {
      margin-top: 48px;
      padding-top: 36px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .blog-cta p {
      font-size: 0.98rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.65);
    }
    .blog-cta a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
    .blog-cta a:hover { color: #fde047; }
    .blog-bio {
      margin-top: 2rem;
      font-size: 0.9rem;
      line-height: 1.7;
      color: var(--muted);
      max-width: 40rem;
    }
    .blog-bio a { color: #c4a828; }
    .blog-bio a:hover { color: var(--accent); }
    .blog-back { margin-top: 2.5rem; padding-top: 1.5rem; }
    .blog-back-link {
      font-family: var(--font-mono);
      font-size: 0.8rem;
      color: var(--muted);
      text-decoration: none;
      letter-spacing: 0.04em;
    }
    .blog-back-link:hover { color: var(--accent); }

    @media (max-width: 640px) {
      .blog-list-item { padding: 1.1rem 0; }
    }
