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

    :root {
      --navy:    #0F2340;
      --cyan:    #00C9B8;
      --cyan-dk: #00A99B;
      --bg:      #F5F7FA;
      --white:   #FFFFFF;
      --text:    #1C2B3A;
      --muted:   #6B7A8D;
      --border:  #DDE3EC;
      --code-bg: #0D1B2A;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      font-size: 16px;
    }

    /* ── NAV ── */
    body > nav {
      position: sticky; top: 0; z-index: 100;
      background: var(--navy);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 2rem;
      height: 64px;
      box-shadow: 0 2px 12px rgba(0,0,0,.25);
    }

    .nav-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }

    /* SVG logo inline */
    .logo-mark { width: 36px; height: 36px; flex-shrink: 0; }

    .nav-brand {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--white);
      letter-spacing: -.01em;
    }
    .nav-brand span { color: var(--cyan); }

    .nav-links { display: flex; align-items: center; gap: 1.5rem; }
    .nav-links a {
      color: rgba(255,255,255,.75);
      text-decoration: none;
      font-size: .9rem;
      font-weight: 500;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--cyan); }

    .btn { display: inline-flex; align-items: center; gap: .4rem; border: none; cursor: pointer; font-family: 'Space Grotesk', sans-serif; font-weight: 600; border-radius: 8px; text-decoration: none; transition: all .2s; }

    .btn-primary { background: var(--cyan); color: var(--navy); padding: .65rem 1.4rem; font-size: .95rem; }
    .btn-primary:hover { background: var(--cyan-dk); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,201,184,.35); }

    .btn-outline { background: transparent; color: var(--cyan); border: 1.5px solid var(--cyan); padding: .6rem 1.3rem; font-size: .95rem; }
    .btn-outline:hover { background: rgba(0,201,184,.08); }

    .btn-lg { padding: .85rem 2rem; font-size: 1.05rem; border-radius: 10px; }

    .btn-google {
      background: var(--white); color: var(--text); border: 1.5px solid var(--border);
      padding: .7rem 1.4rem; font-size: .95rem; border-radius: 8px; font-family: 'Inter', sans-serif; font-weight: 500;
    }
    .btn-google:hover { background: #f0f2f5; }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(145deg, var(--navy) 0%, #173050 60%, #0d2840 100%);
      padding: 5rem 2rem 0;
      overflow: hidden;
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 60% at 70% 40%, rgba(0,201,184,.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
    }

    .hero-eyebrow {
      font-family: 'JetBrains Mono', monospace;
      font-size: .8rem; color: var(--cyan);
      letter-spacing: .1em; text-transform: uppercase;
      margin-bottom: 1rem;
      display: flex; align-items: center; gap: .5rem;
    }
    .hero-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--cyan); }

    .hero h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      letter-spacing: -.02em;
      margin-bottom: 1.25rem;
    }
    .hero h1 em { color: var(--cyan); font-style: normal; }

    .hero-sub {
      color: rgba(255,255,255,.7);
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 2rem;
      max-width: 480px;
    }

    .hero-cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

    .hero-note { color: rgba(255,255,255,.4); font-size: .82rem; margin-top: .75rem; }

    /* ── API DEMO TERMINAL ── */
    .terminal {
      background: var(--code-bg);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06);
      position: relative;
      transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    }

    .terminal-bar {
      background: #1a2d42;
      padding: .6rem 1rem;
      display: flex; align-items: center; gap: .5rem;
    }
    .dot { width: 11px; height: 11px; border-radius: 50%; }
    .dot-r { background: #ff5f56; }
    .dot-y { background: #ffbd2e; }
    .dot-g { background: #27c93f; }
    .terminal-title { color: rgba(255,255,255,.4); font-family: 'JetBrains Mono', monospace; font-size: .75rem; margin-left: auto; }

    .terminal-body { padding: 1.25rem 1.5rem; font-family: 'JetBrains Mono', monospace; font-size: .82rem; line-height: 1.9; color: rgba(255,255,255,.88); }

    .t-comment { color: #7a9bb8; }
    .t-method  { color: #82aaff; }
    .t-url     { color: #c3e88d; }
    .t-key     { color: #ffcb6b; }
    .t-val     { color: #f78c6c; }
    .t-str     { color: var(--cyan); }
    .t-obj     { color: rgba(255,255,255,.8); }
    .t-num     { color: #f78c6c; }
    .t-cursor  { display: inline-block; width: 8px; height: 14px; background: var(--cyan); vertical-align: middle; animation: blink 1.1s step-end infinite; margin-left: 2px; }

    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

    .typed { overflow: hidden; white-space: nowrap; border-right: none; }

    /* ── WAVE DIVIDER ── */
    .wave { display: block; width: 100%; margin-top: -1px; }

    /* ── SECTION COMMONS ── */
    .section { padding: 5rem 2rem; }
    .section-inner { max-width: 1100px; margin: 0 auto; }

    .section-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: .75rem; color: var(--cyan);
      letter-spacing: .12em; text-transform: uppercase;
      margin-bottom: .75rem;
    }

    .section-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700; line-height: 1.2;
      color: var(--navy); margin-bottom: 1rem;
    }

    .section-sub { color: var(--muted); font-size: 1rem; max-width: 560px; line-height: 1.7; }

    /* ── FEATURES ── */
    .features-bg { background: var(--white); }

    .features-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
      margin-top: 3rem;
    }

    .feat-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.75rem;
      transition: box-shadow .2s, transform .2s;
    }
    .feat-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-3px); }

    .feat-icon {
      width: 44px; height: 44px;
      background: rgba(0,201,184,.12);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1rem;
      font-size: 1.3rem;
    }

    .feat-card h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 600; font-size: 1rem;
      margin-bottom: .5rem; color: var(--navy);
    }

    .feat-card p { color: var(--muted); font-size: .9rem; line-height: 1.65; }

    /* ── HOW IT WORKS ── */
    .how-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
      margin-top: 3rem;
      position: relative;
    }
    .how-grid::before {
      content: '';
      position: absolute;
      top: 28px; left: calc(16.67% + 1rem); right: calc(16.67% + 1rem);
      height: 2px;
      background: linear-gradient(90deg, var(--cyan), transparent 40%, var(--cyan));
      opacity: .3;
    }

    .how-step { text-align: center; }

    .how-num {
      width: 56px; height: 56px;
      background: var(--navy);
      color: var(--cyan);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700; font-size: 1.2rem;
      margin: 0 auto 1.25rem;
      border: 3px solid var(--cyan);
      position: relative; z-index: 1;
    }

    .how-step h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 600; margin-bottom: .5rem; color: var(--navy);
    }
    .how-step p { color: var(--muted); font-size: .9rem; }

    /* ── CODE EXAMPLE ── */
    .code-example-bg { background: var(--navy); }

    .code-example-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
      margin-top: 2rem;
    }

    .code-example-grid .section-title { color: var(--white); }
    .code-example-grid .section-sub { color: rgba(255,255,255,.6); }

    .code-block {
      background: var(--code-bg);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.08);
    }

    .code-tabs {
      display: flex;
      background: #1a2d42;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .code-tab {
      padding: .6rem 1.1rem;
      font-family: 'JetBrains Mono', monospace;
      font-size: .78rem;
      color: rgba(255,255,255,.4);
      cursor: pointer;
      border-bottom: 2px solid transparent;
      transition: all .2s;
    }
    .code-tab.active { color: var(--cyan); border-bottom-color: var(--cyan); }

    .code-content { padding: 1.25rem 1.5rem; font-family: 'JetBrains Mono', monospace; font-size: .8rem; line-height: 1.85; overflow-x: auto; color: rgba(255,255,255,.88); }

    /* ── SIGNUP / CTA ── */
    #aanmelden { background: var(--bg); scroll-margin-top: 80px; }

    .signup-box {
      background: var(--white);
      border-radius: 16px;
      padding: 3rem;
      box-shadow: 0 4px 32px rgba(0,0,0,.07);
      max-width: 560px; margin: 3rem auto 0;
      border: 1px solid var(--border);
    }

    .signup-box h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.5rem; font-weight: 700;
      color: var(--navy); margin-bottom: .4rem;
    }
    .signup-box p { color: var(--muted); font-size: .9rem; margin-bottom: 1.75rem; }

    .input-group { margin-bottom: 1rem; }
    .input-group label { display: block; font-size: .85rem; font-weight: 500; color: var(--text); margin-bottom: .4rem; }
    .input-group input {
      width: 100%;
      padding: .75rem 1rem;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-size: .95rem;
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--bg);
      outline: none;
      transition: border-color .2s, box-shadow .2s;
    }
    .input-group input:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,201,184,.15); }

    .signup-box .input-group label { display: block; font-size: .85rem; font-weight: 500; color: var(--text); margin-bottom: .4rem; }
    .signup-box .input-group input,
    .signup-box .input-group textarea,
    .signup-box .input-group select {
      width: 100%;
      padding: .75rem 1rem;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-size: .95rem;
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--bg);
    }
    .signup-box .form-help { font-size: .8rem; color: var(--muted); margin-top: .35rem; }
    .signup-box ul.form-errors { color: #c0392b; font-size: .85rem; margin: .35rem 0 0; padding-left: 1rem; }

    /* Dashboard panels & formulieren */
    .dashboard-panel {
      max-width: 100%;
      margin: 0 0 2rem;
      text-align: left;
    }

    .signup-box form > div,
    .dashboard-panel form > div,
    .signup-box .input-group,
    .dashboard-panel .input-group {
      margin-bottom: 1.25rem;
    }

    .signup-box form label,
    .dashboard-panel form label,
    .signup-box .input-group label,
    .dashboard-panel .input-group label {
      display: block;
      font-size: .85rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: .5rem;
    }

    .signup-box form input[type="text"],
    .signup-box form input[type="email"],
    .dashboard-panel form input[type="text"],
    .dashboard-panel form input[type="email"],
    .signup-box .input-group input,
    .dashboard-panel .input-group input {
      width: 100%;
      max-width: 100%;
      padding: .75rem 1rem;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-size: .95rem;
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--bg);
      outline: none;
      transition: border-color .2s, box-shadow .2s;
    }

    .signup-box form input:focus,
    .dashboard-panel form input:focus,
    .signup-box .input-group input:focus,
    .dashboard-panel .input-group input:focus {
      border-color: var(--cyan);
      box-shadow: 0 0 0 3px rgba(0,201,184,.15);
    }

    .signup-box form .form-help,
    .dashboard-panel form .form-help,
    .signup-box form .help-block,
    .dashboard-panel form .help-block {
      display: block;
      font-size: .8rem;
      color: var(--muted);
      margin-top: .45rem;
      line-height: 1.5;
    }

    .dashboard-panel h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--navy);
      margin: 2rem 0 1rem;
    }

    .dashboard-panel .form-actions {
      margin-top: .5rem;
    }

    .dashboard-panel .form-actions .btn-primary {
      padding: .7rem 1.5rem;
    }

    .api-key-info {
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.65;
      margin-bottom: 1.25rem;
    }

    .api-key-reveal {
      background: linear-gradient(135deg, rgba(0, 201, 184, .12), rgba(15, 35, 64, .06));
      border: 1.5px solid var(--cyan);
      border-radius: 16px;
      padding: 1.75rem 2rem;
      margin-bottom: 2rem;
    }

    .api-key-reveal__title {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--navy);
      margin-bottom: .35rem;
    }

    .api-key-reveal__hint {
      color: var(--muted);
      font-size: .88rem;
      margin-bottom: 1rem;
      line-height: 1.6;
    }

    .api-key-reveal__row {
      display: flex;
      gap: .75rem;
      flex-wrap: wrap;
    }

    .api-key-reveal__input {
      flex: 1;
      min-width: 220px;
      padding: .75rem 1rem;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      font-family: 'JetBrains Mono', monospace;
      font-size: .85rem;
      background: var(--white);
      color: var(--navy);
    }

    .btn-copy { flex-shrink: 0; padding: .75rem 1.25rem; }
    .btn-copy--done { background: var(--navy) !important; color: var(--white) !important; }

    .divider { display: flex; align-items: center; gap: 1rem; margin: 1.25rem 0; color: var(--muted); font-size: .85rem; }
    .divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

    .signup-legal { text-align: center; color: var(--muted); font-size: .78rem; margin-top: 1rem; }
    .signup-legal a { color: var(--cyan); text-decoration: none; }

    /* ── PRICING PAGE ── */
    #prijzen { background: var(--white); }

    .pricing-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
      margin-top: 3rem;
    }

    .price-card {
      background: var(--bg);
      border: 1.5px solid var(--border);
      border-radius: 14px;
      padding: 2rem 1.5rem;
      display: flex; flex-direction: column;
      position: relative;
      transition: box-shadow .2s, transform .2s;
    }
    .price-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); transform: translateY(-4px); }

    .price-card.featured {
      background: var(--navy);
      border-color: var(--cyan);
      color: var(--white);
    }
    .price-card.featured .price-name { color: var(--cyan); }
    .price-card.featured .price-desc { color: rgba(255,255,255,.6); }
    .price-card.featured .feat-li { color: rgba(255,255,255,.85); }
    .price-card.featured .feat-li::before { color: var(--cyan); }

    .badge {
      position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      background: var(--cyan); color: var(--navy);
      font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .72rem;
      padding: .2rem .75rem; border-radius: 99px; letter-spacing: .04em; text-transform: uppercase;
    }

    .price-name {
      font-family: 'Space Grotesk', sans-serif;
      font-size: .85rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
      color: var(--muted); margin-bottom: .75rem;
    }

    .price-amount {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 2.5rem; font-weight: 700; line-height: 1;
      color: var(--navy);
    }
    .price-card.featured .price-amount { color: var(--white); }

    .price-period { font-size: .85rem; color: var(--muted); margin-top: .25rem; margin-bottom: 1.25rem; }
    .price-card.featured .price-period { color: rgba(255,255,255,.5); }

    .price-calls {
      font-family: 'JetBrains Mono', monospace;
      font-size: .82rem; color: var(--cyan);
      background: rgba(0,201,184,.1);
      padding: .35rem .75rem; border-radius: 6px;
      display: inline-block; margin-bottom: 1.5rem;
    }

    .price-desc { font-size: .88rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.6; }

    .feat-list { list-style: none; flex: 1; }
    .feat-li {
      font-size: .88rem; color: var(--text);
      padding: .35rem 0;
      display: flex; align-items: flex-start; gap: .5rem;
    }
    .feat-li::before { content: '✓'; color: var(--cyan); font-weight: 700; flex-shrink: 0; margin-top: .05rem; }

    .price-cta { margin-top: 1.75rem; }

    .btn-price-primary { width: 100%; background: var(--cyan); color: var(--navy); padding: .75rem; justify-content: center; font-size: .95rem; border-radius: 8px; }
    .btn-price-primary:hover { background: var(--cyan-dk); }

    .btn-price-outline { width: 100%; background: transparent; color: var(--navy); border: 1.5px solid var(--border); padding: .75rem; justify-content: center; font-size: .95rem; border-radius: 8px; }
    .btn-price-outline:hover { border-color: var(--cyan); color: var(--cyan); }

    .btn-price-contact { width: 100%; background: transparent; color: var(--cyan); border: 1.5px solid var(--cyan); padding: .75rem; justify-content: center; font-size: .95rem; border-radius: 8px; }
    .btn-price-contact:hover { background: rgba(0,201,184,.08); }

    .pricing-note {
      text-align: center; color: var(--muted); font-size: .88rem;
      margin-top: 2.5rem; line-height: 1.7;
    }
    .pricing-note a { color: var(--cyan); text-decoration: none; }

    /* ── COMPARISON TABLE ── */
    .compare-table { width: 100%; border-collapse: collapse; margin-top: 3rem; }
    .compare-table th, .compare-table td { padding: .9rem 1.25rem; text-align: left; border-bottom: 1px solid var(--border); font-size: .9rem; }
    .compare-table th { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: var(--navy); background: var(--bg); }
    .compare-table td:first-child { color: var(--text); }
    .compare-table td:not(:first-child) { text-align: center; color: var(--muted); }
    .compare-table .check { color: var(--cyan); font-size: 1.1rem; }
    .compare-table .cross { color: #ccc; }
    .compare-table tr:last-child td { border-bottom: none; }
    .compare-table .col-highlight { background: rgba(0,201,184,.04); }

    /* ── FAQ ── */
    .faq-bg { background: var(--bg); }

    .faq-list { max-width: 720px; margin: 2.5rem auto 0; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q {
      width: 100%; background: none; border: none; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center;
      padding: 1.25rem 0;
      font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 600;
      color: var(--navy); text-align: left;
    }
    .faq-q:hover { color: var(--cyan); }
    .faq-arrow { transition: transform .25s; flex-shrink: 0; }
    .faq-item.open .faq-arrow { transform: rotate(180deg); }
    .faq-a { display: none; padding-bottom: 1.25rem; color: var(--muted); font-size: .92rem; line-height: 1.7; }
    .faq-item.open .faq-a { display: block; }

    /* Native details FAQ (SEO/GEO-vriendelijk) */
    details.faq-item { border-bottom: 1px solid var(--border); }
    details.faq-item summary.faq-q {
      list-style: none;
      cursor: pointer;
    }
    details.faq-item summary.faq-q::-webkit-details-marker { display: none; }
    details.faq-item .faq-a {
      display: block;
      padding-bottom: 1.25rem;
      color: var(--muted);
      font-size: .92rem;
      line-height: 1.7;
    }
    details.faq-item .faq-a code {
      font-family: 'JetBrains Mono', monospace;
      font-size: .85em;
      color: var(--cyan);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      padding: 3rem 2rem;
      color: rgba(255,255,255,.5);
      font-size: .85rem;
    }
    .footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
    .footer-inner a { color: rgba(255,255,255,.55); text-decoration: underline; text-underline-offset: 2px; }
    .footer-inner a:hover { color: var(--cyan); }
    .footer-links { display: flex; gap: 1.5rem; }
    .footer-links a { color: rgba(255,255,255,.45); text-decoration: none; }
    .footer-links a:hover { color: var(--cyan); }

    /* ── ALERT OVERLAY ── */
    .alert-overlay {
      position: fixed; inset: 0; z-index: 9999;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 1rem;
      padding: 1.5rem;
      background: rgba(15, 35, 64, .55);
      backdrop-filter: blur(4px);
      animation: alertFadeIn .25s ease;
    }
    .alert-overlay--hide { animation: alertFadeOut .25s ease forwards; }

    .alert-card {
      position: relative;
      width: min(100%, 420px);
      background: var(--white);
      border-radius: 16px;
      padding: 2rem 2rem 1.75rem;
      text-align: center;
      box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
      animation: alertSlideUp .3s ease;
    }
    .alert-card--success { border-top: 4px solid var(--cyan); }
    .alert-card--error { border-top: 4px solid #e74c3c; }

    .alert-close {
      position: absolute; top: .75rem; right: .85rem;
      background: none; border: none; cursor: pointer;
      font-size: 1.5rem; line-height: 1; color: var(--muted);
      padding: .25rem .45rem; border-radius: 6px;
    }
    .alert-close:hover { color: var(--navy); background: var(--bg); }

    .alert-icon {
      width: 56px; height: 56px; margin: 0 auto 1rem;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700; font-size: 1.5rem;
    }
    .alert-card--success .alert-icon { background: rgba(0, 201, 184, .15); color: var(--cyan-dk); }
    .alert-card--error .alert-icon { background: rgba(231, 76, 60, .12); color: #e74c3c; }

    .alert-title {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 700; font-size: 1.25rem;
      color: var(--navy); margin-bottom: .5rem;
    }
    .alert-message {
      color: var(--muted); font-size: .95rem; line-height: 1.65;
      margin-bottom: 1.5rem;
    }
    .alert-ok { width: 100%; justify-content: center; padding: .75rem; }

    @keyframes alertFadeIn { from { opacity: 0; } to { opacity: 1; } }
    @keyframes alertFadeOut { from { opacity: 1; } to { opacity: 0; } }
    @keyframes alertSlideUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

    /* ── UTILITIES ── */
    .text-center { text-align: center; }

    /* ── DOCS PAGE ── */
    .docs-hero {
      background: linear-gradient(160deg, var(--navy) 0%, #1a3555 100%);
      padding-bottom: 2rem;
    }
    .docs-hero .section-title { color: #fff; }
    .docs-hero .section-sub { color: rgba(255,255,255,.65); max-width: 640px; }

    .docs-body { background: var(--bg); padding-top: 2.5rem; padding-bottom: 4rem; }

    .docs-layout {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 3rem;
      align-items: start;
    }

    .docs-sidebar {
      position: sticky;
      top: 5rem;
      display: flex;
      flex-direction: column;
      gap: .25rem;
    }
    .docs-sidebar a {
      font-size: .88rem;
      color: var(--muted);
      text-decoration: none;
      padding: .5rem .85rem;
      border-radius: 8px;
      border-left: 3px solid transparent;
      transition: color .2s, background .2s, border-color .2s;
    }
    .docs-sidebar a:hover {
      color: var(--navy);
      background: var(--white);
      border-left-color: var(--cyan);
    }

    .docs-content { min-width: 0; }

    .docs-section {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 2rem 2.25rem;
      margin-bottom: 1.5rem;
      scroll-margin-top: 5.5rem;
    }
    .docs-section h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 1rem;
    }
    .docs-section h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--navy);
      margin: 1.75rem 0 .75rem;
    }
    .docs-section p { color: var(--muted); font-size: .92rem; line-height: 1.7; margin-bottom: .85rem; }
    .docs-section a { color: var(--cyan-dk); }

    .docs-list { color: var(--muted); font-size: .92rem; line-height: 1.75; padding-left: 1.25rem; margin-bottom: .85rem; }

    .docs-endpoint {
      display: flex;
      align-items: center;
      gap: .75rem;
      margin-bottom: 1rem;
    }
    .docs-method {
      background: var(--cyan);
      color: var(--navy);
      font-family: 'JetBrains Mono', monospace;
      font-size: .75rem;
      font-weight: 700;
      padding: .25rem .55rem;
      border-radius: 4px;
    }
    .docs-endpoint code { font-family: 'JetBrains Mono', monospace; font-size: .9rem; color: var(--navy); }

    .docs-code-inline {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: .75rem 1rem;
      margin-bottom: 1rem;
    }
    .docs-code-inline code { font-family: 'JetBrains Mono', monospace; font-size: .88rem; color: var(--navy); }

    .docs-terminal { margin: 1rem 0; transform: none; box-shadow: none; }
    .docs-terminal .terminal-body { padding: 1rem 1.25rem; }

    .docs-table {
      width: 100%;
      border-collapse: collapse;
      font-size: .88rem;
      margin: .75rem 0 1rem;
    }
    .docs-table th,
    .docs-table td {
      text-align: left;
      padding: .65rem .85rem;
      border-bottom: 1px solid var(--border);
      vertical-align: top;
    }
    .docs-table th { color: var(--navy); font-weight: 600; background: var(--bg); }
    .docs-table td { color: var(--muted); }
    .docs-table code { font-family: 'JetBrains Mono', monospace; font-size: .82rem; color: var(--navy); }

    .docs-pre {
      background: var(--code-bg);
      color: rgba(255,255,255,.85);
      font-family: 'JetBrains Mono', monospace;
      font-size: .8rem;
      line-height: 1.7;
      padding: 1.25rem 1.5rem;
      border-radius: 10px;
      overflow-x: auto;
      margin: .75rem 0 0;
    }

    .docs-code-block { margin-top: 1rem; }
    .docs-code-block .code-tab {
      background: none;
      border: none;
      font: inherit;
    }

    @media (max-width: 900px) {
      .hero-inner, .code-example-grid { grid-template-columns: 1fr; }
      .terminal { transform: none; margin-top: 2rem; }
      .features-grid, .how-grid, .pricing-grid { grid-template-columns: 1fr; }
      .how-grid::before { display: none; }
      .pricing-grid { grid-template-columns: 1fr 1fr; }
      .docs-layout { grid-template-columns: 1fr; }
      .docs-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: .5rem 1rem;
        padding-bottom: .5rem;
        border-bottom: 1px solid var(--border);
        margin-bottom: .5rem;
      }
      .docs-sidebar a {
        border-left: none;
        padding: .45rem .65rem;
        background: var(--white);
        border: 1px solid var(--border);
      }
      .docs-sidebar a:hover { border-color: var(--cyan); }
    }
    @media (max-width: 600px) {
      .pricing-grid { grid-template-columns: 1fr; }
      .nav-links .hide-mobile { display: none; }
    }

    /* Page sections visibility */
    .page { display: none; }
    .page.active { display: block; }
    #page-home { display: block; }
