/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:    #F97316;
  --orange-d:  #EA6B0F;
  --orange-l:  #FED7AA;
  --navy:      #060C1A;
  --navy-2:    #0A1224;
  --navy-3:    #0F1A30;
  --slate:     #1E2D45;
  --slate-2:   #263347;
  --border:    #1E293B;
  --text:      #F1F5F9;
  --text-2:    #94A3B8;
  --text-3:    #64748B;
  --white:     #FFFFFF;
  --green:     #22C55E;
  --blue:      #3B82F6;
  --purple:    #A855F7;
  --font:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:      'JetBrains Mono', 'Fira Code', 'Cascadia Code', monospace;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Typography ────────────────────────────────────────────────────────────── */
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-2); }

.gradient-text {
  background: linear-gradient(135deg, #F97316 0%, #FB923C 40%, #FDBA74 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-blue {
  background: linear-gradient(135deg, #60A5FA 0%, #818CF8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ────────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap { display: flex; gap: 16px; align-items: center; }
.text-center { text-align: center; }

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  border: none; transition: all 0.2s ease; white-space: nowrap;
}
.btn-primary {
  background: var(--orange); color: #fff;
}
.btn-primary:hover { background: var(--orange-d); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(249,115,22,0.4); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-ghost { background: rgba(255,255,255,0.06); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,0.10); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* ── Nav ────────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px;
  background: rgba(6, 12, 26, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 41, 59, 0.6);
  transition: background 0.3s;
}
.nav.scrolled {
  background: rgba(6, 12, 26, 0.97);
  border-bottom-color: var(--border);
}
.nav-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.35rem; font-weight: 800; color: var(--white);
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.nav-brand-name { color: #F97316; font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; }
.nav-brand-tagline { color: #3B82F6; font-size: 1rem; font-weight: 400; letter-spacing: 0.01em; }
.nav-logo .logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, #F97316, #FB923C);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 900; color: white;
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-link {
  padding: 8px 14px; border-radius: 6px;
  font-size: 0.9rem; font-weight: 500; color: var(--text-2);
  transition: all 0.2s;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-link.has-dropdown { cursor: pointer; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ── Dropdown ────────────────────────────────────────────────────────────────── */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  min-width: 240px; padding: 8px;
  background: var(--navy-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(-8px);
  transition: all 0.2s ease;
}
.dropdown:hover .dropdown-menu, .dropdown.open .dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 12px; border-radius: 6px;
  color: var(--text-2); font-size: 0.88rem;
  transition: all 0.15s;
}
.dropdown-item:hover { background: rgba(249,115,22,0.08); color: var(--text); }
.dropdown-item-icon { font-size: 1.1rem; margin-top: 1px; flex-shrink: 0; }
.dropdown-item-title { font-weight: 600; color: var(--text); font-size: 0.9rem; }

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(249,115,22,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(59,130,246,0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 80%);
}
.hero-content { position: relative; z-index: 1; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.25);
  color: var(--orange); font-size: 0.82rem; font-weight: 600;
  margin-bottom: 28px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }
.hero-title { margin-bottom: 24px; }
.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-2); max-width: 680px; margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: flex; gap: 48px; justify-content: center;
  padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}
.hero-stat-num { font-size: 2rem; font-weight: 800; color: var(--white); }
.hero-stat-label { font-size: 0.82rem; color: var(--text-3); margin-top: 2px; }

/* ── Cards ────────────────────────────────────────────────────────────────────── */
.card {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.25s ease;
}
.card:hover {
  border-color: rgba(249,115,22,0.3);
  box-shadow: 0 0 0 1px rgba(249,115,22,0.1), 0 20px 40px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}
.card-icon {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
  background: rgba(249,115,22,0.1);
}
.card-icon.blue { background: rgba(59,130,246,0.1); }
.card-icon.green { background: rgba(34,197,94,0.1); }
.card-icon.purple { background: rgba(168,85,247,0.1); }

.card h3 { margin-bottom: 8px; color: var(--white); }
.card p { font-size: 0.9rem; line-height: 1.65; }

/* ── Section Labels ────────────────────────────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 100px;
  background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2);
  color: var(--orange); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title { margin-bottom: 16px; }
.section-desc { font-size: 1.05rem; color: var(--text-2); max-width: 600px; }

/* ── Feature Strip ────────────────────────────────────────────────────────────── */
.feature-strip {
  background: var(--navy-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.feature-strip-inner {
  display: flex; align-items: center; gap: 48px;
  flex-wrap: wrap; justify-content: center;
}
.feature-strip-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-2); font-size: 0.9rem; font-weight: 500;
}
.feature-strip-item span.dot { color: var(--orange); }

/* ── Architecture Diagram ────────────────────────────────────────────────────── */
.arch-diagram {
  background: var(--navy-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  font-family: var(--mono); font-size: 0.82rem;
  color: var(--text-2); line-height: 1.8;
  overflow-x: auto;
}
.arch-layer {
  padding: 20px 24px; border-radius: var(--radius);
  margin-bottom: 8px; border: 1px solid;
}
.arch-layer.l1 { background: rgba(249,115,22,0.06); border-color: rgba(249,115,22,0.2); }
.arch-layer.l2 { background: rgba(59,130,246,0.06); border-color: rgba(59,130,246,0.2); }
.arch-layer.l3 { background: rgba(34,197,94,0.06); border-color: rgba(34,197,94,0.2); }
.arch-layer.l4 { background: rgba(168,85,247,0.06); border-color: rgba(168,85,247,0.2); }
.arch-layer-title { font-weight: 700; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.arch-layer.l1 .arch-layer-title { color: var(--orange); }
.arch-layer.l2 .arch-layer-title { color: var(--blue); }
.arch-layer.l3 .arch-layer-title { color: var(--green); }
.arch-layer.l4 .arch-layer-title { color: var(--purple); }
.arch-nodes { display: flex; gap: 12px; flex-wrap: wrap; }
.arch-node {
  padding: 6px 14px; border-radius: 6px;
  font-size: 0.78rem; font-weight: 600;
  white-space: nowrap;
}
.arch-node.orange { background: rgba(249,115,22,0.15); color: #FDBA74; }
.arch-node.blue { background: rgba(59,130,246,0.15); color: #93C5FD; }
.arch-node.green { background: rgba(34,197,94,0.15); color: #86EFAC; }
.arch-node.purple { background: rgba(168,85,247,0.15); color: #D8B4FE; }
.arch-node.gray { background: rgba(100,116,139,0.15); color: #CBD5E1; }
.arch-arrow {
  text-align: center; color: var(--text-3); font-size: 1.2rem;
  margin: 4px 0;
}

/* ── Connector Grid ────────────────────────────────────────────────────────────── */
.connector-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 100px;
  background: var(--slate); border: 1px solid var(--border);
  font-size: 0.78rem; font-weight: 500; color: var(--text-2);
  transition: all 0.2s;
}
.connector-chip:hover { border-color: var(--orange); color: var(--text); }
.connectors-wrap { display: flex; flex-wrap: wrap; gap: 8px; }

/* ── Security matrix ────────────────────────────────────────────────────────────── */
.security-matrix {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
  background: var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.security-cell {
  background: var(--navy-3); padding: 24px;
  transition: background 0.2s;
}
.security-cell:hover { background: var(--slate); }
.security-cell h4 { color: var(--white); margin-bottom: 6px; }
.security-cell p { font-size: 0.85rem; }
.security-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border-radius: 4px;
  font-size: 0.7rem; font-weight: 700;
  background: rgba(34,197,94,0.1); color: var(--green);
  border: 1px solid rgba(34,197,94,0.2);
  margin-bottom: 8px;
}

/* ── Tab system ────────────────────────────────────────────────────────────────── */
.tabs { display: flex; gap: 4px; background: var(--navy-3); padding: 4px; border-radius: var(--radius); border: 1px solid var(--border); }
.tab-btn {
  padding: 10px 20px; border-radius: 6px; font-size: 0.88rem; font-weight: 600;
  cursor: pointer; border: none; background: transparent; color: var(--text-2);
  transition: all 0.2s;
}
.tab-btn.active { background: var(--orange); color: white; }
.tab-btn:hover:not(.active) { background: rgba(255,255,255,0.06); color: var(--text); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── Code block ────────────────────────────────────────────────────────────────── */
.code-block {
  background: #020813; border: 1px solid rgba(249,115,22,0.15);
  border-radius: var(--radius-lg); padding: 28px;
  font-family: var(--mono); font-size: 0.82rem; line-height: 1.8;
  overflow-x: auto; position: relative;
}
.code-block .code-header {
  display: flex; align-items: center; gap: 6px; margin-bottom: 16px;
}
.code-dot { width: 10px; height: 10px; border-radius: 50%; }
.code-dot.red { background: #FF5F57; }
.code-dot.yellow { background: #FEBC2E; }
.code-dot.green { background: #28C840; }
.code-keyword { color: #C792EA; }
.code-string { color: #C3E88D; }
.code-comment { color: #546E7A; font-style: italic; }
.code-func { color: #82AAFF; }
.code-type { color: #FFCB6B; }
.code-value { color: #F78C6C; }
.code-path { color: #89DDFF; }

/* ── Checklist ────────────────────────────────────────────────────────────────── */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--text-2); }
.check-icon { width: 20px; height: 20px; border-radius: 50%; background: rgba(34,197,94,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.check-icon svg { width: 11px; height: 11px; stroke: var(--green); stroke-width: 3; fill: none; }

/* ── Steps ────────────────────────────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: rgba(249,115,22,0.1); border: 2px solid rgba(249,115,22,0.3); display: flex; align-items: center; justify-content: center; color: var(--orange); font-weight: 800; font-size: 0.9rem; flex-shrink: 0; }
.step h4 { color: var(--white); margin-bottom: 4px; }
.step p { font-size: 0.88rem; }

/* ── CTA Banner ────────────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(249,115,22,0.1) 0%, rgba(251,146,60,0.05) 50%, rgba(59,130,246,0.05) 100%);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-lg); padding: 64px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(249,115,22,0.06) 0%, transparent 70%);
}
.cta-banner * { position: relative; z-index: 1; }

/* ── Footer ────────────────────────────────────────────────────────────────────── */
.footer { background: var(--navy-2); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 12px; color: var(--text-3); max-width: 260px; }
.footer-col h5 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link { color: var(--text-2); font-size: 0.88rem; transition: color 0.2s; }
.footer-link:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: var(--text-3); }
.footer-badges { display: flex; gap: 8px; }
.footer-badge { padding: 3px 10px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 4px; font-size: 0.72rem; color: var(--text-3); }

/* ── Misc UI ────────────────────────────────────────────────────────────────── */
.tag { display: inline-block; padding: 2px 10px; border-radius: 4px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.tag-orange { background: rgba(249,115,22,0.1); color: var(--orange); border: 1px solid rgba(249,115,22,0.2); }
.tag-blue { background: rgba(59,130,246,0.1); color: #60A5FA; border: 1px solid rgba(59,130,246,0.2); }
.tag-green { background: rgba(34,197,94,0.1); color: var(--green); border: 1px solid rgba(34,197,94,0.2); }
.tag-purple { background: rgba(168,85,247,0.1); color: #C084FC; border: 1px solid rgba(168,85,247,0.2); }

.divider { height: 1px; background: var(--border); margin: 48px 0; }
.pill { display: inline-block; padding: 4px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }

.stat-card { text-align: center; padding: 32px 24px; }
.stat-card .num { font-size: 2.4rem; font-weight: 800; color: var(--white); }
.stat-card .label { font-size: 0.85rem; color: var(--text-3); margin-top: 4px; }

/* ── Scroll Animation ────────────────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Megamenu ────────────────────────────────────────────────────────────────── */
.mega-menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  width: 640px; padding: 24px;
  background: var(--navy-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(-8px);
  transition: all 0.2s ease;
}
.dropdown:hover .mega-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }


/* ── Responsive grid utilities (replaces inline grid styles) ────────────────── */
.grid-feature-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.grid-inline-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.grid-inline-3  { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }

/* ── Mobile ────────────────────────────────────────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--navy); padding: 24px; overflow-y: auto;
  z-index: 999; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { display: block; padding: 12px 16px; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .security-matrix { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-brand-tagline { display: none; }
  .section { padding: 60px 0; }
  .cta-banner { padding: 36px 20px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .page-hero { padding: 80px 0 48px; }
  .grid-feature-2 { grid-template-columns: 1fr; }
  .grid-inline-2  { grid-template-columns: 1fr; }
  .grid-inline-3  { grid-template-columns: 1fr; }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  /* Hero */
  .hero { padding: 72px 0 48px; min-height: auto; }
  .hero-badge { max-width: 100%; justify-content: center; text-align: center; flex-wrap: wrap; font-size: 0.7rem; padding: 5px 12px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn-lg { width: 100%; justify-content: center; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 32px; }
  .hero-visual { display: none; }
  /* Tabs */
  .tabs { flex-wrap: wrap; }
  .tab-btn { flex: 1; min-width: 120px; font-size: 0.82rem; padding: 8px 12px; text-align: center; }
  /* Footer */
  .footer-badges { flex-wrap: wrap; }
  .stat-card { padding: 20px 16px; }
}

/* ── Page-specific: Platform page ────────────────────────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
  text-align: center;
}
.page-hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 100px; background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2); color: var(--orange); font-size: 0.82rem; font-weight: 600; margin-bottom: 20px; }

/* ── Comparison table ────────────────────────────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.88rem; }
.compare-table th { background: var(--slate); color: var(--text); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }
.compare-table th:first-child { border-radius: 8px 0 0 0; }
.compare-table th:last-child { border-radius: 0 8px 0 0; }
.compare-table td { color: var(--text-2); }
.compare-table td:first-child { color: var(--text); font-weight: 500; }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.compare-table .check { color: var(--green); font-size: 1rem; }
.compare-table .cross { color: var(--text-3); }
.compare-table .ours { background: rgba(249,115,22,0.04); }
.compare-table .ours td:first-child { color: var(--orange); }
