/* =============================================
   GLASSBOX — Design System
   Black + Cyan · Editorial · Premium
   ============================================= */

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

:root {
  /* Backgrounds */
  --bg:       #080809;
  --bg-2:     #0D0D0F;
  --bg-3:     #111113;
  --surface:  #161618;
  --surface-2:#1D1D20;

  /* Borders */
  --b:        rgba(255,255,255,0.06);
  --b-md:     rgba(255,255,255,0.1);
  --b-hi:     rgba(255,255,255,0.18);

  /* Text */
  --t:        #EFEFEF;
  --t-2:      #7A7A85;
  --t-3:      #3E3E48;

  /* Accent — Electric Cyan */
  --cyan:     #00CFFD;
  --cyan-dim: rgba(0,207,253,0.08);
  --cyan-glow:rgba(0,207,253,0.22);
  --cyan-2:   #00A8D0;

  /* Typography */
  --font:     'Inter', 'SF Pro Display', system-ui, sans-serif;
  --mono:     'SF Mono', 'Fira Code', monospace;

  /* Motion */
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--t);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 2px; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 60px;
  background: rgba(8,8,9,0.8);
  backdrop-filter: blur(20px) saturate(2);
  border-bottom: 1px solid var(--b);
  transition: border-color .3s;
}
.navbar.scrolled { border-color: var(--b-md); }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.05rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--t);
}

.logo-mark {
  width: 28px; height: 28px;
  position: relative; display: flex; align-items: center; justify-content: center;
}

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

.nav-links {
  list-style: none; display: flex; align-items: center; gap: 28px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-size: 0.82rem; color: var(--t-2); font-weight: 500;
  letter-spacing: 0.02em; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--t); }

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

.burger { display: none; flex-direction: column; gap: 4px; cursor: pointer; }
.burger span { display: block; width: 20px; height: 1.5px; background: var(--t-2); border-radius: 1px; transition: all .3s; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 20px; border-radius: 6px; border: none; cursor: pointer;
  font-family: var(--font); font-size: 0.84rem; font-weight: 600;
  letter-spacing: 0.01em; white-space: nowrap; transition: all .2s var(--ease);
}

.btn-primary {
  background: var(--cyan); color: #000;
  box-shadow: 0 0 0 1px rgba(0,207,253,0.3), 0 4px 20px var(--cyan-glow);
}
.btn-primary:hover {
  background: #20D8FF;
  box-shadow: 0 0 0 1px rgba(0,207,253,0.5), 0 8px 32px rgba(0,207,253,0.35);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent; color: var(--t-2);
  border: 1px solid var(--b-md);
}
.btn-ghost:hover { color: var(--t); border-color: var(--b-hi); background: rgba(255,255,255,0.03); }

.btn-sm { padding: 8px 16px; font-size: 0.78rem; }
.btn-lg { padding: 14px 32px; font-size: 0.92rem; border-radius: 8px; }

/* =============================================
   TICKER
   ============================================= */
.ticker-strip {
  background: var(--bg-2); border-bottom: 1px solid var(--b);
  height: 36px; overflow: hidden; display: flex; align-items: center;
}

.ticker-inner {
  display: flex; align-items: center; gap: 0;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 32px; font-size: 0.72rem;
  color: var(--t-3); letter-spacing: 0.08em; text-transform: uppercase;
}

.ticker-item strong { color: var(--cyan); }
.ticker-sep { color: var(--t-3); flex-shrink: 0; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 40px 80px;
  position: relative; overflow: hidden;
}

.hero-lines {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}

.hero-lines::before, .hero-lines::after {
  content: '';
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--b-md) 30%, var(--b-md) 70%, transparent 100%);
}
.hero-lines::before { left: 40px; top: 0; height: 100%; }
.hero-lines::after  { right: 40px; top: 0; height: 100%; }

.hero-glow {
  position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px; pointer-events: none;
  background: radial-gradient(ellipse, rgba(0,207,253,0.04) 0%, transparent 70%);
  filter: blur(40px);
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 32px; font-weight: 600;
}

.hero-label::before {
  content: '';
  display: block; width: 24px; height: 1px; background: var(--cyan);
}

.hero-h1 {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 800; line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
}

.hero-h1 .line-2 { color: var(--t-2); }
.hero-h1 .line-3 { color: var(--cyan); }

.hero-p {
  font-size: 1rem; color: var(--t-2); line-height: 1.8;
  max-width: 400px; margin-bottom: 40px; letter-spacing: -0.01em;
}

.hero-cta { display: flex; gap: 12px; align-items: center; margin-bottom: 56px; }

.hero-note {
  font-size: 0.75rem; color: var(--t-3); letter-spacing: -0.01em;
}

.hero-stats {
  display: flex; gap: 0;
  border: 1px solid var(--b); border-radius: 10px; overflow: hidden;
}

.hstat {
  flex: 1; padding: 20px 24px;
  border-right: 1px solid var(--b);
}
.hstat:last-child { border-right: none; }

.hstat-n {
  font-size: 1.8rem; font-weight: 800; letter-spacing: -0.04em;
  color: var(--t); line-height: 1; margin-bottom: 4px;
}

.hstat-l {
  font-size: 0.72rem; color: var(--t-3); letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO VISUAL */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }

.glassbox-screen {
  width: 100%; max-width: 480px;
  background: var(--bg-3); border: 1px solid var(--b-md);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,207,253,0.05), 0 40px 80px rgba(0,0,0,0.7);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform .8s var(--ease);
}
.glassbox-screen:hover { transform: perspective(1000px) rotateY(-1deg) rotateX(0.5deg); }

.vs-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: var(--bg-2);
  border-bottom: 1px solid var(--b);
}

.vs-dots { display: flex; gap: 5px; }
.vs-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--surface-2); }

.vs-name {
  font-size: 0.72rem; color: var(--t-3); letter-spacing: 0.02em;
  font-family: var(--mono);
}

.vs-rec {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.7rem; font-weight: 600; color: #FF4444;
  font-family: var(--mono);
}
.vs-rec-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #FF4444;
  animation: recpulse 1.1s ease-in-out infinite;
}
@keyframes recpulse { 0%,100%{opacity:1;} 50%{opacity:0.2;} }

.vs-body { padding: 20px; background: var(--bg); }

.vs-meters {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px;
}

.meter { }
.meter-label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.65rem; color: var(--t-3); margin-bottom: 5px;
  font-family: var(--mono); letter-spacing: 0.04em;
}
.meter-label span:last-child { color: var(--cyan); }

.meter-track {
  height: 3px; background: var(--surface-2); border-radius: 2px; overflow: hidden;
}

.meter-fill {
  height: 100%; border-radius: 2px; background: var(--cyan);
  animation: mfill 3s ease-in-out infinite alternate;
}

.meter:nth-child(1) .meter-fill { width: 78%; animation-delay: 0s; }
.meter:nth-child(2) .meter-fill { width: 60%; animation-delay: .4s; }
.meter:nth-child(3) .meter-fill { width: 91%; background: rgba(0,207,253,0.5); animation-delay: .2s; }

@keyframes mfill { 0%{opacity:.7;} 100%{opacity:1;} }

.vs-timeline {
  background: var(--bg-2); border: 1px solid var(--b);
  border-radius: 8px; padding: 14px 16px;
}

.vst-top {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 10px; margin-bottom: 14px;
}

.vst-stat { }
.vst-stat-l {
  font-size: 0.6rem; color: var(--t-3); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 3px;
}
.vst-stat-v {
  font-size: 0.85rem; font-weight: 700; letter-spacing: -0.02em;
  font-family: var(--mono);
}
.vst-stat-v.cyan { color: var(--cyan); }

.vst-bar { height: 2px; background: var(--surface-2); border-radius: 1px; position: relative; }
.vst-progress {
  position: absolute; left: 0; top: 0; height: 100%;
  width: 67%; background: var(--cyan); border-radius: 1px;
}
.vst-progress::after {
  content: '';
  position: absolute; right: -4px; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff; border: 2px solid var(--cyan);
  box-shadow: 0 0 8px var(--cyan-glow);
}

/* floating chips */
.vs-chip {
  position: absolute;
  background: var(--surface); border: 1px solid var(--b-md);
  border-radius: 8px; padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  animation: chipfloat 5s ease-in-out infinite;
}

.vs-chip:nth-child(1) { top: 16px; right: -24px; animation-delay: 0s; }
.vs-chip:nth-child(2) { bottom: 60px; left: -28px; animation-delay: 2.5s; }

@keyframes chipfloat { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }

.vs-chip-l { font-size: 0.62rem; color: var(--t-3); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 3px; }
.vs-chip-v { font-size: 0.9rem; font-weight: 800; letter-spacing: -0.03em; font-family: var(--mono); }

/* =============================================
   SECTION UTILS
   ============================================= */
.section { padding: 100px 40px; }
.container { max-width: 1200px; margin: 0 auto; }

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--t-3); margin-bottom: 20px;
}
.tag::before { content: ''; display: block; width: 16px; height: 1px; background: var(--t-3); }

.heading {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; letter-spacing: -0.04em;
  line-height: 1.1; margin-bottom: 16px;
}

.sub {
  font-size: 0.95rem; color: var(--t-2); max-width: 480px;
  line-height: 1.8; letter-spacing: -0.01em;
}

.center { text-align: center; }
.center .tag { justify-content: center; }
.center .tag::before { display: none; }
.center .sub { margin: 0 auto; }

/* =============================================
   LOGOS
   ============================================= */
.logos-strip {
  padding: 28px 40px;
  border-top: 1px solid var(--b); border-bottom: 1px solid var(--b);
}

.logos-row {
  display: flex; align-items: center; justify-content: center; gap: 52px; flex-wrap: wrap;
}

.logo-item {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--t-3);
  transition: color .2s;
}
.logo-item:hover { color: var(--t-2); }

/* =============================================
   FEATURE BENTO GRID
   ============================================= */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  margin-top: 64px;
}

.bento-card {
  background: var(--bg-2); border: 1px solid var(--b);
  border-radius: 14px; padding: 28px;
  transition: border-color .25s, background .25s;
  overflow: hidden; position: relative;
}

.bento-card:hover { border-color: var(--b-md); background: var(--bg-3); }

.bento-card.span-2 { grid-column: span 2; }
.bento-card.span-3 { grid-column: span 3; }
.bento-card.span-4 { grid-column: span 4; }

.bc-icon {
  font-size: 1.4rem; margin-bottom: 16px; display: block;
}

.bc-title {
  font-size: 0.95rem; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.bc-desc { font-size: 0.82rem; color: var(--t-2); line-height: 1.75; }

/* big stat inside bento */
.bc-big {
  font-size: 3.5rem; font-weight: 800; letter-spacing: -0.05em;
  line-height: 1; color: var(--cyan); margin-bottom: 8px;
}

/* inline visual inside bento */
.bc-visual {
  display: flex; flex-direction: column; gap: 6px; margin-top: 16px;
}

.bc-bar-row {
  display: flex; align-items: center; gap: 8px;
}

.bc-bar-label {
  font-size: 0.65rem; color: var(--t-3); width: 40px;
  font-family: var(--mono); flex-shrink: 0;
}

.bc-bar-track {
  flex: 1; height: 3px; background: var(--surface-2); border-radius: 2px;
}

.bc-bar-fill {
  height: 100%; background: var(--cyan); border-radius: 2px; opacity: 0.7;
}

/* =============================================
   HOW IT WORKS — numbered
   ============================================= */
.numbered-list {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 64px; border: 1px solid var(--b); border-radius: 14px; overflow: hidden;
}

.nl-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  align-items: center; gap: 32px;
  padding: 32px;
  border-bottom: 1px solid var(--b);
  transition: background .2s;
}
.nl-item:last-child { border-bottom: none; }
.nl-item:hover { background: var(--bg-2); }

.nl-num {
  font-size: 2.5rem; font-weight: 800; letter-spacing: -0.06em;
  color: var(--t-3); font-family: var(--mono); line-height: 1;
}

.nl-body h3 {
  font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.nl-body p { font-size: 0.85rem; color: var(--t-2); line-height: 1.7; }

.nl-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--b-md); display: flex; align-items: center;
  justify-content: center; font-size: 0.9rem; color: var(--t-3);
  flex-shrink: 0; transition: all .2s;
}
.nl-item:hover .nl-arrow {
  border-color: var(--cyan); color: var(--cyan);
  box-shadow: 0 0 12px var(--cyan-glow);
}

/* =============================================
   TESTIMONIALS — staggered
   ============================================= */
.testi-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px;
  margin-top: 64px;
}

.testi-card {
  background: var(--bg-2); border: 1px solid var(--b);
  border-radius: 14px; padding: 28px;
  transition: border-color .2s;
}
.testi-card:hover { border-color: var(--b-md); }

.testi-stars { font-size: 0.75rem; color: #F0A500; margin-bottom: 14px; letter-spacing: 2px; }

.testi-q {
  font-size: 0.9rem; color: var(--t-2); line-height: 1.8;
  margin-bottom: 20px; letter-spacing: -0.01em;
}

.testi-person { display: flex; align-items: center; gap: 12px; }

.testi-av {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--b-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: var(--t-2); flex-shrink: 0;
}

.testi-name { font-size: 0.85rem; font-weight: 700; letter-spacing: -0.01em; }
.testi-role { font-size: 0.75rem; color: var(--t-3); margin-top: 1px; }

/* =============================================
   PRICING
   ============================================= */
.pricing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 48px 0;
}

.tgl-label { font-size: 0.82rem; color: var(--t-3); font-weight: 500; }
.tgl-label.active { color: var(--t-2); }

.tgl-switch {
  width: 40px; height: 22px;
  background: var(--surface-2); border: 1px solid var(--b-md);
  border-radius: 11px; position: relative; cursor: pointer;
  transition: background .3s, border-color .3s;
}
.tgl-switch.on { background: var(--cyan); border-color: var(--cyan); }

.tgl-thumb {
  position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; background: #fff; border-radius: 50%;
  transition: transform .25s var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.tgl-switch.on .tgl-thumb { transform: translateX(18px); }

.save-tag {
  background: rgba(0,207,253,0.1); border: 1px solid rgba(0,207,253,0.2);
  color: var(--cyan); padding: 2px 8px; border-radius: 4px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em;
}

.plans {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}

.plan {
  background: var(--bg-2); border: 1px solid var(--b);
  border-radius: 14px; padding: 32px; position: relative;
  transition: border-color .2s;
}
.plan:hover { border-color: var(--b-md); }

.plan.featured {
  border-color: rgba(0,207,253,0.3);
  background: var(--bg-3);
}

.plan.featured::before {
  content: 'Most Popular';
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--cyan); color: #000;
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px; border-radius: 0 0 7px 7px;
}

.plan-tier {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--t-3); margin-bottom: 20px;
}

.plan-amount {
  display: flex; align-items: flex-start; gap: 2px; margin-bottom: 4px;
}
.plan-amount .cur { font-size: 1.1rem; font-weight: 700; color: var(--t-2); margin-top: 6px; }
.plan-amount .num {
  font-size: 3rem; font-weight: 800; letter-spacing: -0.05em;
  line-height: 1; transition: transform .2s var(--ease);
}
.plan-amount .per { font-size: 0.78rem; color: var(--t-3); margin-top: 12px; }

.plan-blurb { font-size: 0.82rem; color: var(--t-3); margin-bottom: 24px; line-height: 1.6; }

.plan-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.plan-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.84rem; line-height: 1.5;
}

.pi {
  width: 15px; height: 15px; border-radius: 3px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; margin-top: 2px;
}
.pi.y { background: rgba(0,207,253,0.12); color: var(--cyan); }
.pi.n { background: var(--surface); color: var(--t-3); }
li.off { opacity: 0.3; }

/* Enterprise strip */
.enterprise-strip {
  margin-top: 12px; padding: 28px 32px;
  background: var(--bg-2); border: 1px solid var(--b);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}

.ent-text h4 { font-size: 1rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 6px; }
.ent-text p { font-size: 0.82rem; color: var(--t-2); max-width: 440px; line-height: 1.7; }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap; margin-top: 48px; padding-top: 40px;
  border-top: 1px solid var(--b);
}

.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--t-3); letter-spacing: -0.01em;
}
.trust-item::before { content: '✓'; color: var(--cyan); font-weight: 700; }

/* =============================================
   FAQ
   ============================================= */
.faq-wrap { max-width: 700px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 3px; }

.faq-item {
  background: var(--bg-2); border: 1px solid var(--b);
  border-radius: 8px; overflow: hidden; transition: border-color .2s;
}
.faq-item.open { border-color: var(--b-md); }

.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 17px 20px; cursor: pointer;
  font-size: 0.875rem; font-weight: 600; letter-spacing: -0.01em;
  user-select: none; gap: 12px;
}

.faq-ico {
  width: 20px; height: 20px; border-radius: 5px;
  background: var(--surface-2); border: 1px solid var(--b);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; color: var(--t-3); flex-shrink: 0;
  transition: all .2s;
}
.faq-item.open .faq-ico { background: var(--cyan-dim); border-color: rgba(0,207,253,0.3); color: var(--cyan); rotate: 180deg; }

.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease), padding .25s;
  font-size: 0.85rem; color: var(--t-2); line-height: 1.8;
  padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 20px 18px; }

/* =============================================
   CTA
   ============================================= */
.cta-section { padding: 80px 40px; }

.cta-inner {
  max-width: 820px; margin: 0 auto;
  padding: 72px 56px; text-align: center;
  background: var(--bg-2); border: 1px solid var(--b-md);
  border-radius: 20px; position: relative; overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 50%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.cta-inner::after {
  content: '';
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,207,253,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.04em;
  margin-bottom: 12px; position: relative; z-index: 1;
}

.cta-inner p {
  font-size: 0.92rem; color: var(--t-2); margin-bottom: 36px;
  position: relative; z-index: 1; line-height: 1.7;
}

.cta-btns {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; position: relative; z-index: 1;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--bg-2); border-top: 1px solid var(--b);
  padding: 64px 40px 40px;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.82rem; color: var(--t-3); margin: 14px 0 24px;
  max-width: 220px; line-height: 1.75;
}

.socials { display: flex; gap: 8px; }
.social {
  width: 30px; height: 30px; border-radius: 6px;
  background: var(--surface); border: 1px solid var(--b);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--t-3); transition: all .2s;
}
.social:hover { border-color: var(--b-md); color: var(--t-2); }

.footer-col h5 {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--t-3); margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: 0.82rem; color: var(--t-3); transition: color .2s; }
.footer-col ul a:hover { color: var(--t-2); }

.footer-bottom {
  border-top: 1px solid var(--b); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: var(--t-3); flex-wrap: wrap; gap: 8px;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: 140px 40px 72px; text-align: center;
  border-bottom: 1px solid var(--b);
  position: relative; overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 40%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,207,253,0.4), transparent);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; letter-spacing: -0.05em; line-height: 1.05;
  margin-bottom: 16px;
}
.page-hero .sub { margin: 0 auto; }

.cyan { color: var(--cyan); }

/* =============================================
   COMPARISON TABLE
   ============================================= */
.comp-table {
  width: 100%; border-collapse: collapse; margin-top: 48px;
  border-radius: 12px; overflow: hidden;
  border: 1px solid var(--b);
}
.comp-table th {
  padding: 14px 18px; background: var(--bg-2);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-align: left; color: var(--t-3); text-transform: uppercase;
}
.comp-table th:first-child { color: var(--t-2); }
.comp-table td {
  padding: 13px 18px; border-top: 1px solid var(--b);
  font-size: 0.84rem; color: var(--t-2);
}
.comp-table tr:hover td { background: rgba(255,255,255,0.01); }
.comp-table td:not(:first-child) { text-align: center; }

/* =============================================
   DOWNLOAD
   ============================================= */
.dl-hero {
  padding: 140px 40px 64px; text-align: center;
  border-bottom: 1px solid var(--b);
}
.dl-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; letter-spacing: -0.05em; margin-bottom: 16px;
}
.dl-hero p { font-size: 0.95rem; color: var(--t-2); max-width: 440px; margin: 0 auto 40px; line-height: 1.8; }

.os-tabs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  max-width: 760px; margin: 0 auto 40px;
}
.os-tab {
  background: var(--bg-2); border: 1px solid var(--b);
  border-radius: 10px; padding: 24px 20px; text-align: center;
  cursor: pointer; transition: all .2s;
}
.os-tab:hover { border-color: var(--b-md); }
.os-tab.active { border-color: rgba(0,207,253,0.4); background: var(--bg-3); }

.os-icon-lrg { font-size: 2rem; margin-bottom: 10px; }
.os-tab-name { font-size: 0.9rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.os-tab-ver  { font-size: 0.72rem; color: var(--t-3); }

.dl-card {
  max-width: 500px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--b-md);
  border-radius: 14px; padding: 36px; text-align: center;
}
.dl-card h3 { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.03em; margin-bottom: 8px; }
.dl-card p  { font-size: 0.84rem; color: var(--t-2); margin-bottom: 24px; line-height: 1.7; }
.dl-meta { font-size: 0.7rem; color: var(--t-3); margin-top: 12px; font-family: var(--mono); }

.req-grid {
  max-width: 900px; margin: 56px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.req-card {
  background: var(--bg-2); border: 1px solid var(--b);
  border-radius: 10px; padding: 24px;
}
.req-card h4 { font-size: 0.875rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.req-card .req-os { font-size: 0.72rem; color: var(--t-3); margin-bottom: 14px; font-family: var(--mono); }
.req-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.req-card ul li { font-size: 0.78rem; color: var(--t-2); display: flex; gap: 8px; }
.req-card ul li::before { content: '·'; color: var(--t-3); }

/* =============================================
   SUPPORT
   ============================================= */
.sup-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  max-width: 900px; margin: 0 auto 72px;
}
.sup-card {
  background: var(--bg-2); border: 1px solid var(--b);
  border-radius: 12px; padding: 28px; text-align: center; transition: all .2s;
}
.sup-card:hover { border-color: var(--b-md); }
.sup-card .si { font-size: 1.6rem; margin-bottom: 14px; }
.sup-card h3 { font-size: 0.9rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.sup-card p  { font-size: 0.8rem; color: var(--t-2); margin-bottom: 18px; line-height: 1.7; }

/* =============================================
   MOBILE
   ============================================= */
@media (max-width: 1024px) {
  .bento-card.span-4 { grid-column: span 3; }
  .plans { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .os-tabs, .req-grid { grid-template-columns: 1fr; max-width: 340px; }
  .sup-cards { grid-template-columns: 1fr; max-width: 340px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 20px; }
  .navbar { padding: 0 20px; }
  .hero { padding: 100px 20px 60px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card.span-2, .bento-card.span-3, .bento-card.span-4 { grid-column: span 2; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-right { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 60px; left: 0; right: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--b);
    padding: 20px;
  }
  .nav-right.open {
    display: flex; position: fixed;
    top: calc(60px + 220px); left: 0; right: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--b);
    padding: 0 20px 20px;
  }
  .burger { display: flex; }
  .cta-inner { padding: 40px 20px; }
  .page-hero, .dl-hero { padding: 120px 20px 56px; }
  .cta-section { padding: 60px 20px; }
  .logos-strip { padding: 24px 20px; }
  footer { padding: 48px 20px 32px; }
  .nl-item { grid-template-columns: 56px 1fr; }
  .nl-arrow { display: none; }
}

@media (max-width: 480px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card.span-2, .bento-card.span-3, .bento-card.span-4 { grid-column: span 1; }
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-up.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .07s; }
.d2 { transition-delay: .14s; }
.d3 { transition-delay: .21s; }
.d4 { transition-delay: .28s; }
.d5 { transition-delay: .35s; }
.d6 { transition-delay: .42s; }
