@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Manrope:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #06060a;
  --bg2: #0d0d16;
  --bg3: #131320;
  --bg4: #1a1a2e;
  --border: rgba(255,255,255,0.06);
  --border2: rgba(255,255,255,0.12);
  --border3: rgba(255,255,255,0.2);
  --text: #f0f0f8;
  --text2: rgba(240,240,248,0.58);
  --text3: rgba(240,240,248,0.3);
  --text4: rgba(240,240,248,0.14);
  --cyan: #00d4ff;
  --cyan2: #00a8cc;
  --cyan-dim: rgba(0,212,255,0.1);
  --cyan-glow: 0 0 40px rgba(0,212,255,0.15);
  --purple: #9b8dff;
  --purple-dim: rgba(155,141,255,0.1);
  --amber: #f59e0b;
  --red: #ef4444;
  --green: #22c55e;
  --fd: 'Syne', sans-serif;
  --fb: 'Manrope', sans-serif;
  --fm: 'JetBrains Mono', monospace;
  --ease: cubic-bezier(0.16,1,0.3,1);
  --ease2: cubic-bezier(0.4,0,0.2,1);
  --r: 10px;
  --rl: 16px;
  --rxl: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 130px; }
body { background: var(--bg); color: var(--text); font-family: var(--fb); font-size: 16px; line-height: 1.65; font-weight: 400; overflow-x: hidden; -webkit-tap-highlight-color: transparent; -webkit-text-size-adjust: 100%; }
@media (hover: hover) and (pointer: fine) { body { cursor: none; } }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: rgba(0,212,255,0.2); color: var(--cyan); }

/* === CUSTOM CURSOR — desktop only === */
#mc-cursor, #mc-ring { display: none; }
@media (hover: hover) and (pointer: fine) {
  #mc-cursor { display: block; position: fixed; width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); mix-blend-mode: screen; will-change: transform; }
  #mc-ring { display: block; position: fixed; width: 32px; height: 32px; border: 1px solid rgba(0,212,255,0.35); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); will-change: transform; }
  .hovering #mc-cursor { width: 18px; height: 18px; }
  .hovering #mc-ring { width: 48px; height: 48px; border-color: rgba(0,212,255,0.15); }
}

/* === NOISE OVERLAY === */
body::before { content:''; position:fixed; inset:0; background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E"); opacity: 0.028; pointer-events: none; z-index: 9995; }

/* === NAV === */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 60px; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; background: rgba(6,6,10,0.65); -webkit-backdrop-filter: blur(24px) saturate(1.2); backdrop-filter: blur(24px) saturate(1.2); border-bottom: 1px solid var(--border); transition: background .3s; }
.nav-logo { font-family: var(--fd); font-size: 18px; font-weight: 700; color: var(--text); letter-spacing: -0.02em; display: flex; align-items: center; gap: 8px; }
.nav-logo .dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; display: inline-block; animation: pulse-dot 2s ease-in-out infinite; }
.logo-audit { color: var(--cyan); }
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 0 rgba(0,212,255,0.4); } 50% { box-shadow: 0 0 0 6px rgba(0,212,255,0); } }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { font-size: 14px; color: var(--text2); padding: 6px 12px; border-radius: 6px; transition: color .2s, background .2s; font-weight: 400; }
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-cta { font-family: var(--fd); font-size: 13px; font-weight: 600; color: var(--bg); background: var(--cyan); padding: 8px 20px; border-radius: 6px; transition: all .2s var(--ease); letter-spacing: 0.01em; }
.nav-cta:hover { background: #33dcff; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,212,255,0.3); }
.nav-hamburger { display: none; background: none; border: 1px solid var(--border2); border-radius: 6px; padding: 7px 11px; cursor: pointer; color: var(--text); font-size: 16px; line-height: 1; }

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--fd); font-weight: 600; font-size: 15px; padding: 13px 28px; border-radius: var(--r); cursor: pointer; transition: all .22s var(--ease); text-decoration: none; letter-spacing: 0.01em; border: none; }
.btn-primary { background: var(--cyan); color: var(--bg); }
.btn-primary:hover { background: #33dcff; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,212,255,0.35); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border2); }
.btn-outline:hover { border-color: var(--border3); background: rgba(255,255,255,0.04); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text2); padding: 13px 20px; }
.btn-ghost:hover { color: var(--text); }
.btn-sm { font-size: 13px; padding: 9px 18px; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4,h5,h6 { font-family: var(--fd); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; }
.display-xl { font-size: clamp(48px, 6.5vw, 88px); font-weight: 800; line-height: 1.0; letter-spacing: -0.04em; }
.display-lg { font-size: clamp(36px, 4.5vw, 64px); font-weight: 700; line-height: 1.05; }
.display-md { font-size: clamp(28px, 3vw, 48px); font-weight: 700; }
.display-sm { font-size: clamp(22px, 2.5vw, 36px); font-weight: 700; }
.body-lg { font-size: 18px; line-height: 1.7; color: var(--text2); font-weight: 400; }
.body-md { font-size: 16px; line-height: 1.7; color: var(--text2); }
.body-sm { font-size: 14px; color: var(--text2); }
.mono { font-family: var(--fm); font-size: 13px; }
.eyebrow { font-family: var(--fm); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); font-weight: 500; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.eyebrow::before { content:''; width: 24px; height: 1px; background: var(--cyan); }
.gradient-text { background: linear-gradient(135deg, var(--text) 30%, var(--cyan) 70%, var(--purple) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.cyan-text { color: var(--cyan); }

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 48px; }
section { padding: 120px 0; }
.section-header { max-width: 680px; margin: 0 auto 72px; text-align: center; }

/* === CARDS === */
.card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--rl); padding: 32px; transition: all .3s var(--ease); }
.card:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: 0 24px 48px rgba(0,0,0,0.4); }
.card-glow:hover { box-shadow: 0 24px 48px rgba(0,0,0,0.4), var(--cyan-glow); border-color: rgba(0,212,255,0.2); }
.glass { background: rgba(13,13,22,0.6); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: var(--rl); }

/* === GRID === */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }

/* === HERO BACKGROUND handled inline on section === */

/* === HERO LAYOUT — mobile first === */
.hero-layout { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 1100px) {
  .hero-layout { grid-template-columns: 1fr 380px; gap: 64px; }
}

/* === HERO === */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding-top: 60px; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; display: block; pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; width: 100%; }
.hero-title { margin: 16px 0 24px; }
.hero-title .line { display: block; }
.hero-title .accent { color: var(--cyan); }
.hero-actions { display: flex; align-items: center; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.hero-visual { position: relative; z-index: 2; }
#hero-spline { width: 100%; height: 520px; border-radius: var(--rxl); overflow: hidden; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2); border-radius: 100px; padding: 6px 14px 6px 8px; font-size: 13px; font-family: var(--fm); color: var(--cyan); margin-bottom: 24px; }
.hero-badge .dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; animation: blink 1.4s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

/* === STATS BAR === */
.stats-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg2); padding: 0; }
.stats-inner { display: flex; }
.stat-item { flex: 1; padding: 36px 40px; border-right: 1px solid var(--border); text-align: center; position: relative; overflow: hidden; }
.stat-item:last-child { border-right: none; }
.stat-item::before { content:''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, var(--cyan-dim) 0%, transparent 70%); opacity: 0; transition: opacity .4s; }
.stat-item:hover::before { opacity: 1; }
.stat-num { font-family: var(--fd); font-size: 48px; font-weight: 800; color: var(--text); line-height: 1; display: block; }
.stat-num.cyan { color: var(--cyan); }
.stat-label { font-size: 14px; color: var(--text2); margin-top: 6px; display: block; }

/* === TICKER === */
.ticker { overflow: hidden; border-bottom: 1px solid var(--border); padding: 14px 0; background: var(--bg); }
.ticker-inner { display: flex; gap: 0; animation: ticker 40s linear infinite; width: max-content; }
.ticker-item { font-family: var(--fm); font-size: 12px; color: var(--text3); padding: 0 40px; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
.ticker-sep { color: var(--cyan); opacity: 0.4; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* === PROBLEM SECTION === */
.problem-section { background: var(--bg); }
.problem-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.problem-left h2 { margin-bottom: 24px; }
.problem-left p { color: var(--text2); margin-bottom: 32px; line-height: 1.8; }
.problem-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.problem-col { padding: 28px; background: var(--bg2); border-radius: var(--rl); border: 1px solid var(--border); }
.problem-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 18px; }
.problem-icon.red { background: rgba(239,68,68,0.12); color: var(--red); }
.problem-icon.amber { background: rgba(245,158,11,0.12); color: var(--amber); }
.problem-icon.green { background: rgba(34,197,94,0.12); color: var(--green); }
.problem-col h4 { font-family: var(--fd); font-size: 16px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.02em; }
.problem-col p { font-size: 14px; color: var(--text2); line-height: 1.6; }

/* === SERVICES === */
.services-section { background: var(--bg); }
.service-card { position: relative; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--rxl); padding: 36px; overflow: hidden; transition: all .35s var(--ease); cursor: pointer; }
.service-card::before { content:''; position: absolute; inset: 0; background: radial-gradient(ellipse at top left, var(--cyan-dim), transparent 60%); opacity: 0; transition: opacity .4s; }
.service-card:hover { border-color: rgba(0,212,255,0.2); transform: translateY(-4px); box-shadow: 0 32px 64px rgba(0,0,0,0.5); }
.service-card:hover::before { opacity: 1; }
.service-num { font-family: var(--fm); font-size: 11px; color: var(--cyan); letter-spacing: 0.1em; margin-bottom: 20px; }
.service-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--cyan-dim); border: 1px solid rgba(0,212,255,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--cyan); font-size: 20px; }
.service-card h3 { font-family: var(--fd); font-size: 22px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.03em; }
.service-card p { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 24px; }
.service-link { font-family: var(--fm); font-size: 12px; color: var(--cyan); letter-spacing: 0.06em; display: flex; align-items: center; gap: 8px; transition: gap .2s; }
.service-card:hover .service-link { gap: 14px; }
.service-price-tag { position: absolute; top: 28px; right: 28px; font-family: var(--fm); font-size: 11px; color: var(--text3); background: var(--bg3); border: 1px solid var(--border); padding: 3px 10px; border-radius: 20px; }

/* === HOW IT WORKS === */
.how-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 50%, var(--bg) 100%); }
.steps-timeline { position: relative; max-width: 900px; margin: 0 auto; }
.steps-timeline::before { content:''; position: absolute; left: 40px; top: 0; bottom: 0; width: 1px; background: linear-gradient(180deg, transparent, var(--border2) 20%, var(--border2) 80%, transparent); }
.step { display: grid; grid-template-columns: 80px 1fr; gap: 40px; align-items: start; margin-bottom: 64px; position: relative; }
.step:last-child { margin-bottom: 0; }
.step-num { width: 80px; height: 80px; border: 1px solid var(--border2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-size: 22px; font-weight: 700; color: var(--cyan); background: var(--bg); flex-shrink: 0; position: relative; transition: all .3s; }
.step-num::after { content:''; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid rgba(0,212,255,0.12); }
.step:hover .step-num { background: var(--cyan-dim); border-color: rgba(0,212,255,0.4); box-shadow: 0 0 32px rgba(0,212,255,0.2); }
.step-content h3 { font-family: var(--fd); font-size: 24px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.03em; padding-top: 24px; }
.step-content p { color: var(--text2); font-size: 15px; line-height: 1.75; max-width: 540px; }
.step-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag { font-family: var(--fm); font-size: 11px; color: var(--text3); background: var(--bg3); border: 1px solid var(--border); padding: 4px 10px; border-radius: 20px; letter-spacing: 0.04em; }
.tag.active { color: var(--cyan); background: var(--cyan-dim); border-color: rgba(0,212,255,0.2); }

/* === PLATFORMS === */
.platforms-section { background: var(--bg); }
.platform-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.platform-pill { display: flex; align-items: center; gap: 10px; padding: 14px 20px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); font-family: var(--fd); font-size: 14px; font-weight: 600; transition: all .2s var(--ease); cursor: pointer; }
.platform-pill:hover { border-color: var(--border2); background: var(--bg3); transform: translateY(-2px); }
.platform-pill .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-cyan { background: var(--cyan); }
.dot-purple { background: var(--purple); }
.dot-amber { background: var(--amber); }
.dot-green { background: var(--green); }
.dot-red { background: var(--red); }

/* === TESTIMONIALS === */
.testimonials-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--rl); padding: 32px; transition: all .3s var(--ease); }
.testi-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.testi-stars { color: var(--amber); margin-bottom: 16px; letter-spacing: 2px; font-size: 13px; }
.testi-text { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-text::before { content: '\201C'; font-size: 24px; color: var(--cyan); line-height: 0; vertical-align: -8px; margin-right: 2px; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--border); }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan-dim), var(--purple-dim)); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-size: 14px; font-weight: 700; color: var(--cyan); }
.testi-name { font-family: var(--fd); font-size: 14px; font-weight: 600; }
.testi-role { font-size: 12px; color: var(--text3); }

/* === PRICING === */
.pricing-section { background: var(--bg); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
.price-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--rxl); padding: 36px; position: relative; transition: all .3s var(--ease); }
.price-card.featured { background: linear-gradient(160deg, var(--bg3) 0%, var(--bg2) 100%); border-color: rgba(0,212,255,0.25); }
.price-card.featured::before { content:''; position:absolute; inset:0; border-radius: var(--rxl); background: radial-gradient(ellipse at 50% 0, rgba(0,212,255,0.06) 0%, transparent 60%); pointer-events:none; }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--cyan); color: var(--bg); font-family: var(--fm); font-size: 11px; font-weight: 500; padding: 4px 14px; border-radius: 20px; letter-spacing: 0.06em; white-space: nowrap; }
.price-tier { font-family: var(--fm); font-size: 11px; color: var(--text3); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.price-amount { font-family: var(--fd); font-size: 48px; font-weight: 800; color: var(--text); letter-spacing: -0.04em; line-height: 1; }
.price-amount span { font-size: 20px; color: var(--text2); font-weight: 400; vertical-align: super; font-family: var(--fb); }
.price-period { font-size: 13px; color: var(--text3); margin-bottom: 28px; margin-top: 4px; }
.price-desc { font-size: 14px; color: var(--text2); margin-bottom: 28px; line-height: 1.6; min-height: 56px; }
.price-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 10px; }
.price-features li { font-size: 13px; color: var(--text2); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.price-features li::before { content: '✓'; color: var(--cyan); font-family: var(--fm); font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.price-features li.dim { color: var(--text3); }
.price-features li.dim::before { color: var(--text4); }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 32px 64px rgba(0,0,0,0.5); }
.price-card.featured:hover { box-shadow: 0 32px 64px rgba(0,0,0,0.5), 0 0 60px rgba(0,212,255,0.1); }

/* === INSIGHTS === */
.insights-section { background: var(--bg); border-top: 1px solid var(--border); }
.article-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--rl); overflow: hidden; transition: all .3s var(--ease); display: flex; flex-direction: column; }
.article-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: 0 24px 48px rgba(0,0,0,0.4); }
.article-thumb { height: 180px; background: linear-gradient(135deg, var(--bg3), var(--bg4)); position: relative; overflow: hidden; }
.article-thumb-viz { position: absolute; inset: 0; }
.article-cat { font-family: var(--fm); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.cat-security { color: var(--red); }
.cat-dd { color: var(--amber); }
.cat-scale { color: var(--green); }
.cat-gdpr { color: var(--purple); }
.cat-guide { color: var(--cyan); }
.article-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.article-title { font-family: var(--fd); font-size: 18px; font-weight: 700; margin: 10px 0 12px; letter-spacing: -0.02em; line-height: 1.3; color: var(--text); }
.article-excerpt { font-size: 14px; color: var(--text2); line-height: 1.65; flex: 1; }
.article-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text3); }
.article-read { font-family: var(--fm); color: var(--cyan); font-size: 12px; }

/* === CTA SECTION === */
.cta-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p { color: var(--text2); margin-bottom: 40px; font-size: 17px; line-height: 1.7; }
.email-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.email-input { flex: 1; background: var(--bg); border: 1px solid var(--border2); border-radius: var(--r); padding: 13px 18px; color: var(--text); font-family: var(--fb); font-size: 16px; outline: none; transition: border-color .2s; }
.email-input:focus { border-color: rgba(0,212,255,0.4); box-shadow: 0 0 0 3px rgba(0,212,255,0.06); }
.email-input::placeholder { color: var(--text3); }

/* === FOOTER === */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 80px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.footer-brand p { font-size: 14px; color: var(--text2); line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col h5 { font-family: var(--fd); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text3); margin-bottom: 20px; }
.footer-col a { display: block; font-size: 14px; color: var(--text2); margin-bottom: 12px; transition: color .2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 32px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 13px; color: var(--text3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: var(--text3); transition: color .2s; }
.footer-legal a:hover { color: var(--text2); }

/* === PAGE HERO (inner pages) === */
.page-hero { padding: 140px 0 80px; background: var(--bg); position: relative; overflow: hidden; }
.page-hero::before { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:800px; height:400px; background: radial-gradient(ellipse at center top, rgba(0,212,255,0.04), transparent 70%); pointer-events:none; }
.page-hero-inner { max-width: 720px; }
.breadcrumb { font-family: var(--fm); font-size: 12px; color: var(--text3); margin-bottom: 24px; display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--text3); transition: color .2s; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb .sep { opacity: 0.4; }

/* === FEATURE SECTION === */
.features-section { background: var(--bg); }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 100px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-visual { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--rxl); height: 340px; position: relative; overflow: hidden; }
.feature-visual canvas { width: 100%; height: 100%; }
.feature-text h3 { font-family: var(--fd); font-size: 32px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.03em; }
.feature-text p { color: var(--text2); font-size: 16px; line-height: 1.75; margin-bottom: 24px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-list li { font-size: 14px; color: var(--text2); display: flex; gap: 10px; align-items: flex-start; }
.feature-list li::before { content:'→'; color: var(--cyan); font-family: var(--fm); flex-shrink: 0; }

/* === FAQ SECTION === */
.faq-section { background: var(--bg); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; cursor: pointer; background: none; border: none; color: var(--text); font-family: var(--fd); font-size: 18px; font-weight: 600; letter-spacing: -0.02em; transition: color .2s; }
.faq-q:hover { color: var(--cyan); }
.faq-chevron { width: 24px; height: 24px; border: 1px solid var(--border2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--text3); transition: all .3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-chevron { background: var(--cyan-dim); border-color: rgba(0,212,255,0.3); color: var(--cyan); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease), padding .3s; }
.faq-a-inner { padding: 0 0 28px; color: var(--text2); font-size: 15px; line-height: 1.8; max-width: 720px; }
.faq-item.open .faq-a { max-height: 400px; }

/* === SCROLL ANIMATIONS — fade only, no movement === */
.reveal { opacity: 1; }
.reveal.visible { opacity: 1; }
.reveal-delay-1 { }
.reveal-delay-2 { }
.reveal-delay-3 { }
.reveal-delay-4 { }

/* === GLOW BORDERS === */
@keyframes border-glow { 0%,100%{opacity:0.6} 50%{opacity:1} }
.glow-border { position: relative; }
.glow-border::after { content:''; position:absolute; inset:0; border-radius: inherit; background: linear-gradient(135deg, rgba(0,212,255,0.3), rgba(155,141,255,0.3)); filter: blur(1px); opacity: 0; transition: opacity .4s; pointer-events:none; }
.glow-border:hover::after { opacity: 1; }

/* === SCAN LINE === */
/* scan-line removed */

/* === GRADIENT DIVIDERS === */
.gradient-rule { width: 100%; height: 1px; background: linear-gradient(90deg, transparent 0%, var(--border2) 20%, var(--border2) 80%, transparent 100%); margin: 0; }
.gradient-rule-cyan { background: linear-gradient(90deg, transparent 0%, rgba(0,212,255,0.2) 30%, rgba(0,212,255,0.2) 70%, transparent 100%); }

/* === UTILITY === */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; } .mt-64 { margin-top: 64px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; } .mb-48 { margin-bottom: 48px; }
.flex { display: flex; } .flex-center { align-items: center; justify-content: center; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }
.w-full { width: 100%; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* === RESPONSIVE === */
/* ============================================================
   RESPONSIVE — 1024px tablet
   ============================================================ */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .container, .container-wide { padding: 0 24px; }

  /* grids */
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .platform-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .problem-cols { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse { direction: ltr; }
}

/* ============================================================
   RESPONSIVE — 768px mobile
   ============================================================ */
@media (max-width: 768px) {
  /* typography */
  .display-xl { font-size: clamp(36px, 10vw, 52px); }
  .display-lg { font-size: clamp(28px, 8vw, 40px); }
  .display-md { font-size: clamp(24px, 6vw, 32px); }

  section { padding: 64px 0; }

  /* nav — hide links, keep CTA, show hamburger */
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(6,6,10,0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 28px;
    gap: 4px;
    z-index: 99;
  }
  .nav-links.open a { padding: 12px 0; font-size: 16px; border-bottom: 1px solid var(--border); color: var(--text); }
  nav { padding: 0 20px; }

  /* stats bar */
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--border); padding: 24px 20px; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-num { font-size: 36px; }

  /* grids → single column */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .problem-cols { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .platform-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* steps */
  .steps-timeline::before { display: none; }
  .step { grid-template-columns: 56px 1fr; gap: 20px; }
  .step-num { width: 56px; height: 56px; font-size: 18px; }

  /* misc */
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse { direction: ltr; }
  .email-form { flex-direction: column; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .section-header { margin-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { justify-content: center; }

  /* pricing featured card — remove top offset */
  .price-card.featured { margin-top: 0; }
  .price-badge { top: -10px; }

  /* nav CTA smaller */
  .nav-cta { font-size: 12px; padding: 7px 14px; }
}

/* ============================================================
   TOUCH DEVICES — disable hover effects
   ============================================================ */
@media (hover: none), (pointer: coarse) {
  .btn:hover { transform: none; box-shadow: none; }
  .service-card:hover { transform: none; }
  .card:hover { transform: none; }
  .article-card:hover { transform: none; }
  .price-card:hover { transform: none; }
}

/* ============================================================
   RESPONSIVE — 480px small mobile
   ============================================================ */
@media (max-width: 480px) {
  .container, .container-wide { padding: 0 16px; }
  .display-xl { font-size: 34px; }
  .stat-item { flex: 1 1 100%; border-right: none; }
  .stat-item:nth-child(odd) { border-right: none; }
  .platform-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions a { width: 100%; text-align: center; justify-content: center; }
}


/* ============================================================
   LAYOUT UTILITIES — responsive grid classes
   Replaces inline grid styles that can't be overridden by @media
   ============================================================ */

/* 2-col equal — about page, delivery partner sections */
.layout-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* main + aside — contact, checklist, old service pages */
.layout-main-aside {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}

/* main + aside — hero inner (1fr 1fr with center align) */
.layout-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

/* 3-col equal — pricing, who-its-for */
.layout-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* hero credentials panel — fixed height on desktop, auto on mobile */
.hero-creds-panel {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 480px;
  box-sizing: border-box;
}

/* sticky sidebar */
.layout-sticky-aside {
  position: sticky;
  top: 80px;
}

@media (max-width: 1024px) {
  .layout-2col { gap: 48px; }
  .layout-main-aside { gap: 40px; }
  .layout-hero-inner { gap: 48px; }
}

@media (max-width: 768px) {
  .layout-2col,
  .layout-main-aside,
  .layout-hero-inner,
  .layout-3col,
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* hero visual full width on mobile */
  .hero-visual { width: 100%; }
  .hero-content { max-width: 100%; }

  .layout-sticky-aside { position: static; }

  .hero-creds-panel {
    height: auto;
    min-height: 0;
  }

  /* governance step override — tighten on mobile */
  .gov-step-grid {
    grid-template-columns: 48px 1fr !important;
    gap: 16px !important;
  }

  /* contact form grid */
  .contact-name-grid {
    grid-template-columns: 1fr !important;
  }

  /* process/about large heading inline font-size */
  .heading-lg-inline { font-size: clamp(22px, 6vw, 32px) !important; }

  /* about section padding */
  .section-pad-large { padding: 48px 0 !important; }
}

@media (max-width: 480px) {
  .layout-3col { grid-template-columns: 1fr !important; }
}
