/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #0a0f1e;
  color: #f0f6ff;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── TOKENS ── */
:root {
  --navy:    #0a0f1e;
  --navy2:   #111827;
  --navy3:   #1a2235;
  --navy4:   #1e293b;
  --accent:  #00e5c0;
  --accent2: #3b82f6;
  --accent3: #a78bfa;
  --accent4: #f59e0b;
  --accent5: #f43f5e;
  --accent6: #10b981;
  --muted:   #8899b0;
  --lighter: #b8cce0;
  --white:   #f0f6ff;
  --border:  rgba(255,255,255,0.08);
  --card:    rgba(255,255,255,0.04);
  --radius:  14px;
  --radius-lg: 18px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 { font-family: 'Syne', sans-serif; line-height: 1.1; }
h1 { font-size: clamp(36px, 5.5vw, 58px); font-weight: 800; letter-spacing: -1.5px; }
h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -1px; }
h3 { font-size: clamp(18px, 2.5vw, 22px); font-weight: 700; }
p   { line-height: 1.7; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
section { padding: 88px 0; }

/* ── UTILITIES ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,229,192,0.1); border: 1px solid rgba(0,229,192,0.25);
  border-radius: 100px; padding: 5px 15px;
  font-size: 11px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.35} }

.section-sub { color: var(--muted); font-size: 17px; line-height: 1.75; max-width: 560px; margin-top: 14px; }
.accent-text { color: var(--accent); }
.gradient-text {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #0a0f1e; border: none;
  border-radius: 10px; padding: 14px 28px;
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px;
  transition: all 0.2s; white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,229,192,0.28); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--lighter);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 14px 28px; font-family: 'Syne', sans-serif;
  font-weight: 600; font-size: 14px; transition: all 0.2s; white-space: nowrap;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); color: var(--white); }

.divider-section {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10,15,30,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 40px; max-width: 1160px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 14px; color: #0a0f1e;
  flex-shrink: 0;
}
.logo-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 19px; letter-spacing: -0.3px; }
.logo-name span { color: var(--accent); }
.nav-links { display: flex; gap: 34px; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--accent); color: #0a0f1e; border: none; border-radius: 8px;
  padding: 10px 22px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px;
  transition: opacity 0.2s; text-decoration: none; display: inline-block;
}
.nav-cta:hover { opacity: 0.85; }

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 9px; cursor: pointer; padding: 0;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.08); }
.nav-hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--lighter); border-radius: 2px;
  transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
  transform-origin: center;
}
/* Animated X state */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 190;
  pointer-events: none;
}
.mobile-menu.open { pointer-events: all; }

/* Backdrop */
.mobile-backdrop {
  position: absolute; inset: 0;
  background: rgba(5,8,18,0.7);
  backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.3s ease;
}
.mobile-menu.open .mobile-backdrop { opacity: 1; }

/* Slide-in panel */
.mobile-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(300px, 85vw);
  background: #111827;
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-menu.open .mobile-panel { transform: translateX(0); }

.mobile-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}
.mobile-close {
  width: 34px; height: 34px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; cursor: pointer; color: var(--lighter);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: background 0.2s;
}
.mobile-close:hover { background: rgba(255,255,255,0.1); }

.mobile-nav-links {
  display: flex; flex-direction: column;
  padding: 16px 0; flex: 1;
}
.mobile-nav-links a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  color: var(--lighter); font-size: 15px; font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: all 0.18s;
}
.mobile-nav-links a:last-child { border-bottom: none; }
.mobile-nav-links a:hover { background: rgba(255,255,255,0.04); color: var(--white); padding-left: 28px; }
.mobile-nav-links a .nav-icon { font-size: 17px; width: 22px; text-align: center; flex-shrink: 0; }
.mobile-nav-links a .nav-arrow { margin-left: auto; color: var(--muted); font-size: 13px; }

.mobile-panel-footer {
  padding: 20px 22px;
  border-top: 1px solid var(--border);
}
.mobile-panel-footer .btn-primary {
  width: 100%; justify-content: center;
  border-radius: 10px; padding: 15px;
  font-size: 15px;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero-section {
  position: relative; overflow: hidden;
  padding: 96px 0 80px;
}
.hero-bg-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none; opacity: 0.14;
}
.orb1 { width: 520px; height: 520px; background: var(--accent); top: -180px; right: 6%; }
.orb2 { width: 380px; height: 380px; background: var(--accent2); bottom: -60px; left: -8%; }

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

/* ── Hero Platform Preview Card ── */
.hero-visual { position: relative; }

.preview-card {
  background: var(--navy3);
  border: 1px solid rgba(0,229,192,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0,229,192,0.06), 0 24px 64px rgba(0,0,0,0.4);
}

/* browser chrome */
.preview-chrome {
  background: var(--navy2);
  border-bottom: 1px solid var(--border);
  padding: 11px 16px;
  display: flex; align-items: center; gap: 10px;
}
.chrome-dots { display: flex; gap: 6px; }
.chrome-dots span { width: 10px; height: 10px; border-radius: 50%; }
.chrome-dots span:nth-child(1) { background: #f43f5e; }
.chrome-dots span:nth-child(2) { background: #f59e0b; }
.chrome-dots span:nth-child(3) { background: #10b981; }
.chrome-bar {
  flex: 1; height: 22px; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 6px;
  display: flex; align-items: center; padding: 0 10px;
  font-size: 10px; color: var(--muted);
}
.preview-badge {
  font-size: 10px; font-weight: 700; padding: 3px 10px;
  border-radius: 100px; white-space: nowrap;
  background: rgba(245,158,11,0.15); color: #f59e0b;
  border: 1px solid rgba(245,158,11,0.3);
  animation: subtlePulse 3s ease-in-out infinite;
}
@keyframes subtlePulse { 0%,100%{opacity:1} 50%{opacity:0.65} }

/* preview body */
.preview-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }

/* journey timeline */
.journey-row {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 11px; padding: 14px 16px;
}
.journey-title {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px;
}
.journey-steps { display: flex; align-items: center; }
.j-step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; }
.j-node {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid;
  display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.j-node.done   { background: rgba(0,229,192,0.15);  border-color: var(--accent);  color: var(--accent); }
.j-node.active { background: rgba(59,130,246,0.15); border-color: var(--accent2); color: var(--accent2); box-shadow: 0 0 10px rgba(59,130,246,0.3); }
.j-node.next   { background: rgba(255,255,255,0.04); border-color: var(--border); color: var(--muted); }
.j-label { font-size: 9px; color: var(--muted); text-align: center; line-height: 1.3; }
.j-label.active-lbl { color: var(--accent2); font-weight: 600; }
.j-line { flex: 1; height: 1px; background: var(--border); max-width: 24px; }
.j-line.done-line { background: var(--accent); opacity: 0.4; }

/* milestone cards */
.milestone-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.milestone-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 14px;
}
.mc-label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 6px; }
.mc-value { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; line-height: 1; margin-bottom: 3px; }
.mc-sub { font-size: 10px; color: var(--muted); line-height: 1.4; }
.mc-bar { height: 3px; background: rgba(255,255,255,0.06); border-radius: 10px; margin-top: 8px; }
.mc-fill { height: 100%; border-radius: 10px; }

/* pilot CTA strip */
.preview-pilot {
  background: linear-gradient(135deg, rgba(0,229,192,0.08), rgba(59,130,246,0.08));
  border: 1px solid rgba(0,229,192,0.2); border-radius: 11px; padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.pp-heading { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.pp-sub { font-size: 11px; color: var(--muted); }
.pp-avatars { display: flex; flex-shrink: 0; }
.pp-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--navy3);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; margin-left: -8px; flex-shrink: 0;
}
.pp-avatar:first-child { margin-left: 0; }
.pp-join { font-size: 11px; font-weight: 700; color: var(--accent); margin-left: 8px; white-space: nowrap; }

/* ═══════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════ */
.trust-strip { padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.09em; white-space: nowrap; }
.trust-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-tag {
  font-size: 12px; font-weight: 600; padding: 5px 13px;
  border-radius: 100px; border: 1px solid var(--border); color: var(--lighter);
}

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 52px; }
.step-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 22px;
  position: relative; transition: border-color 0.2s;
}
.step-card:hover { border-color: rgba(0,229,192,0.3); }
.step-num { font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.step-icon-wrap { font-size: 24px; margin-bottom: 13px; line-height: 1; }
.step-title { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 9px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }
.step-arrow { position: absolute; right: -9px; top: 50%; transform: translateY(-50%); color: var(--border); font-size: 18px; z-index: 2; pointer-events: none; }

/* ═══════════════════════════════════════
   FEATURES
═══════════════════════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.feat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all 0.22s;
}
.feat-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(0,229,192,0.2); transform: translateY(-3px); }
.feat-card-roadmap {
  border-color: rgba(167,139,250,0.15);
  background: rgba(167,139,250,0.03);
}
.feat-card-roadmap:hover { border-color: rgba(167,139,250,0.3); background: rgba(167,139,250,0.06); transform: translateY(-3px); }
.roadmap-badge {
  font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px;
  background: rgba(167,139,250,0.12); color: var(--accent3);
  border: 1px solid rgba(167,139,250,0.25); white-space: nowrap; flex-shrink: 0;
}
.feat-icon {
  width: 42px; height: 42px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 18px;
}
.fi-t { background: rgba(0,229,192,0.12); }
.fi-b { background: rgba(59,130,246,0.12); }
.fi-p { background: rgba(167,139,250,0.12); }
.feat-title { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feat-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════
   BYOC CALLOUT
═══════════════════════════════════════ */
.byoc-banner {
  background: linear-gradient(135deg, rgba(0,229,192,0.07) 0%, rgba(59,130,246,0.07) 100%);
  border: 1px solid rgba(0,229,192,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px;
  margin-top: 56px;
}
.byoc-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(0,229,192,0.15); border: 1px solid rgba(0,229,192,0.35);
  border-radius: 100px; padding: 4px 13px;
  font-size: 11px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px;
}
.byoc-title { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.byoc-desc { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 580px; }
.byoc-points { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.byoc-point { display: flex; gap: 9px; font-size: 14px; color: var(--lighter); }
.byoc-point-dot { color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.byoc-cta { flex-shrink: 0; text-align: center; }
.byoc-cta-val { font-family: 'Syne', sans-serif; font-size: 38px; font-weight: 800; color: var(--accent); line-height: 1; }
.byoc-cta-lbl { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ═══════════════════════════════════════
   DOMAIN EXPLORER
═══════════════════════════════════════ */
.domain-explorer-section { padding: 88px 0; }
.domain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 11px; margin-bottom: 30px;
}
.domain-btn {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 10px;
  cursor: pointer; text-align: center;
  transition: all 0.18s; display: flex; flex-direction: column; align-items: center; gap: 7px;
  font-family: inherit;
}
.domain-btn:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.18); transform: translateY(-2px); }
.domain-btn.active { border-width: 1.5px; background: rgba(0,229,192,0.07); }
.d-icon { font-size: 22px; line-height: 1; }
.d-label { font-size: 12px; font-weight: 600; line-height: 1.3; color: var(--lighter); }
.d-count { font-size: 11px; color: var(--muted); }
.domain-btn.active .d-label { color: var(--white); }

.detail-panel {
  background: var(--navy3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.panel-hdr {
  padding: 26px 30px 22px; border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; gap: 16px;
}
.panel-icon-wrap {
  width: 50px; height: 50px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.panel-title { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 5px; }
.panel-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }
.panel-body { display: grid; grid-template-columns: 1fr 1fr; }
.p-col { padding: 26px 30px; }
.p-col:first-child { border-right: 1px solid var(--border); }
.p-col-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 16px;
}
.cert-list { display: flex; flex-direction: column; gap: 9px; }
.cert-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 13px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 9px;
}
.cert-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.cert-name-txt { font-size: 13px; font-weight: 600; flex: 1; }
.cert-tag {
  font-size: 10px; font-weight: 700; padding: 2px 9px;
  border-radius: 100px; white-space: nowrap;
}
.byoc-cert-note {
  margin-top: 14px; padding: 11px 13px;
  background: rgba(0,229,192,0.06); border: 1px solid rgba(0,229,192,0.18);
  border-radius: 9px; font-size: 12px; color: var(--lighter); line-height: 1.55;
}
.byoc-cert-note strong { color: var(--accent); }
.audit-type-list { display: flex; flex-direction: column; gap: 0; }
.at-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.at-item:last-child { border-bottom: none; }
.at-check { font-weight: 700; font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.at-name { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.at-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 30px; }
.stat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 22px;
}
.stat-val { font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800; margin-bottom: 4px; }
.stat-lbl { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* ═══════════════════════════════════════
   CERT UNIVERSE
═══════════════════════════════════════ */
.cert-universe {
  margin-top: 48px; background: var(--navy3);
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 32px;
}
.cu-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 22px; flex-wrap: wrap; gap: 12px; }
.cu-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; }
.cu-sub { font-size: 13px; color: var(--muted); margin-top: 4px; }
.cu-byoc-badge {
  background: rgba(0,229,192,0.1); border: 1px solid rgba(0,229,192,0.25);
  border-radius: 9px; padding: 10px 16px; font-size: 12px; color: var(--lighter); line-height: 1.5;
  max-width: 280px; flex-shrink: 0;
}
.cu-byoc-badge strong { color: var(--accent); display: block; margin-bottom: 2px; }
.cert-cloud { display: flex; flex-wrap: wrap; gap: 9px; }
.cloud-pill {
  font-size: 12px; font-weight: 600; padding: 6px 14px;
  border-radius: 100px; border: 1px solid; transition: transform 0.15s;
}
.cloud-pill:hover { transform: translateY(-2px); }

/* ═══════════════════════════════════════
   STAKEHOLDERS
═══════════════════════════════════════ */
.st-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 48px; }
.st-card {
  padding: 34px 30px; border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
  background: var(--navy3);
}
.st-card:last-child { border-right: none; }
.st-label { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 7px; }
.st-sub { font-size: 14px; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
.st-bullets { display: flex; flex-direction: column; gap: 8px; }
.st-bullets li { display: flex; gap: 9px; font-size: 13px; color: var(--lighter); line-height: 1.5; }
.st-bullets li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ═══════════════════════════════════════
   AI NATIVE
═══════════════════════════════════════ */
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ai-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 36px; }
.ai-stat {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px;
}
.ai-stat-val { font-family: 'Syne', sans-serif; font-size: 32px; font-weight: 800; margin-bottom: 4px; }
.ai-stat-lbl { font-size: 13px; color: var(--muted); }
.ai-points { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.ai-point { display: flex; gap: 14px; }
.ai-point-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.ai-point-title { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.ai-point-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════
   SECURITY
═══════════════════════════════════════ */
.sec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 48px; }
.sec-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.sec-card-icon { font-size: 22px; margin-bottom: 14px; }
.sec-card-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.sec-card-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.cta-section { text-align: center; padding: 100px 0; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer { border-top: 1px solid var(--border); padding: 44px 0; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 13px; color: var(--muted); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .byoc-banner { grid-template-columns: 1fr; }
  .panel-body { grid-template-columns: 1fr; }
  .p-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .st-grid { grid-template-columns: 1fr; }
  .st-card { border-right: none; }
  .ai-grid { grid-template-columns: 1fr; }
  .sec-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  /* Hide desktop nav items, show hamburger */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 14px 20px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .ai-stats { grid-template-columns: 1fr 1fr; }
  .domain-grid { grid-template-columns: repeat(2, 1fr); }
  .cu-header { flex-direction: column; }
  .cu-byoc-badge { max-width: 100%; }
  section { padding: 56px 0; }
  .byoc-banner { padding: 28px 22px; }
}
