@import url("tokens.css");

/* Merged marketing CSS from source HTML exports */

/* ===== seo-agentics-homepage (2).html ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    overflow-x: hidden;
    min-height: 100vh;
  }

  /* ── AMBIENT GLOW LAYER ── */
  #glow-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  /* ── LAYOUT ── */
  .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    position: relative;
    z-index: 1;
  }

  section { position: relative; z-index: 1; }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s, backdrop-filter 0.3s;
  }

  nav.scrolled {
    background: var(--color-nav-scrolled);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--border);
  }

  .nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--color-text);
    letter-spacing: -0.3px;
    text-decoration: none;
  }

  .logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo-mark svg { width: 16px; height: 16px; }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-size: 13.5px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 400;
  }

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

  .nav-actions { display: flex; align-items: center; gap: 10px; }

  .btn-ghost {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    padding: 8px 18px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 7px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
  }

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

  .btn-accent {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    background: var(--accent);
    color: var(--color-accent-contrast);
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
  }

  .btn-accent:hover { background: #52edc4; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    border-bottom: 1px solid var(--border);
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    padding: 5px 13px;
    border-radius: 100px;
    margin-bottom: 32px;
  }

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

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

  .hero h1 {
    font-family: var(--font-display);
    font-size: 76px;
    font-weight: 800;
    line-height: 1.01;
    letter-spacing: -3px;
    color: var(--color-text);
    margin-bottom: 26px;
    max-width: 820px;
  }

  .hero h1 .accent { color: var(--accent); }

  .hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 540px;
    margin-bottom: 40px;
  }

  .hero-actions { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 48px; }

  .btn-hero {
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 700;
    padding: 13px 30px;
    background: var(--accent);
    color: var(--color-accent-contrast);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
  }

  .btn-hero:hover { background: #52edc4; }

  .btn-how {
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 400;
    padding: 13px 24px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
  }

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

  .hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
  }

  .avatar-stack { display: flex; }

  .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    background: var(--bg3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: var(--accent);
    margin-left: -8px;
  }

  .avatar:first-child { margin-left: 0; }

  .trust-text { font-size: 13px; color: var(--text-faint); }

  /* ── HERO VIDEO ── */
  .hero-video-wrap {
    width: 100%;
    max-width: 960px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg2);
    cursor: pointer;
  }

  .hero-video-wrap:has(.video-embed) {
    cursor: default;
  }

  .hero-video-wrap:hover .play-btn { transform: scale(1.08); }

  .video-thumbnail {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--bg2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .video-thumbnail--embed {
    padding: 0;
    background: #000;
  }

  .video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
  }

  .video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .video-embed--modal {
    aspect-ratio: 16 / 9;
    width: 100%;
  }

  /* Stylised thumbnail placeholder — grid lines suggesting a dashboard */
  .thumb-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 180px 1fr;
  }

  .thumb-sidebar {
    border-right: 1px solid var(--border);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .thumb-nav-item {
    height: 10px;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
  }

  .thumb-nav-item.active {
    background: var(--accent-dim);
    width: 70%;
  }

  .thumb-main {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .thumb-top-row { display: flex; gap: 10px; align-items: center; margin-bottom: 4px; }

  .thumb-pill {
    height: 22px;
    width: 130px;
    border-radius: 100px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
  }

  .thumb-row {
    height: 10px;
    border-radius: 4px;
    background: rgba(255,255,255,0.06);
  }

  .thumb-row.short { width: 55%; }
  .thumb-row.medium { width: 72%; }

  .thumb-stats {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }

  .thumb-stat-box {
    flex: 1;
    height: 56px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: rgba(255,255,255,0.15);
  }

  .thumb-stat-box.highlight { color: var(--accent); opacity: 0.4; }

  /* Gradient overlay so play button pops */
  .video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 10, 14, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
    box-shadow: 0 0 0 16px rgba(46, 225, 181, 0.1);
  }

  .play-btn svg {
    width: 26px;
    height: 26px;
    fill: var(--color-accent-contrast);
    margin-left: 4px;
  }

  /* Video topbar chrome */
  .video-chrome {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
  }

  .chrome-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.08); }
  .chrome-label { font-size: 11px; color: var(--text-faint); margin-left: 6px; }

  .video-caption {
    padding: 14px 20px;
    font-size: 12px;
    color: var(--text-faint);
    text-align: center;
    border-top: 1px solid var(--border);
    background: var(--bg2);
  }

  /* Modal overlay for video */
  .video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 999;
    align-items: center;
    justify-content: center;
  }

  .video-modal.open { display: flex; }

  .modal-inner {
    width: 90%;
    max-width: 1000px;
    position: relative;
  }

  .modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 28px;
    cursor: pointer;
    font-family: var(--font-body);
    line-height: 1;
    transition: color 0.2s;
  }

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

  .modal-video-frame {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
  }

  .modal-placeholder {
    text-align: center;
    color: var(--text-faint);
  }

  .modal-placeholder p { font-size: 14px; margin-top: 12px; }

  /* ── SECTION SHARED ── */
  .section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
  }

  .section-h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -1px;
    line-height: 1.07;
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 500px;
  }

  /* ── SERVICES ── */
  .services-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
  }

  .services-header { margin-bottom: 56px; }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
  }

  .service-card {
    background: var(--bg);
    padding: 44px 40px;
    transition: background 0.25s;
    cursor: default;
  }

  .service-card:hover { background: var(--bg2); }

  .service-num {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.09em;
    opacity: 0.6;
    margin-bottom: 24px;
  }

  .service-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--accent-border);
    background: var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }

  .service-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

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

  .service-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
  }

  .service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--accent);
    margin-top: 24px;
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.2s;
  }

  .service-link:hover { gap: 9px; }

  /* ── HOW IT WORKS ── */
  .how-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
  }

  .how-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
    margin-top: 56px;
  }

  .steps { display: flex; flex-direction: column; }

  .step {
    display: flex;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    opacity: 0.45;
    transition: opacity 0.3s;
    cursor: default;
  }

  .step:first-child { padding-top: 0; }
  .step:last-child { border-bottom: none; }
  .step:hover { opacity: 1; }

  .step-n {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
  }

  .step h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 7px;
    letter-spacing: -0.2px;
  }

  .step p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

  /* dashboard mock */
  .dash-mock {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    position: sticky;
    top: 90px;
  }

  .dash-topbar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
  }

  .dash-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.08); }
  .dash-label { font-size: 11px; color: var(--text-faint); margin-left: 6px; }

  .dash-body { display: flex; }

  .dash-sidebar {
    width: 140px;
    border-right: 1px solid var(--border);
    padding: 12px 0;
    flex-shrink: 0;
  }

  .dash-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 12px;
    color: var(--text-faint);
    cursor: pointer;
    transition: all 0.2s;
  }

  .dash-nav-item.active { color: var(--accent); background: rgba(46,225,181,0.06); }
  .dash-nav-item svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.5; flex-shrink: 0; }

  .dash-main { flex: 1; padding: 18px 16px; }

  .client-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 14px;
  }

  .cpill-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

  .article-row {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }

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

  .article-title { font-size: 12px; color: rgba(226,232,242,0.7); margin-bottom: 4px; }
  .article-meta { display: flex; gap: 5px; align-items: center; }

  .atag {
    font-size: 9px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 3px;
    letter-spacing: 0.03em;
  }

  .atag.green { background: rgba(46,225,181,0.1); color: var(--accent); }
  .atag.gray { background: rgba(255,255,255,0.05); color: var(--text-faint); }

  .client-switcher { margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.04); }
  .cs-label { font-size: 9px; color: var(--text-faint); margin-bottom: 6px; letter-spacing: 0.04em; text-transform: uppercase; }
  .cs-pills { display: flex; gap: 4px; flex-wrap: wrap; }

  .cs-pill {
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.04);
    color: rgba(226,232,242,0.28);
    cursor: pointer;
    transition: all 0.2s;
  }

  .cs-pill:hover { background: rgba(255,255,255,0.07); color: var(--text-muted); }

  /* ── COMPARISON TABLE ── */
  .comparison-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
  }

  .comparison-table {
    margin-top: 48px;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
  }

  .ct-header {
    display: grid;
    grid-template-columns: 1fr 180px 180px;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 0 32px;
  }

  .ct-header-cell {
    padding: 18px 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-faint);
    text-transform: uppercase;
  }

  .ct-header-cell.us {
    color: var(--accent);
    text-align: center;
  }

  .ct-header-cell.them { text-align: center; }

  .ct-row {
    display: grid;
    grid-template-columns: 1fr 180px 180px;
    padding: 0 32px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s;
  }

  .ct-row:last-child { border-bottom: none; }
  .ct-row:hover { background: rgba(255,255,255,0.02); }

  .ct-feature {
    padding: 20px 0;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
    display: flex;
    align-items: center;
  }

  .ct-val {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
  }

  .ct-val.yes { color: var(--accent); }
  .ct-val.no { color: rgba(226,232,242,0.2); font-weight: 400; }

  .ct-yes-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(46,225,181,0.1);
    border: 1px solid rgba(46,225,181,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ct-yes-icon svg { width: 10px; height: 10px; stroke: var(--accent); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

  .ct-no-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ct-no-icon svg { width: 10px; height: 10px; stroke: rgba(226,232,242,0.2); fill: none; stroke-width: 2; stroke-linecap: round; }

  /* ── DIFFERENTIATORS ── */
  .diff-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
  }

  .diff-header { margin-bottom: 56px; }

  .diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
  }

  .diff-card {
    background: var(--bg);
    padding: 36px 30px;
    transition: background 0.25s;
  }

  .diff-card:hover { background: var(--bg2); }

  .diff-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .diff-icon svg { width: 17px; height: 17px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

  .diff-card h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
    letter-spacing: -0.2px;
  }

  .diff-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

  /* ── TESTIMONIAL ── */
  .testimonial-section {
    padding: 90px 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
  }

  .testimonial-inner { max-width: 680px; margin: 0 auto; text-align: center; }

  .quote-mark {
    font-family: var(--font-display);
    font-size: 72px;
    line-height: 0.6;
    color: var(--accent);
    opacity: 0.25;
    margin-bottom: 24px;
    display: block;
  }

  blockquote {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: rgba(226,232,242,0.8);
    line-height: 1.55;
    letter-spacing: -0.3px;
    margin-bottom: 28px;
    font-style: normal;
  }

  blockquote em { color: var(--accent); font-style: normal; font-weight: 600; }

  cite { font-size: 12px; color: var(--text-faint); font-style: normal; }

  /* ── PRICING ── */
  .pricing-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
  }

  .pricing-card {
    margin-top: 48px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 40px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

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

  .pricing-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; font-weight: 300; max-width: 520px; }

  .pricing-right { text-align: right; flex-shrink: 0; }
  .pricing-label { font-size: 11px; color: var(--text-faint); margin-bottom: 4px; }
  .pricing-value { font-size: 14px; color: var(--text-muted); white-space: nowrap; }

  /* ── CTA ── */
  .cta-section { padding: 120px 0; text-align: center; }

  .cta-section h2 {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -1.5px;
    margin-bottom: 18px;
  }

  .cta-section p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 300;
  }

  .cta-row { display: flex; align-items: center; justify-content: center; gap: 12px; }

  .btn-cta {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    padding: 15px 38px;
    background: var(--accent);
    color: var(--color-accent-contrast);
    border: none;
    border-radius: 9px;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
  }

  .btn-cta:hover { background: #52edc4; }

  .btn-cta-ghost {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    padding: 15px 38px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.2s;
  }

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

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
  }

  .footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-5) var(--container-padding-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-copy { font-size: 12px; color: var(--text-faint); }

  .footer-links { display: flex; gap: 22px; }
  .footer-links a { font-size: 12px; color: var(--text-faint); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--text-muted); }

  /* ── SCROLL ANIMATIONS ── */
  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-up-delay-1 { transition-delay: 0.1s; }
  .fade-up-delay-2 { transition-delay: 0.2s; }
  .fade-up-delay-3 { transition-delay: 0.3s; }

/* ===== seo-agentics-content-engine.html ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    overflow-x: hidden;
    min-height: 100vh;
  }

  #glow-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    position: relative;
    z-index: 1;
  }

  section { position: relative; z-index: 1; }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s, backdrop-filter 0.3s;
  }
  nav.scrolled {
    background: rgba(7, 10, 14, 0.88);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--border);
  }
  .nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--color-text);
    letter-spacing: -0.3px;
    text-decoration: none;
  }
  .logo-mark {
    width: 30px; height: 30px;
    border-radius: 7px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo-mark svg { width: 16px; height: 16px; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-size: 13.5px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-links a.active { color: var(--accent); }
  .nav-actions { display: flex; align-items: center; gap: 10px; }
  .btn-ghost {
    font-family: var(--font-body);
    font-size: 13px;
    padding: 8px 18px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 7px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: var(--text); border-color: var(--border-hover); }
  .btn-accent {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    background: var(--accent);
    color: var(--color-accent-contrast);
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
  }
  .btn-accent:hover { background: #52edc4; }

  /* ── SHARED ── */
  .section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
  }
  .section-h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -1px;
    line-height: 1.07;
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 520px;
  }

  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up-delay-1 { transition-delay: 0.1s; }
  .fade-up-delay-2 { transition-delay: 0.2s; }
  .fade-up-delay-3 { transition-delay: 0.3s; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    border-bottom: 1px solid var(--border);
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-faint);
    margin-bottom: 24px;
  }
  .hero-breadcrumb a { color: var(--text-faint); text-decoration: none; transition: color 0.2s; }
  .hero-breadcrumb a:hover { color: var(--text-muted); }
  .hero-breadcrumb span { color: var(--accent); }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    padding: 5px 13px;
    border-radius: 100px;
    margin-bottom: 28px;
  }
  .badge-pulse {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2.4s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.8); }
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 800;
    line-height: 1.01;
    letter-spacing: -3px;
    color: var(--color-text);
    margin-bottom: 24px;
    max-width: 860px;
  }
  .hero h1 .accent { color: var(--accent); }
  .hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 560px;
    margin-bottom: 40px;
  }
  .hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 64px;
  }
  .btn-hero {
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 700;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--color-accent-contrast);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
  }
  .btn-hero:hover { background: #52edc4; }
  .btn-how {
    font-family: var(--font-body);
    font-size: 14.5px;
    padding: 14px 24px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .btn-how:hover { color: var(--text); border-color: var(--border-hover); }

  /* ── VIDEO ── */
  .hero-video-wrap {
    width: 100%;
    max-width: 960px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg2);
    cursor: pointer;
  }
  .hero-video-wrap:hover .play-btn { transform: scale(1.08); }
  .video-chrome {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
  }
  .chrome-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.08); }
  .chrome-label { font-size: 11px; color: var(--text-faint); margin-left: 6px; }
  .video-thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg2);
    position: relative;
    overflow: hidden;
  }
  .thumb-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 180px 1fr;
  }
  .thumb-sidebar {
    border-right: 1px solid var(--border);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .thumb-nav-item {
    height: 8px;
    border-radius: 3px;
    background: rgba(255,255,255,0.05);
  }
  .thumb-nav-item.active { background: rgba(46,225,181,0.15); width: 65%; }
  .thumb-main {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .thumb-top-row { display: flex; gap: 8px; margin-bottom: 4px; }
  .thumb-pill {
    height: 20px; width: 120px;
    border-radius: 100px;
    background: rgba(46,225,181,0.12);
    border: 1px solid rgba(46,225,181,0.2);
  }
  .thumb-row { height: 8px; border-radius: 3px; background: rgba(255,255,255,0.06); }
  .thumb-row.m { width: 70%; }
  .thumb-row.s { width: 45%; }
  .thumb-stats { display: flex; gap: 8px; margin-top: 8px; }
  .thumb-stat-box {
    flex: 1; height: 52px;
    border-radius: 7px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: rgba(255,255,255,0.1);
    font-family: var(--font-display);
  }
  .thumb-stat-box.hl { color: var(--accent); opacity: 0.4; }
  .video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7,10,14,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .play-btn {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
    box-shadow: 0 0 0 16px rgba(46,225,181,0.1);
  }
  .play-btn svg { width: 26px; height: 26px; fill: var(--color-accent-contrast); margin-left: 4px; }
  .video-caption {
    padding: 14px 20px;
    font-size: 12px;
    color: var(--text-faint);
    text-align: center;
    border-top: 1px solid var(--border);
    background: var(--bg2);
  }

  /* ── ENGINE LAYERS ── */
  .layers-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
  }
  .layers-header { margin-bottom: 72px; }
  .layers-grid {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
  }
  .layer-row {
    display: grid;
    grid-template-columns: 56px 280px 1fr;
    align-items: start;
    gap: 0;
    background: var(--bg);
    padding: 40px 40px;
    border-bottom: 1px solid var(--border);
    transition: background 0.25s;
  }
  .layer-row:last-child { border-bottom: none; }
  .layer-row:hover { background: var(--bg2); }
  .layer-num {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    opacity: 0.5;
    letter-spacing: 0.08em;
    padding-top: 3px;
  }
  .layer-title-col { padding-right: 40px; }
  .layer-icon {
    width: 38px; height: 38px;
    border-radius: 9px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
  }
  .layer-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .layer-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.3px;
    line-height: 1.2;
  }
  .layer-body { padding-top: 4px; border-left: 1px solid var(--border); padding-left: 40px; }
  .layer-body p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
  }
  .layer-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
  }

  /* ── WORKFLOW FIT ── */
  .workflow-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
  }
  .workflow-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .workflow-points { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
  .workflow-point { display: flex; gap: 16px; align-items: flex-start; }
  .wp-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 7px;
  }
  .wp-text h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 5px;
    letter-spacing: -0.2px;
  }
  .wp-text p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }
  .workflow-visual {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
  }
  .wv-header {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 11px;
    color: var(--text-faint);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .wv-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.07); }
  .wv-body { padding: 24px 20px; display: flex; flex-direction: column; gap: 10px; }
  .wv-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--bg2);
    border-radius: 8px;
    border: 1px solid var(--border);
  }
  .wv-row-label { font-size: 12px; color: var(--text-muted); }
  .wv-row-val {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    color: var(--accent);
  }
  .wv-row-val.custom { background: rgba(255,255,255,0.05); border-color: var(--border); color: var(--text-faint); }

  /* ── AUTHENTICITY LAYER ── */
  .auth-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
  }
  .auth-inner {
    background: var(--bg2);
    border: 1px solid var(--accent-border);
    border-radius: 16px;
    padding: 64px 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    margin-top: 0;
    position: relative;
    overflow: hidden;
  }
  .auth-glow {
    position: absolute;
    top: -80px; left: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,225,181,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
  }
  .auth-inner h2 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -1px;
    line-height: 1.07;
    margin-bottom: 18px;
  }
  .auth-inner h2 em { color: var(--accent); font-style: normal; }
  .auth-inner p { font-size: 15px; color: var(--text-muted); line-height: 1.7; font-weight: 300; margin-bottom: 14px; }
  .auth-steps { display: flex; flex-direction: column; gap: 1px; }
  .auth-step {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    align-items: flex-start;
  }
  .auth-step:last-child { border-bottom: none; }
  .auth-step-n {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: var(--accent);
    flex-shrink: 0;
  }
  .auth-step h4 { font-size: 13px; font-weight: 700; color: var(--color-text); margin-bottom: 4px; }
  .auth-step p { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

  /* ── COMPARISON TABLE ── */
  .comparison-section { padding: 100px 0; border-bottom: 1px solid var(--border); }
  .comparison-table { margin-top: 48px; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
  .ct-header {
    display: grid;
    grid-template-columns: 1fr 180px 180px;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 0 32px;
  }
  .ct-header-cell {
    padding: 18px 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-faint);
    text-transform: uppercase;
  }
  .ct-header-cell.us { color: var(--accent); text-align: center; }
  .ct-header-cell.them { text-align: center; }
  .ct-row {
    display: grid;
    grid-template-columns: 1fr 180px 180px;
    padding: 0 32px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s;
  }
  .ct-row:last-child { border-bottom: none; }
  .ct-row:hover { background: rgba(255,255,255,0.02); }
  .ct-feature { padding: 20px 0; font-size: 14px; color: var(--text-muted); display: flex; align-items: center; }
  .ct-val { padding: 20px 0; display: flex; align-items: center; justify-content: center; }
  .ct-yes-icon {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(46,225,181,0.1);
    border: 1px solid rgba(46,225,181,0.25);
    display: flex; align-items: center; justify-content: center;
  }
  .ct-yes-icon svg { width: 10px; height: 10px; stroke: var(--accent); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
  .ct-no-icon {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center;
  }
  .ct-no-icon svg { width: 10px; height: 10px; stroke: rgba(226,232,242,0.2); fill: none; stroke-width: 2; stroke-linecap: round; }

  /* ── CTA ── */
  .cta-section { padding: 120px 0; text-align: center; }
  .cta-section h2 {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -1.5px;
    margin-bottom: 18px;
  }
  .cta-section p { font-size: 17px; color: var(--text-muted); margin-bottom: 40px; font-weight: 300; }
  .cta-row { display: flex; align-items: center; justify-content: center; gap: 12px; }
  .btn-cta {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    padding: 15px 38px;
    background: var(--accent);
    color: var(--color-accent-contrast);
    border: none;
    border-radius: 9px;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
  }
  .btn-cta:hover { background: #52edc4; }
  .btn-cta-ghost {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 15px 38px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .btn-cta-ghost:hover { color: var(--text); border-color: var(--border-hover); }

  /* ── FOOTER ── */
  footer { border-top: 1px solid var(--border); position: relative; z-index: 1; }
  .footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-5) var(--container-padding-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-copy { font-size: 12px; color: var(--text-faint); }
  .footer-links { display: flex; gap: 22px; }
  .footer-links a { font-size: 12px; color: var(--text-faint); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--text-muted); }

  /* ── VIDEO MODAL ── */
  .video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 999;
    align-items: center;
    justify-content: center;
  }
  .video-modal.open { display: flex; }
  .modal-inner { width: 90%; max-width: 1000px; position: relative; }
  .modal-close {
    position: absolute;
    top: -44px; right: 0;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 28px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: color 0.2s;
  }
  .modal-close:hover { color: var(--color-text); }
  .modal-video-frame {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .modal-placeholder { text-align: center; color: var(--text-faint); }
  .modal-placeholder p { font-size: 14px; margin-top: 16px; }

/* ===== seo-agentics-agents.html ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    overflow-x: hidden;
  }

  #glow-canvas {
    position: fixed;
    inset: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    position: relative;
    z-index: 1;
  }

  section { position: relative; z-index: 1; }

  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up-delay-1 { transition-delay: 0.1s; }
  .fade-up-delay-2 { transition-delay: 0.2s; }
  .fade-up-delay-3 { transition-delay: 0.3s; }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s, backdrop-filter 0.3s;
  }
  nav.scrolled {
    background: rgba(7, 10, 14, 0.88);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--border);
  }
  .nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--color-text);
    letter-spacing: -0.3px;
    text-decoration: none;
  }
  .logo-mark {
    width: 30px; height: 30px;
    border-radius: 7px;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
  }
  .logo-mark svg { width: 16px; height: 16px; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-size: 13.5px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-links a.active { color: var(--accent); }
  .nav-actions { display: flex; align-items: center; gap: 10px; }
  .btn-ghost {
    font-family: var(--font-body);
    font-size: 13px;
    padding: 8px 18px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 7px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: var(--text); border-color: var(--border-hover); }
  .btn-accent {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    background: var(--accent);
    color: var(--color-accent-contrast);
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
  }
  .btn-accent:hover { background: #52edc4; }

  /* ── SHARED ── */
  .section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
  }
  .section-h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -1px;
    line-height: 1.07;
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 520px;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    border-bottom: 1px solid var(--border);
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-faint);
    margin-bottom: 24px;
  }
  .hero-breadcrumb a { color: var(--text-faint); text-decoration: none; transition: color 0.2s; }
  .hero-breadcrumb a:hover { color: var(--text-muted); }
  .hero-breadcrumb span { color: var(--accent); }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    padding: 5px 13px;
    border-radius: 100px;
    margin-bottom: 28px;
  }
  .badge-pulse {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2.4s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.8); }
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 800;
    line-height: 1.01;
    letter-spacing: -3px;
    color: var(--color-text);
    margin-bottom: 24px;
    max-width: 860px;
  }
  .hero h1 em { color: var(--accent); font-style: normal; }
  .hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 580px;
    margin-bottom: 40px;
  }
  .hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 64px;
  }
  .btn-hero {
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 700;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--color-accent-contrast);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
  }
  .btn-hero:hover { background: #52edc4; }
  .btn-how {
    font-family: var(--font-body);
    font-size: 14.5px;
    padding: 14px 24px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .btn-how:hover { color: var(--text); border-color: var(--border-hover); }

  /* ── HERO TICKER ── */
  .hero-ticker-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2px 0;
  }
  .hero-ticker-wrap::before,
  .hero-ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
  }
  .hero-ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--color-page), transparent); }
  .hero-ticker-wrap::after { right: 0; background: linear-gradient(to left, var(--color-page), transparent); }
  .hero-ticker {
    display: flex;
    gap: 10px;
    animation: ticker 40s linear infinite;
    width: max-content;
  }
  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .ticker-pill {
    font-size: 11px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 100px;
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--text-faint);
    white-space: nowrap;
    flex-shrink: 0;
    transition: border-color 0.2s, color 0.2s;
  }
  .ticker-pill:hover { border-color: var(--accent-border); color: var(--accent); }
  .ticker-pill.accent-pill {
    background: var(--accent-dim);
    border-color: var(--accent-border);
    color: var(--accent);
  }

  /* ── WHAT IS THIS ── */
  .what-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
  }
  .what-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .what-left h2 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.9px;
    line-height: 1.07;
    margin-bottom: 20px;
  }
  .what-left h2 em { color: var(--accent); font-style: normal; }
  .what-left p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 16px;
  }
  .what-left p:last-child { margin-bottom: 0; }
  .what-right { display: flex; flex-direction: column; gap: 12px; }
  .what-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: border-color 0.2s;
  }
  .what-card:hover { border-color: var(--accent-border); }
  .what-card-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .what-card-icon svg { width: 15px; height: 15px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .what-card h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--color-text); margin-bottom: 4px; letter-spacing: -0.2px; }
  .what-card p { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

  /* ── HOW IT WORKS ── */
  .how-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
  }
  .how-steps {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 56px;
  }
  .how-step {
    background: var(--bg2);
    display: grid;
    grid-template-columns: 72px 1fr 1fr;
    transition: background 0.25s;
  }
  .how-step:hover { background: var(--bg3); }
  .how-step-num {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 36px 0;
    border-right: 1px solid var(--border);
  }
  .step-circle {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--accent-border);
    background: var(--accent-dim);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-display);
  }
  .how-step-body {
    padding: 36px 36px;
    border-right: 1px solid var(--border);
  }
  .how-step-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.7;
    margin-bottom: 10px;
  }
  .how-step-body h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.4px;
    margin-bottom: 10px;
  }
  .how-step-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
  .how-step-detail {
    padding: 36px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
  .how-detail-label { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 6px; }
  .how-detail-tags { display: flex; flex-wrap: wrap; gap: 6px; }
  .how-detail-tag {
    font-size: 10px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    color: var(--text-faint);
  }
  .how-detail-tag.lit {
    background: var(--accent-dim);
    border-color: var(--accent-border);
    color: var(--accent);
  }

  /* ── AGENT LIBRARY ── */
  .library-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
  }
  .library-header { margin-bottom: 56px; }
  .library-count {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
  }
  .library-num {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -3px;
    line-height: 1;
  }
  .library-num-label {
    font-size: 20px;
    color: var(--text-faint);
    font-weight: 300;
  }

  /* Category tabs */
  .cat-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
  .cat-tab {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-faint);
    cursor: pointer;
    transition: all 0.2s;
  }
  .cat-tab:hover { border-color: var(--border-hover); color: var(--text-muted); }
  .cat-tab.active {
    background: var(--accent-dim);
    border-color: var(--accent-border);
    color: var(--accent);
  }

  /* Agent grid */
  .agent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
  }
  .agent-card {
    background: var(--bg);
    padding: 22px 22px;
    transition: background 0.2s;
    cursor: default;
  }
  .agent-card:hover { background: var(--bg2); }
  .agent-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }
  .agent-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
    flex-shrink: 0;
  }
  .agent-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: -0.1px;
  }
  .agent-desc { font-size: 11.5px; color: var(--text-faint); line-height: 1.55; font-weight: 300; }
  .agent-cat-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 100px;
    margin-top: 8px;
  }

  /* Category colours */
  .cat-kw { background: rgba(46,140,225,0.1); color: #5ab4f5; border: 1px solid rgba(46,140,225,0.2); }
  .cat-content { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--accent-border); }
  .cat-onpage { background: rgba(225,181,46,0.1); color: #f5c842; border: 1px solid rgba(225,181,46,0.2); }
  .cat-link { background: rgba(225,100,46,0.1); color: #f5904a; border: 1px solid rgba(225,100,46,0.2); }
  .cat-intel { background: rgba(181,46,225,0.1); color: #c96cf5; border: 1px solid rgba(181,46,225,0.2); }
  .cat-report { background: rgba(46,225,100,0.1); color: #4af590; border: 1px solid rgba(46,225,100,0.2); }

  /* hidden agents */
  .agent-card.hidden { display: none; }

  .library-footer {
    margin-top: 24px;
    text-align: center;
    font-size: 13px;
    color: var(--text-faint);
    font-weight: 300;
  }
  .library-footer em { color: var(--accent); font-style: normal; font-weight: 500; }

  /* ── OUTPUT SECTION ── */
  .output-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
  }
  .output-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 56px;
  }
  .output-card {
    background: var(--bg2);
    padding: 36px 30px;
    transition: background 0.25s;
  }
  .output-card:hover { background: var(--bg3); }
  .output-icon {
    width: 40px; height: 40px;
    border-radius: 9px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .output-icon svg { width: 19px; height: 19px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .output-card h4 { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--color-text); letter-spacing: -0.3px; margin-bottom: 10px; }
  .output-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

  /* ── METHODOLOGY CALLOUT ── */
  .method-section { padding: 100px 0; border-bottom: 1px solid var(--border); }
  .method-inner {
    background: var(--bg2);
    border: 1px solid var(--accent-border);
    border-radius: 16px;
    padding: 64px 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .method-glow {
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,225,181,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .method-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
  }
  .method-inner h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.8px;
    line-height: 1.07;
    margin-bottom: 18px;
  }
  .method-inner h2 em { color: var(--accent); font-style: normal; }
  .method-inner p { font-size: 15px; color: var(--text-muted); line-height: 1.75; font-weight: 300; margin-bottom: 14px; }
  .method-inner p:last-child { margin-bottom: 0; }
  .method-steps { display: flex; flex-direction: column; gap: 1px; }
  .method-step {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    align-items: flex-start;
  }
  .method-step:last-child { border-bottom: none; }
  .method-step-n {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid var(--accent-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    flex-shrink: 0;
  }
  .method-step h4 { font-size: 13px; font-weight: 700; color: var(--color-text); margin-bottom: 4px; }
  .method-step p { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

  /* ── STANDALONE CALLOUT ── */
  .standalone-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
  }
  .standalone-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .standalone-left h2 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.9px;
    line-height: 1.07;
    margin-bottom: 20px;
  }
  .standalone-left h2 em { color: var(--accent); font-style: normal; }
  .standalone-left p { font-size: 15px; color: var(--text-muted); line-height: 1.75; font-weight: 300; margin-bottom: 14px; }
  .standalone-cards { display: flex; flex-direction: column; gap: 14px; }
  .standalone-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 26px;
    transition: border-color 0.2s;
  }
  .standalone-card:hover { border-color: var(--accent-border); }
  .standalone-card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--color-text); margin-bottom: 8px; letter-spacing: -0.2px; }
  .standalone-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

  /* ── CTA ── */
  .cta-section { padding: 120px 0; text-align: center; }
  .cta-section h2 {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -1.5px;
    margin-bottom: 18px;
  }
  .cta-section p { font-size: 17px; color: var(--text-muted); margin-bottom: 40px; font-weight: 300; max-width: 520px; margin-left: auto; margin-right: auto; }
  .cta-row { display: flex; align-items: center; justify-content: center; gap: 12px; }
  .btn-cta {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    padding: 15px 38px;
    background: var(--accent);
    color: var(--color-accent-contrast);
    border: none;
    border-radius: 9px;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
  }
  .btn-cta:hover { background: #52edc4; }
  .btn-cta-ghost {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 15px 38px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .btn-cta-ghost:hover { color: var(--text); border-color: var(--border-hover); }

  /* ── FOOTER ── */
  footer { border-top: 1px solid var(--border); position: relative; z-index: 1; }
  .footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-5) var(--container-padding-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-copy { font-size: 12px; color: var(--text-faint); }
  .footer-links { display: flex; gap: 22px; }
  .footer-links a { font-size: 12px; color: var(--text-faint); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--text-muted); }

/* ===== seo-agentics-contact (1).html ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    overflow-x: hidden;
    min-height: 100vh;
  }

  #glow-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    position: relative;
    z-index: 1;
  }

  section { position: relative; z-index: 1; }

  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up-delay-1 { transition-delay: 0.1s; }
  .fade-up-delay-2 { transition-delay: 0.2s; }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s, backdrop-filter 0.3s;
  }
  nav.scrolled {
    background: rgba(7, 10, 14, 0.88);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--border);
  }
  .nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--color-text);
    letter-spacing: -0.3px;
    text-decoration: none;
  }
  .logo-mark {
    width: 30px; height: 30px;
    border-radius: 7px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo-mark svg { width: 16px; height: 16px; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-size: 13.5px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-actions { display: flex; align-items: center; gap: 10px; }
  .btn-ghost {
    font-family: var(--font-body);
    font-size: 13px;
    padding: 8px 18px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 7px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: var(--text); border-color: var(--border-hover); }
  .btn-accent {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    background: var(--accent);
    color: var(--color-accent-contrast);
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
  }
  .btn-accent:hover { background: #52edc4; }

  /* ── PAGE LAYOUT ── */
  .page {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: 140px 0 100px;
  }

  .page-inner {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 100px;
    align-items: start;
    width: 100%;
  }

  /* ── LEFT PANEL ── */
  .contact-left {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
  }

  .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-faint);
    margin-bottom: 28px;
  }
  .breadcrumb a { color: var(--text-faint); text-decoration: none; transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--text-muted); }
  .breadcrumb span { color: var(--accent); }

  .contact-left h1 {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -2px;
    line-height: 1.04;
    margin-bottom: 20px;
  }
  .contact-left h1 em { color: var(--accent); font-style: normal; }

  .contact-left p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 48px;
  }

  .contact-details { display: flex; flex-direction: column; gap: 20px; flex-grow: 1; }

  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .cd-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .cd-icon svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

  .cd-text { padding-top: 2px; }
  .cd-label { font-size: 11px; color: var(--text-faint); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; }
  .cd-value { font-size: 14px; color: var(--text-muted); }

  .divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 40px 0;
  }

  .alt-cta-label {
    font-size: 12px;
    color: var(--text-faint);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
  }

  .demo-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 24px;
    transition: border-color 0.2s;
  }
  .demo-card:hover { border-color: var(--accent-border); }
  .demo-card h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
  }
  .demo-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 18px;
  }
  .btn-demo {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 22px;
    background: var(--accent);
    color: var(--color-accent-contrast);
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
    display: inline-block;
  }
  .btn-demo:hover { background: #52edc4; }

  /* ── FORM ── */
  .contact-form-wrap {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: var(--space-8) var(--container-padding-x);
  }

  .form-header { margin-bottom: 36px; }
  .form-header h2 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.5px;
    margin-bottom: 8px;
  }
  .form-header p { font-size: 14px; color: var(--text-muted); font-weight: 300; }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .form-field { display: flex; flex-direction: column; gap: 7px; }
  .form-field.full { grid-column: 1 / -1; }

  label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-faint);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  input, select, textarea {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: var(--text);
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
  }

  input::placeholder, textarea::placeholder { color: var(--text-faint); }
  select { cursor: pointer; }
  select option { background: var(--bg2); }

  input:focus, select:focus, textarea:focus {
    border-color: var(--accent-border);
    background: rgba(17, 23, 32, 0.8);
  }

  textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
  }

  .form-divider { height: 1px; background: var(--border); margin: 8px 0 20px; grid-column: 1 / -1; }

  .form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    gap: 20px;
  }

  .form-note {
    font-size: 12px;
    color: var(--text-faint);
    line-height: 1.5;
    font-weight: 300;
    max-width: 280px;
  }

  .btn-submit {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    padding: 13px 32px;
    background: var(--accent);
    color: var(--color-accent-contrast);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .btn-submit:hover { background: #52edc4; }

  /* Success state */
  .form-success {
    display: none;
    text-align: center;
    padding: var(--space-8) var(--space-6);
  }
  .form-success.show { display: block; }
  .success-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  .success-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .form-success h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
    letter-spacing: -0.4px;
  }
  .form-success p { font-size: 14px; color: var(--text-muted); font-weight: 300; line-height: 1.65; }

  /* ── FOOTER ── */
  footer { border-top: 1px solid var(--border); position: relative; z-index: 1; }
  .footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-5) var(--container-padding-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-copy { font-size: 12px; color: var(--text-faint); }
  .footer-links { display: flex; gap: 22px; }
  .footer-links a { font-size: 12px; color: var(--text-faint); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--text-muted); }

/* ===== seo-agentics-pricing.html ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    overflow-x: hidden;
  }

  #glow-canvas {
    position: fixed;
    inset: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    position: relative;
    z-index: 1;
  }

  section { position: relative; z-index: 1; }

  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up-delay-1 { transition-delay: 0.1s; }
  .fade-up-delay-2 { transition-delay: 0.2s; }
  .fade-up-delay-3 { transition-delay: 0.3s; }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s, backdrop-filter 0.3s;
  }
  nav.scrolled {
    background: rgba(7, 10, 14, 0.88);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--border);
  }
  .nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--color-text);
    letter-spacing: -0.3px;
    text-decoration: none;
  }
  .logo-mark {
    width: 30px; height: 30px;
    border-radius: 7px;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
  }
  .logo-mark svg { width: 16px; height: 16px; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-size: 13.5px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-links a.active { color: var(--accent); }
  .nav-actions { display: flex; align-items: center; gap: 10px; }
  .btn-ghost {
    font-family: var(--font-body);
    font-size: 13px;
    padding: 8px 18px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 7px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: var(--text); border-color: var(--border-hover); }
  .btn-accent {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    background: var(--accent);
    color: var(--color-accent-contrast);
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
  }
  .btn-accent:hover { background: #52edc4; }

  /* ── SHARED ── */
  .section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
  }
  .section-h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -1px;
    line-height: 1.07;
    margin-bottom: 16px;
  }
  .section-sub {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 520px;
  }

  /* ── HERO ── */
  .hero {
    padding: 160px 0 100px;
    border-bottom: 1px solid var(--border);
    text-align: center;
  }
  .hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-faint);
    margin-bottom: 28px;
  }
  .hero-breadcrumb a { color: var(--text-faint); text-decoration: none; transition: color 0.2s; }
  .hero-breadcrumb a:hover { color: var(--text-muted); }
  .hero-breadcrumb span { color: var(--accent); }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    padding: 5px 13px;
    border-radius: 100px;
    margin-bottom: 28px;
  }
  .badge-pulse {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2.4s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.8); }
  }
  .hero h1 {
    font-family: var(--font-display);
    font-size: 68px;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -2.5px;
    color: var(--color-text);
    margin-bottom: 24px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero h1 em { color: var(--accent); font-style: normal; }
  .hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 20px;
  }
  .hero-note {
    font-size: 13px;
    color: var(--text-faint);
    margin-bottom: 0;
    font-style: italic;
  }

  /* ── HONEST SECTION ── */
  .honest-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
  }
  .honest-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .honest-left h2 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.9px;
    line-height: 1.07;
    margin-bottom: 20px;
  }
  .honest-left h2 em { color: var(--accent); font-style: normal; }
  .honest-left p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 16px;
  }
  .honest-right { display: flex; flex-direction: column; gap: 14px; }
  .honest-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: border-color 0.2s;
  }
  .honest-card:hover { border-color: var(--accent-border); }
  .honest-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .honest-icon svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .honest-card h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.2px;
    margin-bottom: 5px;
  }
  .honest-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

  /* ── PRICING MODEL ── */
  .model-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
  }
  .model-header { margin-bottom: 64px; }
  .model-steps {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
  }
  .model-step {
    background: var(--bg);
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 0;
    transition: background 0.25s;
  }
  .model-step:hover { background: var(--bg2); }
  .model-step-num {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 0 40px;
    border-right: 1px solid var(--border);
  }
  .step-circle {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--accent-border);
    background: var(--accent-dim);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    font-family: var(--font-display);
  }
  .model-step-body {
    padding: 40px 40px;
    border-right: 1px solid var(--border);
  }
  .model-step-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.7;
    margin-bottom: 10px;
  }
  .model-step-body h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.4px;
    margin-bottom: 12px;
  }
  .model-step-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
  }
  .model-step-detail {
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }
  .detail-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 4px;
  }
  .detail-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.8px;
    line-height: 1;
  }
  .detail-value em { color: var(--accent); font-style: normal; }
  .detail-sub {
    font-size: 12px;
    color: var(--text-faint);
    line-height: 1.5;
    font-weight: 300;
    margin-top: 2px;
  }
  .detail-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    padding: 5px 12px;
    border-radius: 100px;
    width: fit-content;
  }

  /* ── VALUE SECTION ── */
  .value-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
  }
  .value-header { margin-bottom: 64px; }
  .value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
  }
  .value-card {
    background: var(--bg2);
    padding: 36px 30px;
    transition: background 0.25s;
  }
  .value-card:hover { background: var(--bg3); }
  .value-card-icon {
    width: 38px; height: 38px;
    border-radius: 9px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .value-card-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .value-card h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.3px;
    margin-bottom: 10px;
  }
  .value-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

  /* ── DRAFT CALLOUT ── */
  .draft-section { padding: 100px 0; border-bottom: 1px solid var(--border); }
  .draft-inner {
    background: var(--bg2);
    border: 1px solid var(--accent-border);
    border-radius: 16px;
    padding: 64px 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .draft-glow {
    position: absolute;
    bottom: -80px; left: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,225,181,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .draft-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
  }
  .draft-inner h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.8px;
    line-height: 1.07;
    margin-bottom: 18px;
  }
  .draft-inner h2 em { color: var(--accent); font-style: normal; }
  .draft-inner p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 14px;
  }
  .draft-inner p:last-child { margin-bottom: 0; }
  .draft-checklist { display: flex; flex-direction: column; gap: 14px; }
  .draft-check {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg);
    border-radius: 10px;
    border: 1px solid var(--border);
  }
  .dc-icon {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .dc-icon svg { width: 10px; height: 10px; stroke: var(--accent); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
  .draft-check-text h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 3px;
  }
  .draft-check-text p { font-size: 12px; color: var(--text-muted); line-height: 1.55; font-weight: 300; }
  .draft-stat {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }
  .draft-stat-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -2px;
    line-height: 1;
  }
  .draft-stat-label { font-size: 14px; color: var(--text-muted); font-weight: 300; line-height: 1.4; max-width: 200px; }

  /* ── FAQ ── */
  .faq-section { padding: 100px 0; border-bottom: 1px solid var(--border); }
  .faq-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
  }
  .faq-left { position: sticky; top: 90px; }
  .faq-left h2 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.9px;
    line-height: 1.07;
    margin-bottom: 16px;
  }
  .faq-left p { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
  .faq-list { display: flex; flex-direction: column; gap: 1px; }
  .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
  }
  .faq-item:first-child { border-top: 1px solid var(--border); }
  .faq-q {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.3px;
    margin-bottom: 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  .faq-q-icon {
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.2s, transform 0.3s;
  }
  .faq-q-icon svg { width: 10px; height: 10px; stroke: var(--text-faint); fill: none; stroke-width: 2; stroke-linecap: round; }
  .faq-item.open .faq-q-icon { border-color: var(--accent-border); transform: rotate(45deg); }
  .faq-item.open .faq-q-icon svg { stroke: var(--accent); }
  .faq-a {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    display: none;
  }
  .faq-item.open .faq-a { display: block; }

  /* ── CTA ── */
  .cta-section { padding: 120px 0; text-align: center; }
  .cta-section h2 {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -1.5px;
    margin-bottom: 18px;
  }
  .cta-section p { font-size: 17px; color: var(--text-muted); margin-bottom: 40px; font-weight: 300; max-width: 520px; margin-left: auto; margin-right: auto; }
  .cta-row { display: flex; align-items: center; justify-content: center; gap: 12px; }
  .btn-cta {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    padding: 15px 38px;
    background: var(--accent);
    color: var(--color-accent-contrast);
    border: none;
    border-radius: 9px;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
  }
  .btn-cta:hover { background: #52edc4; }
  .btn-cta-ghost {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 15px 38px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .btn-cta-ghost:hover { color: var(--text); border-color: var(--border-hover); }

  /* ── FOOTER ── */
  footer { border-top: 1px solid var(--border); position: relative; z-index: 1; }
  .footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-5) var(--container-padding-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-copy { font-size: 12px; color: var(--text-faint); }
  .footer-links { display: flex; gap: 22px; }
  .footer-links a { font-size: 12px; color: var(--text-faint); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--text-muted); }

/* ===== seo-agentics-about (1).html ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    overflow-x: hidden;
  }

  #glow-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    position: relative;
    z-index: 1;
  }

  section { position: relative; z-index: 1; }

  .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
  .fade-up-delay-1 { transition-delay: 0.1s; }
  .fade-up-delay-2 { transition-delay: 0.2s; }
  .fade-up-delay-3 { transition-delay: 0.3s; }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, background 0.3s, backdrop-filter 0.3s;
  }
  nav.scrolled {
    background: rgba(7, 10, 14, 0.88);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--border);
  }
  .nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding-x);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--color-text);
    letter-spacing: -0.3px;
    text-decoration: none;
  }
  .logo-mark {
    width: 30px; height: 30px;
    border-radius: 7px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo-mark svg { width: 16px; height: 16px; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-size: 13.5px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }
  .nav-links a.active { color: var(--accent); }
  .nav-actions { display: flex; align-items: center; gap: 10px; }
  .btn-ghost {
    font-family: var(--font-body);
    font-size: 13px;
    padding: 8px 18px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 7px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: var(--text); border-color: var(--border-hover); }
  .btn-accent {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    background: var(--accent);
    color: var(--color-accent-contrast);
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
  }
  .btn-accent:hover { background: #52edc4; }

  /* ── SHARED ── */
  .section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
  }
  .section-h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -1px;
    line-height: 1.07;
    margin-bottom: 16px;
  }

  /* ── HERO ── */
  .hero {
    padding: 100px 0 100px;
    border-bottom: 1px solid var(--border);
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
  }
  .hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-faint);
    margin-bottom: 24px;
  }
  .hero-breadcrumb a { color: var(--text-faint); text-decoration: none; transition: color 0.2s; }
  .hero-breadcrumb a:hover { color: var(--text-muted); }
  .hero-breadcrumb span { color: var(--accent); }
  .hero h1 {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -2.5px;
    color: var(--color-text);
    margin-bottom: 28px;
  }
  .hero h1 em { color: var(--accent); font-style: normal; }
  .hero-intro {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 36px;
    max-width: 520px;
  }
  .hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 8px;
  }
  .hero-stat {
    padding: 28px 32px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 0.2s;
  }
  .hero-stat:hover { border-color: var(--accent-border); }
  .hero-stat-num {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 6px;
  }
  .hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
  }

  /* ── STORY ── */
  .story-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
  }
  .story-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
  }
  .story-left { position: sticky; top: 90px; }
  .story-left h2 {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -1px;
    line-height: 1.07;
    margin-bottom: 20px;
  }
  .story-left p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
  }
  .story-right { display: flex; flex-direction: column; gap: 40px; }
  .story-block { border-left: 2px solid var(--border); padding-left: 32px; transition: border-color 0.3s; }
  .story-block:hover { border-left-color: var(--accent); }
  .story-block-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.7;
    margin-bottom: 10px;
  }
  .story-block h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.3px;
    margin-bottom: 12px;
  }
  .story-block p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
  }

  /* ── FOUNDER ── */
  .founder-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
  }
  .founder-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
  }
  .founder-left { position: sticky; top: 90px; }
  .founder-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--bg3);
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -1px;
  }
  .founder-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.3px;
    margin-bottom: 4px;
  }
  .founder-title {
    font-size: 13px;
    color: var(--text-faint);
    margin-bottom: 20px;
  }
  .founder-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
  .founder-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    color: var(--accent);
  }
  .founder-tag.neutral {
    background: rgba(255,255,255,0.04);
    border-color: var(--border);
    color: var(--text-faint);
  }
  .founder-left > p {
    font-size: 13px;
    color: var(--text-faint);
    line-height: 1.65;
    font-weight: 300;
  }
  .founder-right { display: flex; flex-direction: column; gap: 32px; }
  .founder-quote {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.6px;
    line-height: 1.3;
    padding: 36px 40px;
    background: var(--bg2);
    border: 1px solid var(--accent-border);
    border-radius: 14px;
    position: relative;
  }
  .founder-quote em { color: var(--accent); font-style: normal; }
  .founder-quote::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 80px;
    line-height: 0.5;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: 28px; left: 32px;
  }
  .founder-body { display: flex; flex-direction: column; gap: 18px; }
  .founder-body p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    font-weight: 300;
  }
  .founder-body p strong { color: var(--text); font-weight: 500; }
  .founder-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
  }
  .founder-logo-label {
    font-size: 10px;
    color: var(--text-faint);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-right: 4px;
  }
  .founder-logo-pill {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text-muted);
    letter-spacing: 0.02em;
  }

  /* ── BELIEFS ── */
  .beliefs-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
  }
  .beliefs-header { margin-bottom: 64px; }
  .beliefs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
  }
  .belief-card {
    background: var(--bg2);
    padding: 36px 32px;
    transition: background 0.25s;
  }
  .belief-card:hover { background: var(--bg3); }
  .belief-num {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.08em;
    opacity: 0.5;
    margin-bottom: 20px;
  }
  .belief-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.3px;
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .belief-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ── HOW WE WORK ── */
  .about-how-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
  }
  .about-how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 56px;
    align-items: start;
  }
  .about-how-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px 32px;
    transition: border-color 0.25s;
  }
  .about-how-card:hover { border-color: var(--accent-border); }
  .about-how-icon {
    width: 40px; height: 40px;
    border-radius: 9px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .about-how-icon svg { width: 19px; height: 19px; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .about-how-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.3px;
    margin-bottom: 12px;
  }
  .about-how-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ── DEPLOYMENT CALLOUT ── */
  .deploy-section { padding: 100px 0; border-bottom: 1px solid var(--border); }
  .deploy-inner {
    background: var(--bg2);
    border: 1px solid var(--accent-border);
    border-radius: 16px;
    padding: 64px 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .deploy-glow {
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,225,181,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .deploy-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
  }
  .deploy-inner h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.8px;
    line-height: 1.07;
    margin-bottom: 18px;
  }
  .deploy-inner h2 em { color: var(--accent); font-style: normal; }
  .deploy-inner p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 14px;
  }
  .deploy-points { display: flex; flex-direction: column; gap: 16px; }
  .deploy-point { display: flex; gap: 14px; align-items: flex-start; }
  .dp-check {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .dp-check svg { width: 10px; height: 10px; stroke: var(--accent); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
  .deploy-point p { font-size: 14px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }
  .deploy-point strong { color: var(--text); font-weight: 500; }

  /* ── CTA ── */
  .cta-section { padding: 120px 0; text-align: center; }
  .cta-section h2 {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -1.5px;
    margin-bottom: 18px;
  }
  .cta-section p { font-size: 17px; color: var(--text-muted); margin-bottom: 40px; font-weight: 300; }
  .cta-row { display: flex; align-items: center; justify-content: center; gap: 12px; }
  .btn-cta {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    padding: 15px 38px;
    background: var(--accent);
    color: var(--color-accent-contrast);
    border: none;
    border-radius: 9px;
    cursor: pointer;
    transition: background 0.2s;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
  }
  .btn-cta:hover { background: #52edc4; }
  .btn-cta-ghost {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 15px 38px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .btn-cta-ghost:hover { color: var(--text); border-color: var(--border-hover); }

  /* ── FOOTER ── */
  footer { border-top: 1px solid var(--border); position: relative; z-index: 1; }
  .footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-5) var(--container-padding-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-copy { font-size: 12px; color: var(--text-faint); }
  .footer-links { display: flex; gap: 22px; }
  .footer-links a { font-size: 12px; color: var(--text-faint); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--text-muted); }

/* ----- Skip link (site integration) ----- */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 10000;
  padding: var(--space-2) var(--space-4);
  background: var(--bg2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  text-decoration: none;
}
.skip-link:focus {
  left: var(--space-4);
  top: var(--space-4);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ----- Hero / top section layout restore -----
   About export ends the merge with a two-column .hero-inner grid that was
   overriding every page. Scoped rules below match the reference: centered
   stack for home, content-engine, agents; centered block hero for pricing. */
/* Home: long hero (video). Centering with align-items:center reflows when fonts load — use flex-start. */
body[data-page="home"] .hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
body[data-page="content-engine"] .hero,
body[data-page="agents"] .hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
body[data-page="home"] .hero-inner,
body[data-page="content-engine"] .hero-inner,
body[data-page="agents"] .hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  grid-template-columns: unset;
  gap: 0;
}
body[data-page="home"] .hero h1 {
  font-size: clamp(2.25rem, 8vw, 76px);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 26px;
}
body[data-page="content-engine"] .hero h1,
body[data-page="agents"] .hero h1 {
  font-size: clamp(2.25rem, 7.5vw, 72px);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}
body[data-page="home"] .hero-sub {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
body[data-page="content-engine"] .hero-sub,
body[data-page="agents"] .hero-sub {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
body[data-page="pricing"] .hero {
  min-height: unset;
  display: block;
  padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
body[data-page="pricing"] .hero h1 {
  font-size: clamp(2rem, 7vw, 68px);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}
body[data-page="pricing"] .hero-sub {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Pricing: centred stack (global `.hero { text-align: center }` alone can leave
   mixed alignment; flex column + width ties breadcrumb, badge, and copy.) */
body[data-page="pricing"] .hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}
body[data-page="pricing"] .hero-note {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* About: two-column hero — left-aligned; breadcrumb above grid so H1 tops align with stat cards */
body[data-page="about"] .hero {
  text-align: left;
  padding-top: var(--hero-padding-top);
  padding-bottom: var(--hero-padding-bottom);
  border-bottom: 1px solid var(--border);
}
body[data-page="about"] .hero .container {
  text-align: left;
}
body[data-page="about"] .hero-copy,
body[data-page="about"] .hero-copy h1,
body[data-page="about"] .hero-intro {
  text-align: left;
}
body[data-page="about"] .hero-breadcrumb {
  margin-bottom: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-faint);
  width: 100%;
}
body[data-page="about"] .hero-breadcrumb a {
  color: var(--text-muted);
}
body[data-page="about"] .hero-breadcrumb a:hover {
  color: var(--text);
}
body[data-page="about"] .hero-breadcrumb .hero-breadcrumb-sep {
  color: var(--text-faint);
  font-weight: 400;
}
body[data-page="about"] .hero-breadcrumb .hero-breadcrumb-current {
  color: var(--accent);
  font-weight: 500;
}
body[data-page="about"] .hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}
@media (min-width: 901px) {
  body[data-page="about"] .hero-inner {
    align-items: end;
  }
}
body[data-page="about"] .hero-copy {
  min-width: 0;
}
body[data-page="about"] .hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--color-text);
  margin-top: 0;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
body[data-page="about"] .hero h1 em {
  color: var(--accent);
  font-style: normal;
  display: inline-block;
}
body[data-page="about"] .hero-intro {
  font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
  line-height: 1.75;
  font-weight: 400;
  max-width: 38rem;
  margin-bottom: 1.25rem;
}
body[data-page="about"] .hero-intro--tight {
  margin-bottom: 0;
}
body[data-page="about"] .hero-right {
  min-width: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(18px, 2.5vw, 24px);
  text-align: left;
}
body[data-page="about"] .hero-stat {
  padding: clamp(1.25rem, 2vw, 1.75rem) clamp(1.25rem, 2vw, 2rem);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
  text-align: left;
}
body[data-page="about"] .hero-stat:hover {
  border-color: var(--accent-border);
}
body[data-page="about"] .hero-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-align: left;
}
body[data-page="about"] .hero-stat-label {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
  font-weight: 400;
  text-align: left;
}

/* About — desktop nav: links centered between logo and CTAs */
@media (min-width: 901px) {
  body[data-page="about"] .nav-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(12px, 2vw, 28px);
  }
  body[data-page="about"] .nav-drawer {
    display: contents;
  }
  body[data-page="about"] .logo {
    grid-column: 1;
    justify-self: start;
  }
  body[data-page="about"] .nav-links {
    grid-column: 2;
    justify-self: center;
  }
  body[data-page="about"] .nav-actions {
    grid-column: 3;
    justify-self: end;
    flex-shrink: 0;
  }
}

/* Contact: same top offset below nav as every other page */
body[data-page="contact"] .page {
  padding-top: var(--hero-padding-top);
  padding-bottom: var(--hero-padding-bottom);
}

/* ----- Navigation: mobile drawer + desktop inline ----- */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
  z-index: 220;
  transition: border-color 0.2s, background 0.2s;
}
.nav-toggle:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.04);
}
.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}
.nav-toggle-bars span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-muted);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
#navbar.nav-open .nav-toggle-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
#navbar.nav-open .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}
#navbar.nav-open .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 901px) {
  .nav-toggle {
    display: none !important;
  }
  /* Drawer chrome (mobile-only logo row) must not participate in desktop layout */
  .nav-drawer-head {
    display: none !important;
  }
  .nav-drawer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 36px;
    min-width: 0;
  }
}

@media (max-width: 900px) {
  html {
    -webkit-text-size-adjust: 100%;
  }
  body[data-page="about"] .nav-inner {
    display: flex;
  }
  body[data-page="about"] .nav-drawer {
    display: flex !important;
  }
  .nav-inner {
    height: auto !important;
    min-height: 56px;
    padding: 10px 16px !important;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
  }
  .nav-toggle {
    display: flex !important;
  }
  .logo {
    flex-shrink: 1;
    min-width: 0;
    font-size: 15px;
  }
  .nav-drawer {
    position: fixed;
    inset: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    z-index: 180;
    box-sizing: border-box;
    padding: max(1rem, env(safe-area-inset-top, 0px)) max(1.25rem, env(safe-area-inset-right, 0px))
      max(1.25rem, env(safe-area-inset-bottom, 0px)) max(1.25rem, env(safe-area-inset-left, 0px));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: rgba(7, 10, 14, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s;
  }
  #navbar.nav-open .nav-drawer {
    transform: translateX(0);
    visibility: visible;
  }
  .nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    padding-bottom: 1.25rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-drawer-head .nav-drawer-logo {
    font-size: 17px;
    text-decoration: none;
    color: var(--color-text);
  }
  .nav-drawer-head .nav-drawer-logo:hover {
    color: var(--text);
  }
  .nav-links {
    flex: 1;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0 !important;
    width: 100%;
    padding-top: 0.25rem;
  }
  .nav-links li {
    border-bottom: 1px solid var(--border);
  }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
  }
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }
  .nav-actions .btn-ghost,
  .nav-actions .btn-accent {
    width: 100%;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 20px 16px !important;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .services-section,
  .how-section,
  .comparison-section,
  .diff-section,
  .testimonial-section,
  .pricing-section,
  .cta-section,
  .layers-section,
  .workflow-section,
  .auth-section,
  .what-section,
  .library-section,
  .output-section,
  .method-section,
  .standalone-section,
  .honest-section,
  .model-section,
  .value-section,
  .draft-section,
  .faq-section,
  .story-section,
  .beliefs-section,
  .about-how-section,
  .deploy-section,
  .founder-section,
  .page {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .services-section,
  .how-section,
  .comparison-section,
  .diff-section,
  .testimonial-section,
  .pricing-section,
  .cta-section,
  .layers-section,
  .workflow-section,
  .auth-section,
  .what-section,
  .library-section,
  .output-section,
  .method-section,
  .standalone-section,
  .honest-section,
  .model-section,
  .value-section,
  .draft-section,
  .faq-section,
  .story-section,
  .beliefs-section,
  .about-how-section,
  .deploy-section,
  .founder-section {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .section-h2 {
    font-size: clamp(1.75rem, 6vw, 2.25rem) !important;
  }
  .cta-section h2 {
    font-size: clamp(1.75rem, 7vw, 2.5rem) !important;
  }

  .services-grid,
  .diff-grid {
    grid-template-columns: 1fr !important;
  }
  .how-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .dash-mock {
    position: static !important;
    top: auto !important;
  }

  .comparison-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-left: -4px;
    margin-right: -4px;
  }
  .ct-header,
  .ct-row {
    min-width: 520px;
  }

  .pricing-card {
    flex-direction: column !important;
    text-align: center;
    align-items: center !important;
    gap: 24px !important;
    padding: 28px 20px !important;
  }
  .pricing-right {
    text-align: center !important;
  }

  .hero-actions,
  .cta-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px !important;
  }
  .btn-cta,
  .btn-cta-ghost,
  .btn-hero,
  .btn-how {
    max-width: 100%;
  }

  body[data-page="home"] .hero,
  body[data-page="content-engine"] .hero,
  body[data-page="agents"] .hero {
    min-height: auto !important;
    padding-top: var(--hero-padding-top-sm) !important;
    padding-bottom: var(--hero-padding-bottom-sm) !important;
  }
  body[data-page="pricing"] .hero {
    padding-top: var(--hero-padding-top-sm) !important;
    padding-bottom: var(--hero-padding-bottom-sm) !important;
  }

  .layer-row {
    grid-template-columns: 1fr !important;
    padding: 28px 20px !important;
  }
  .layer-body {
    border-left: none !important;
    padding-left: 0 !important;
    margin-top: 12px;
  }
  .layer-title-col {
    padding-right: 0 !important;
  }

  .workflow-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .auth-inner {
    grid-template-columns: 1fr !important;
    padding: 40px 24px !important;
    gap: 40px !important;
  }

  .how-step {
    grid-template-columns: 1fr !important;
    padding: 24px 0 !important;
  }
  .how-step-num {
    padding: 20px 0 0 !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    justify-content: flex-start !important;
  }
  .how-step-body,
  .how-step-detail {
    border-right: none !important;
    padding: 24px 16px !important;
  }

  .agent-grid,
  .output-grid,
  .value-grid,
  .beliefs-grid {
    grid-template-columns: 1fr !important;
  }
  .cat-tabs {
    gap: 6px !important;
  }

  .page-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .contact-left {
    position: static !important;
    top: auto !important;
  }
  .contact-form-wrap {
    padding: 32px 20px !important;
  }
  .form-grid {
    grid-template-columns: 1fr !important;
  }

  .model-step {
    grid-template-columns: 1fr !important;
  }
  .model-step-num,
  .model-step-body,
  .model-step-detail {
    border-right: none !important;
    padding: 24px 16px !important;
  }
  .model-step-num {
    padding-top: 20px !important;
    border-bottom: 1px solid var(--border);
  }

  .honest-inner,
  .draft-inner,
  .faq-inner,
  .story-inner,
  .founder-inner,
  .deploy-inner,
  .standalone-inner,
  .method-inner,
  .what-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .faq-left {
    position: static !important;
  }
  .library-count {
    flex-wrap: wrap;
  }
  .library-num {
    font-size: clamp(2.5rem, 12vw, 4rem) !important;
  }

  body[data-page="about"] .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    align-items: start !important;
  }
  body[data-page="about"] .hero {
    padding-top: var(--hero-padding-top-sm) !important;
    padding-bottom: var(--hero-padding-bottom-sm) !important;
  }
  body[data-page="about"] .hero .container,
  body[data-page="about"] .hero-copy,
  body[data-page="about"] .hero-copy h1,
  body[data-page="about"] .hero-intro,
  body[data-page="about"] .hero-breadcrumb {
    text-align: center !important;
    justify-content: center;
  }
  body[data-page="about"] .hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.75rem) !important;
  }

  /* Contact & forms */
  body[data-page="contact"] .page {
    padding-top: var(--hero-padding-top-sm) !important;
    padding-bottom: var(--hero-padding-bottom-sm) !important;
  }
  .contact-left h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
    letter-spacing: -0.04em !important;
  }
  .form-footer {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
  }
  .btn-submit {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
  .form-note {
    max-width: none !important;
  }

  /* About: sticky sidebars stack better on narrow viewports */
  .story-left,
  .founder-left {
    position: static !important;
    top: auto !important;
  }
  .story-block {
    padding-left: 20px !important;
  }
  .honest-left h2,
  .what-left h2 {
    font-size: clamp(1.5rem, 5.5vw, 2rem) !important;
  }
  .founder-quote {
    padding: 28px 24px !important;
    font-size: clamp(1.15rem, 4vw, 1.5rem) !important;
  }

  .about-how-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    margin-top: 40px !important;
  }

  /* Agent category tabs: horizontal scroll */
  .cat-tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    gap: 8px !important;
    padding-bottom: 8px;
    margin-left: -2px;
    margin-right: -2px;
    padding-left: 2px;
    scrollbar-width: none;
  }
  .cat-tabs::-webkit-scrollbar {
    display: none;
  }
  body[data-page="agents"] .cat-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  body[data-page="agents"] .agent-card {
    padding: 18px 16px !important;
  }
  body[data-page="agents"] .agent-card-top {
    align-items: flex-start;
  }
  body[data-page="agents"] .agent-name,
  body[data-page="agents"] .agent-desc {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  body[data-page="agents"] .library-header,
  body[data-page="agents"] .library-section .section-sub,
  body[data-page="agents"] .library-footer {
    text-align: left;
  }
  body[data-page="agents"] .library-count {
    justify-content: flex-start;
  }

  /* Video chrome & thumbnail */
  .video-chrome {
    flex-wrap: wrap;
    align-items: center;
  }
  .chrome-label {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .thumb-grid {
    grid-template-columns: minmax(0, 92px) minmax(0, 1fr) !important;
  }
  .thumb-sidebar {
    padding: 12px 8px !important;
  }
  .thumb-main {
    padding: 14px 12px !important;
    min-width: 0;
  }

  /* Video modal: keep close control in view */
  .modal-inner {
    width: calc(100% - 24px);
    max-width: 1000px;
    padding-top: 40px;
  }
  .modal-close {
    top: 0 !important;
    right: 0 !important;
  }

  /* Home dashboard mock */
  .dash-body {
    flex-direction: column;
  }
  .dash-sidebar {
    width: 100% !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
    padding: 10px 8px !important;
  }
  .dash-nav-item {
    flex: 1 1 auto;
    justify-content: center;
    font-size: 10px;
    padding: 6px 8px !important;
    min-width: 0;
  }
  .dash-main {
    min-width: 0;
  }

  /* Testimonial */
  .testimonial-section blockquote {
    font-size: clamp(1.05rem, 4vw, 1.35rem) !important;
    letter-spacing: -0.02em !important;
  }
  .testimonial-section .quote-mark {
    font-size: clamp(2.25rem, 12vw, 4rem) !important;
  }

  .pricing-value {
    white-space: normal !important;
  }

  /* Ticker fade masks — narrower on small screens */
  .hero-ticker-wrap::before,
  .hero-ticker-wrap::after {
    width: 48px !important;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .beliefs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 8px 12px !important;
  }
  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .hero-trust {
    flex-direction: column;
    gap: 12px !important;
  }

  .thumb-grid {
    grid-template-columns: 1fr !important;
  }
  .thumb-sidebar {
    display: none;
  }
  .thumb-main {
    padding: 16px 14px !important;
  }

  .service-card {
    padding: 28px 20px !important;
  }

  .btn-hero,
  .btn-how,
  .btn-cta,
  .btn-cta-ghost {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }

  .hero-actions,
  .cta-row {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  body[data-page="agents"] .hero h1 {
    font-size: clamp(1.7rem, 9vw, 2.3rem) !important;
    letter-spacing: -0.04em !important;
  }
  body[data-page="agents"] .cat-tab {
    font-size: 11px;
    padding: 6px 12px;
  }
  body[data-page="agents"] .agent-name {
    font-size: 12px;
  }
  body[data-page="agents"] .agent-desc {
    font-size: 11px;
  }
  body[data-page="agents"] .library-num-label {
    font-size: 16px !important;
  }

  .deploy-inner,
  .draft-inner,
  .auth-inner,
  .method-inner {
    padding: 32px 20px !important;
  }
}

/* Inline YouTube in hero — later duplicate .hero-video-wrap blocks reset cursor: pointer */
.hero-video-wrap:has(.video-embed) {
  cursor: default;
}

/* Agents mobile hardening: force fluid layout if any merged desktop rule leaks through */
@media (max-width: 900px) {
  body[data-page="agents"] {
    overflow-x: hidden;
  }
  body[data-page="agents"] .container,
  body[data-page="agents"] .hero-inner,
  body[data-page="agents"] .what-inner,
  body[data-page="agents"] .how-steps,
  body[data-page="agents"] .library-header,
  body[data-page="agents"] .agent-grid,
  body[data-page="agents"] .output-grid,
  body[data-page="agents"] .method-inner,
  body[data-page="agents"] .standalone-inner {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  body[data-page="agents"] .what-inner,
  body[data-page="agents"] .standalone-inner,
  body[data-page="agents"] .method-inner {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  body[data-page="agents"] .how-step {
    grid-template-columns: 1fr !important;
  }
  body[data-page="agents"] .how-step-num,
  body[data-page="agents"] .how-step-body,
  body[data-page="agents"] .how-step-detail {
    border-right: none !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
