/* vectoryze.ai shared styles — extracted from index.html (2026-09-15) so every page
   shares one nav, one grid, one type scale. Colors come from /tokens.css. */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    /* Colors come from /tokens.css (@vectoryze/design). */
    /* Local aliases so existing var(--border*) usages keep working. */
    --border: var(--edge);
    --border-bright: var(--edge-bright);
    --font-head: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
  }

  html { scroll-behavior: smooth; color-scheme: light; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
  }

  /* ── GRID TEXTURE ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(15,23,42,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(15,23,42,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: var(--font-head);
    font-size: var(--fs-xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    text-decoration: none;
  }

  .nav-logo span { color: var(--accent); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: var(--fs-base);
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    white-space: nowrap;
  }

  /* Eight items across: tighten the row on laptops/tablets so nothing
     wraps before the hamburger takes over at 768px. */
  @media (max-width: 1120px) {
    .nav-links { gap: 1.25rem; }
    .nav-links a { font-size: 0.9rem; }
  }

  .nav-links a:hover { color: var(--text); }

  .nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 0.45rem 1.1rem;
    border-radius: 6px;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    transition: opacity 0.2s !important;
  }

  .nav-cta:hover { opacity: 0.88; }

  /* Compact signup CTA that survives the mobile nav collapse. */
  .nav-cta-mobile {
    display: none;
    align-items: center;
    text-decoration: none;
  }

  .nav-phone {
    color: var(--accent) !important;
    font-weight: 600 !important;
    white-space: nowrap;
  }

  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
  }

  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--muted);
    border-radius: 2px;
    transition: 0.3s;
  }

  /* ── SECTIONS ── */
  section { position: relative; z-index: 1; }

  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  /* ── HERO ── */
  .hero {
    display: flex;
    align-items: center;
    padding: 140px 2rem 84px;
    position: relative;
    overflow: hidden;
  }

  .hero-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(10, 110, 100,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 110, 100,0.08);
    border: 1px solid rgba(10, 110, 100,0.2);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeUp 0.6s ease both;
  }

  .hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
  }

  .hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s ease 0.1s both;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--accent);
    position: relative;
  }

  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--muted);
    max-width: 600px;
    line-height: 1.65;
    margin: 0 auto 2.5rem;
    animation: fadeUp 0.6s ease 0.2s both;
    font-weight: 300;
  }

  .hero-actions .btn-primary { padding: 1.05rem 2rem; }
    .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.6s ease 0.3s both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: var(--fs-base);
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(10, 110, 100,0.25);
  }

  .demo-rotator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: transparent;
    padding: 0.6rem 1.6rem 0.55rem;
    border-radius: 8px;
    border: 1px solid var(--border-bright);
    text-decoration: none;
    min-width: 330px;
    transition: border-color 0.2s;
  }

  .demo-rotator:hover { border-color: var(--accent); }

  .rot-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    transition: opacity 0.25s ease;
  }

  .rot-desc {
    color: var(--muted);
    font-size: var(--fs-xs);
    white-space: nowrap;
  }

  .rot-num {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: var(--fs-base);
    color: var(--text);
  }

  .rot-dots { display: flex; gap: 5px; }

  .rot-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--border-bright);
    cursor: pointer;
    transition: background 0.2s;
  }

  .rot-dot.active { background: var(--accent); }

  @media (max-width: 640px) {
    .demo-rotator { min-width: 0; width: 100%; }
    .rot-desc { white-space: normal; text-align: center; }
  }

  @media (prefers-reduced-motion: reduce) {
    .rot-inner { transition: none; }
    /* !important so this beats the higher-specificity .js hide rule below. */
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    border: 1px solid var(--border-bright);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: var(--fs-base);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
  }

  .btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(10, 110, 100,0.04);
  }

  /* ── HERO STATS ── */
  .hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    animation: fadeUp 0.6s ease 0.4s both;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-item {}

  .stat-num {
    font-family: var(--font-head);
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .stat-num span { color: var(--accent); }

  .stat-label {
    font-size: var(--fs-sm);
    color: var(--muted);
    margin-top: 4px;
    font-weight: 400;
    letter-spacing: 0.01em;
  }

  .stat-source {
    font-size: 0.72rem;
    color: var(--muted2);
    margin-top: 2px;
  }

  /* ── LOGO BAR ── */
  .logo-bar {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
    overflow: hidden;
  }

  .logo-bar-label {
    text-align: center;
    font-size: var(--fs-xs);
    color: var(--muted2);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 2rem;
  }

  .tech-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.7rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .tech-pill {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: var(--fs-sm);
    color: var(--muted);
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  /* ── SECTION HEADINGS ── */
  .section-label {
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
  }

  .section-title {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .section-sub {
    color: var(--muted);
    font-size: var(--fs-lg);
    font-weight: 300;
    max-width: 600px;
    line-height: 1.65;
    margin: 0 auto;
  }

  /* Centered section header (label + title + sub), used by every section. */
  .section-header {
    text-align: center;
    margin: 0 auto 3.5rem;
  }

  /* Text wrapping — avoid orphans / awkward breaks. */
  .hero h1,
  .section-title,
  .step-title,
  .founder-name {
    text-wrap: balance;
  }
  .hero-sub,
  .section-sub,
  .service-desc,
  .diff-desc,
  .founder-bio,
  .step-desc {
    text-wrap: pretty;
  }

  /* ── SERVICES ── */
  .services {
    padding: 5rem 0;
  }

  .services-header {
    margin-bottom: 3.5rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
  }

  .service-card {
    background: var(--bg2);
    padding: 2.5rem;
    transition: background 0.25s;
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .service-card:hover { background: var(--bg3); }
  .service-card:hover::before { opacity: 1; }

  .service-icon {
    width: 44px;
    height: 44px;
    background: rgba(10, 110, 100,0.08);
    border: 1px solid rgba(10, 110, 100,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: var(--fs-lg);
  }

  .service-title {
    font-family: var(--font-head);
    font-size: var(--fs-lg);
    font-weight: 700;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
  }

  .service-desc {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 1.2rem;
  }

  .service-outcomes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .service-outcomes li {
    font-size: var(--fs-sm);
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .service-outcomes li::before {
    content: '→';
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* ── PROOF / SOCIAL ── */
  .proof {
    padding: 5rem 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .proof-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .proof-stat {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
  }

  .proof-stat-num {
    font-family: var(--font-head);
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .proof-stat-label {
    font-size: var(--fs-sm);
    color: var(--muted);
    margin-top: 6px;
    line-height: 1.4;
    font-weight: 300;
  }

  .proof-stat-src {
    font-size: 0.7rem;
    color: var(--muted2);
    margin-top: 4px;
  }

  .testimonials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .testimonial {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
  }

  .testimonial.featured {
    border-color: rgba(10, 110, 100,0.2);
  }

  .testimonial-badge {
    position: absolute;
    top: -10px;
    left: 1.5rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
  }

  .testimonial-text {
    font-size: var(--fs-base);
    color: var(--muted);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
    font-weight: 300;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .testimonial-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--accent);
    font-family: var(--font-head);
  }

  .testimonial-name {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text);
  }

  .testimonial-role {
    font-size: var(--fs-xs);
    color: var(--muted2);
  }

  /* ── HOW IT WORKS ── */
  .process {
    padding: 5rem 0;
  }

  /* CHANNELS — the breadth grid ("What it does") */
  .channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem;
  }

  .channel-card {
    background: var(--bg2);
    border: 1px solid var(--border-bright);
    border-radius: 14px;
    padding: 1.6rem 1.5rem;
    text-align: left;
  }

  .channel-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .channel-title {
    font-family: var(--font-head);
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
  }

  .channel-desc {
    font-size: var(--fs-sm);
    color: var(--muted);
    line-height: 1.6;
  }

  @media (max-width: 900px) {
    .channels-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .channels-grid { grid-template-columns: 1fr; gap: 0.9rem; }
    .channel-card { padding: 1.3rem 1.2rem; }
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3.5rem;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-bright) 20%, var(--border-bright) 80%, transparent);
  }

  .process-step {
    text-align: center;
    padding: 0 1rem;
    position: relative;
  }

  .step-num {
    width: 44px;
    height: 44px;
    background: var(--bg2);
    border: 1px solid var(--border-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--accent);
    margin: 0 auto 1.2rem;
    position: relative;
    z-index: 1;
  }

  .step-title {
    font-family: var(--font-head);
    font-size: var(--fs-base);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
  }

  .step-desc {
    font-size: var(--fs-sm);
    color: var(--muted);
    line-height: 1.55;
    font-weight: 300;
  }

  /* ── ABOUT/FOUNDER ── */
  .founder {
    padding: 5rem 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
  }

  .founder-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
  }

  .founder-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--surface), var(--bg3));
    border: 2px solid rgba(10, 110, 100,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .founder-name {
    font-family: var(--font-head);
    font-size: var(--fs-xl);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
  }

  .founder-title {
    font-size: var(--fs-sm);
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1rem;
  }

  .founder-bio {
    color: var(--muted);
    font-size: var(--fs-base);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.2rem;
  }

  .founder-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .tag {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: var(--fs-xs);
    color: var(--muted);
    font-weight: 500;
  }

  .differentiator-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    transition: border-color 0.2s;
  }

  .differentiator-card:hover { border-color: rgba(10, 110, 100,0.2); }

  .diff-icon {
    width: 36px;
    height: 36px;
    background: rgba(10, 110, 100,0.07);
    border: 1px solid rgba(10, 110, 100,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .diff-title {
    font-family: var(--font-head);
    font-size: var(--fs-base);
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
  }

  .diff-desc {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.55;
    font-weight: 300;
  }
  .cta-section {
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-glow {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(10, 110, 100,0.05) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-section .section-title {
    max-width: 600px;
    margin: 0 auto 1rem;
  }

  .cta-section .section-sub {
    margin: 0 auto 2.5rem;
    max-width: 480px;
    text-align: center;
  }

  .waitlist-form {
    display: flex;
    gap: 0.6rem;
    max-width: 440px;
    margin: 0 auto 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .waitlist-form input {
    flex: 1;
    min-width: 220px;
    background: var(--surface);
    border: 1px solid var(--border-bright);
    border-radius: 8px;
    padding: 0.8rem 1.1rem;
    color: var(--text);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    outline: none;
    transition: border-color 0.2s;
  }

  .waitlist-form input::placeholder { color: var(--muted2); }
  .waitlist-form input:focus { border-color: var(--accent); }

  .waitlist-form button {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.4rem;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: var(--fs-base);
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    white-space: nowrap;
  }

  .waitlist-form button:hover {
    opacity: 0.88;
    transform: translateY(-1px);
  }

  /* Final CTA: trial button + book-a-call side by side, stacked on phones. */
  .cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem 1.25rem;
  }

  /* Same height for both buttons so the microcopy under each sits on one line. */
  .cta-actions .btn-primary,
  .cta-actions .btn-secondary {
    min-height: 3.5rem;
    padding-top: 0;
    padding-bottom: 0;
    box-sizing: border-box;
  }

  .cta-note {
    font-size: var(--fs-sm);
    color: var(--muted2);
    margin: 0.75rem auto 0;
    max-width: 30rem;
    text-align: center;
    line-height: 1.65;
  }

  /* Trial-terms microcopy under signup CTAs. */
  .trial-microcopy {
    font-size: var(--fs-sm);
    color: var(--muted2);
    margin-top: 0.8rem;
    text-align: center;
  }

  /* ── FOOTER ── */
  footer {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    background: var(--bg2);
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-logo {
    font-family: var(--font-head);
    font-size: var(--fs-lg);
    font-weight: 800;
    color: var(--text); /* two-tone lockup law: Vector=ink, yze=accent */
    letter-spacing: -0.02em;
    text-decoration: none;
  }

  /* two-tone lockup: only the inline-styled 'yze' span is accent */

  .footer-legal {
    font-size: var(--fs-xs);
    color: var(--muted2);
    text-align: right;
    line-height: 1.6;
  }

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

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  /* ── PRICING ── */
  .pricing {
    padding: 5rem 0;
  }

  .pricing-grid {
    display: grid;
    /* 205px min so all five tiers (incl. Enterprise) sit on one row on
       desktop; wraps 2-3/row on tablets, 1/row on phones. */
    grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
  }

  .price-card {
    background: var(--bg2);
    padding: 2.2rem 1.9rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: background 0.25s;
  }

  .price-card:hover { background: var(--bg3); }

  /* Five narrow columns: equalize the header block heights so the
     check-lists start on one line across the row (founder alignment
     nit, 2026-08-31). Only where cards actually sit side by side. */
  @media (min-width: 901px) {
    .price-minutes { min-height: 2.7em; }
    .price-desc { min-height: 4.2em; }
  }

  .price-card.featured {
    /* Tint over an opaque base so the money card reads brand-teal, not
       muddy translucent-over-translucent gray. */
    background: linear-gradient(var(--accent-soft), var(--accent-soft)) var(--surface);
    box-shadow: inset 0 0 0 1px var(--accent-edge);
  }

  /* Identical-height strip on EVERY card; only the featured card's
     holds the badge — so the price rows align at any viewport width. */
  .price-topline { height: 1.45rem; margin-bottom: 0.4rem; }
  .price-badge {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--accent);
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
  }

  .price-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: var(--fs-lg);
    margin-bottom: 0.9rem;
  }

  .price-amount {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: var(--fs-3xl);
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .price-per {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--fs-base);
    color: var(--muted);
    margin-left: 0.15rem;
  }

  .price-minutes {
    color: var(--muted);
    font-size: var(--fs-base);
    margin: 0.6rem 0 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border);
  }

  .price-desc {
    font-size: var(--fs-base);
    font-weight: 500;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 1.1rem;
  }

  .price-feats {
    list-style: none;
    margin: 0 0 1.4rem;
    padding: 0;
    flex-grow: 1;
  }

  .price-feats li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.55rem;
    font-size: var(--fs-base);
    color: var(--muted);
    line-height: 1.5;
  }

  .price-feats li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
  }

  .price-btn {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    /* Never wrap the label into a fat two-line button (2026-09-02):
       trade side padding and a touch of font size for one clean line. */
    white-space: nowrap;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }
  @media (min-width: 901px) and (max-width: 1280px) {
    .price-btn { font-size: 0.88rem; padding-top: 0.75rem; padding-bottom: 0.75rem; }
  }

  .pricing-cta {
    text-align: center;
    margin: 3rem auto 0;
    max-width: 640px;
  }

  .pricing-cta-lead {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: var(--fs-xl);
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
  }

  .pricing-cta-sub {
    color: var(--muted);
    font-size: var(--fs-base);
    line-height: 1.6;
    margin-bottom: 1.3rem;
  }

  .pricing-fine {
    text-align: center;
    color: var(--muted2);
    font-size: var(--fs-sm);
    max-width: 640px;
    margin: 0.8rem auto 0;
    line-height: 1.6;
  }

  /* #233 — pricing FAQ (native <details>; tokens only) */
  .pricing-faq {
    max-width: 720px;
    margin: 2.6rem auto 0;
    border-top: 1px solid var(--edge);
    padding-top: 2rem;
  }
  .pricing-faq h3 {
    font-family: var(--font-head);
    font-size: var(--fs-xl);
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    color: var(--text);
  }
  .pricing-faq details {
    border: 1px solid var(--edge);
    border-radius: 14px;
    background: var(--surface);
    padding: 0.95rem 1.15rem;
    margin-bottom: 0.7rem;
  }
  .pricing-faq summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }
  .pricing-faq summary::-webkit-details-marker { display: none; }
  .pricing-faq summary::after {
    content: "+";
    color: var(--accent);
    font-weight: 700;
    flex: 0 0 auto;
  }
  .pricing-faq summary:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 6px; }
  .pricing-faq details[open] summary::after { content: "\2013"; }
  .pricing-faq p {
    margin: 0.7rem 0 0;
    color: var(--muted);
    line-height: 1.55;
    max-width: 62ch;
  }

  .founding-pill-row {
    text-align: center;
    margin: -1.75rem 0 2.25rem;
  }

  .founding-pill {
    display: inline-block;
    background: var(--accent-soft);
    border: 1px solid var(--accent-edge);
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: var(--fs-sm);
    color: var(--text);
    line-height: 1.5;
  }

  .reveal {
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  /* Hiding is JS-opt-in: no JS (or a capture/prerender) never blanks content. */
  .js .reveal:not(.visible) {
    opacity: 0;
    transform: translateY(24px);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── RESPONSIVE ── */
  /* Eight nav items need ~960px on one line; below that the hamburger
     takes over (was 768px, which wrapped "What it does" on tablets). */
  @media (max-width: 960px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    nav .nav-cta-mobile { display: inline-flex; padding: 0.45rem 0.9rem; margin-left: auto; margin-right: 1rem; }
  }

  @media (max-width: 768px) {
    .proof-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .process-steps::before { display: none; }
    .founder-inner { grid-template-columns: 1fr; }
    .founder-avatar { width: 70px; height: 70px; font-size: var(--fs-xl); }
    .hero-stats { gap: 1.5rem; }
    .proof-stats { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 480px) {
    .process-steps { grid-template-columns: 1fr; }
    .hero { padding: 100px 1rem 60px; }
    .hero h1 { font-size: clamp(1.5rem, 7.8vw, 2.6rem); letter-spacing: -0.05em; }
    .hero-stats { gap: 1.2rem; }
    .stat-num { font-size: var(--fs-2xl); }
    .stat-label { font-size: var(--fs-xs); }
    .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
    .container { padding: 0 1.5rem; }
  }
