/* ================================================================
   [NAME] | Shared Stylesheet
================================================================ */

:root {
  --bg:      #04040C;
  --bg2:     #06060F;
  --bg3:     #080814;
  --surface: #0C0C1C;
  --purple:  #8B5CF6;
  --indigo:  #4F46E5;
  --teal:    #2DD4BF;
  --grad:    linear-gradient(135deg, #8B5CF6 0%, #4F46E5 100%);
  --t1:      #EEEEFF;
  --t2:      #6B7299;
  --t3:      #363760;
  --border:  rgba(255,255,255,0.055);
  --border-c: rgba(139,92,246,0.2);
  --f:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --r:       10px;
  --rl:      14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--f); background: var(--bg); color: var(--t1); line-height: 1.6; overflow-x: hidden; }
::selection { background: rgba(139,92,246,0.18); color: #fff; }
a { text-decoration: none; color: inherit; }
img, svg { display: block; max-width: 100%; }
button { font-family: var(--f); cursor: pointer; border: none; }

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

/* ── TYPOGRAPHY ── */
.label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 800;
  letter-spacing: -.026em;
  line-height: 1.12;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--t2);
  line-height: 1.7;
  max-width: 520px;
}

.g-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  transition: all .17s ease;
  white-space: nowrap;
  border: none;
}
.btn svg { flex-shrink: 0; }

.btn-p {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 3px 18px rgba(79,70,229,.3);
}
.btn-p:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(79,70,229,.42); }

.btn-g {
  background: rgba(255,255,255,.055);
  color: var(--t1);
  border: 1px solid var(--border);
}
.btn-g:hover { background: rgba(255,255,255,.09); }

.btn-o {
  background: transparent;
  color: var(--purple);
  border: 1px solid var(--purple);
}
.btn-o:hover { background: rgba(139,92,246,.06); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .07s; }
.d2 { transition-delay: .14s; }
.d3 { transition-delay: .21s; }
.d4 { transition-delay: .28s; }
.d5 { transition-delay: .35s; }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 20px 0;
  transition: padding .3s, background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  padding: 12px 0;
  background: rgba(4,4,12,.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.025em;
  flex-shrink: 0;
}
.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--t2);
  transition: color .18s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--t1); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 901;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--t1);
  border-radius: 2px;
  transition: all .26s;
}

/* ── NOISE OVERLAY ── */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 0 0;
  overflow: hidden;
}
/* Dot grid: sits above canvas */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(139,92,246,.04) 1px, transparent 0);
  background-size: 32px 32px;
}
/* Top glow: hero highlight */
.hero-glow-top {
  position: absolute;
  width: 1000px;
  height: 600px;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 55% 50% at 50% 0%, rgba(124,58,237,.28) 0%, rgba(79,70,229,.1) 40%, transparent 70%);
  filter: blur(1px);
  pointer-events: none;
  z-index: 2;
}
/* Subtle bottom edge glow */
.hero-glow-bottom {
  position: absolute;
  width: 700px;
  height: 400px;
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(79,70,229,.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Centered text block */
.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 28px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(139,92,246,.08);
  border: 1px solid rgba(139,92,246,.22);
  border-radius: 100px;
  padding: 5px 15px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 28px;
}
.hero-eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--purple);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.25} }

.hero-h {
  font-size: clamp(40px, 5.5vw, 78px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.04;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 17px;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 44px; }
.hero-rule { height: 1px; background: var(--border); margin-bottom: 28px; width: 100%; max-width: 360px; }
.hero-stats { display: flex; gap: 40px; justify-content: center; margin-bottom: 72px; }
.stat-n {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-l { font-size: 12px; color: var(--t3); margin-top: 1px; }

/* ── HERO PRODUCT (below text, full-width) ── */
.hero-product {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 28px;
}
/* Purple glow bloom under the product */
.hero-product::before {
  content: '';
  position: absolute;
  bottom: -20px; left: 10%; right: 10%;
  height: 180px;
  background: radial-gradient(ellipse, rgba(124,58,237,.35) 0%, transparent 68%);
  filter: blur(30px);
  pointer-events: none;
}
/* Fade to background at bottom of product */
.hero-product::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
  border-radius: 0 0 16px 16px;
  pointer-events: none;
  z-index: 3;
}
/* The product window frame */
.product-win {
  background: rgba(8,8,20,.96);
  border: 1px solid rgba(139,92,246,.22);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 40px 80px rgba(0,0,0,.6),
    0 0 60px rgba(124,58,237,.12);
}
/* Browser-style chrome bar */
.win-chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 18px;
  border-bottom: 1px solid rgba(255,255,255,.055);
  background: rgba(0,0,0,.3);
}
.win-dots { display: flex; gap: 6px; }
.win-dots span {
  width: 11px; height: 11px; border-radius: 50%;
}
.win-dots span:nth-child(1) { background: #ff5f57; }
.win-dots span:nth-child(2) { background: #ffbd2e; }
.win-dots span:nth-child(3) { background: #28c840; }
.win-url {
  flex: 1;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 5px;
  padding: 4px 12px;
  font-size: 11.5px;
  color: var(--t3);
  text-align: center;
}
.win-chrome-right {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: #22c55e;
  flex-shrink: 0;
}
.win-chrome-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #22c55e; animation: blink 1.8s infinite;
}
/* Two-panel app layout */
.win-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 380px;
}
.win-sidebar {
  border-right: 1px solid rgba(255,255,255,.055);
  padding: 16px 0;
  background: rgba(0,0,0,.2);
}
.sidebar-header {
  padding: 0 16px 10px;
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--t3);
}
.sidebar-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  font-size: 12.5px; color: var(--t2);
  cursor: default;
  transition: background .15s, color .15s;
  border-radius: 0;
}
.sidebar-item .si-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
}
.sidebar-item .si-dot.amber { background: #f59e0b; }
.sidebar-item .si-dot.muted { background: var(--t3); }
.sidebar-item:hover { background: rgba(255,255,255,.04); color: var(--t1); }
.sidebar-item.active { background: rgba(139,92,246,.1); color: var(--t1); }
.sidebar-divider {
  height: 1px; background: rgba(255,255,255,.045);
  margin: 10px 0;
}
.sidebar-section {
  padding: 12px 16px 6px;
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--t3);
}
/* Main chat panel */
.win-main {
  display: flex;
  flex-direction: column;
}
.win-main-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,.045);
  background: rgba(0,0,0,.1);
}
.win-main-title {
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.win-main-chips { display: flex; gap: 5px; }
.win-chip {
  background: rgba(139,92,246,.08);
  border: 1px solid rgba(139,92,246,.14);
  border-radius: 100px; padding: 2px 9px;
  font-size: 10.5px; color: var(--purple);
}
.win-msgs { flex: 1; padding: 18px 20px; overflow: hidden; }
.win-inp-row {
  padding: 10px 18px;
  border-top: 1px solid rgba(255,255,255,.045);
  display: flex; align-items: center; gap: 8px;
}
.win-inp-mock {
  flex: 1;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 7px;
  padding: 9px 14px;
  font-size: 12.5px; color: var(--t3);
  font-family: var(--f);
}
.win-send {
  width: 32px; height: 32px;
  border-radius: 7px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(139,92,246,.4);
}

/* Chat mock */
.chat-win {
  background: rgba(10,14,28,.95);
  border: 1px solid var(--border-c);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.025) inset;
}
.chat-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,.15);
}
.chat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}
.chat-logo-sm {
  width: 24px; height: 24px;
  border-radius: 5px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; color: #fff;
}
.chat-live {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: #22c55e;
}
.chat-live-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #22c55e;
  animation: blink 1.8s infinite;
}
.chat-bd { padding: 16px; }
.chat-sources { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 14px; }
.csrc {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(139,92,246,.06);
  border: 1px solid rgba(139,92,246,.12);
  border-radius: 100px; padding: 3px 9px;
  font-size: 10.5px; color: var(--purple);
}
.msg { display: flex; gap: 8px; margin-bottom: 12px; }
.msg.u { flex-direction: row-reverse; }
.av {
  width: 28px; height: 28px; border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
}
.av.ai { background: var(--grad); color: #fff; }
.av.hu { background: rgba(255,255,255,.07); border: 1px solid var(--border); color: var(--t2); }
.bubble {
  max-width: 78%; padding: 9px 12px;
  border-radius: 10px; font-size: 12.5px; line-height: 1.55;
}
.bubble.ai { background: rgba(139,92,246,.06); border: 1px solid rgba(139,92,246,.08); }
.bubble.hu { background: rgba(79,70,229,.12); border: 1px solid rgba(79,70,229,.16); }
.m-tag {
  display: inline-flex; align-items: center;
  background: rgba(139,92,246,.1); padding: 1px 6px;
  border-radius: 3px; font-weight: 700; color: var(--purple);
}
.chat-inp-row {
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.chat-inp-mock {
  flex: 1;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px; color: var(--t3);
  font-family: var(--f);
}
.send-btn {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── ICON BOX ── */
.icon-box {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(139,92,246,.07);
  border: 1px solid rgba(139,92,246,.13);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  margin-bottom: 18px;
  flex-shrink: 0;
}
.icon-box svg { width: 20px; height: 20px; }

/* ── CARDS ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 30px 28px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.card:hover {
  border-color: var(--border-c);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,.25);
}

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(139,92,246,.05) 1px, transparent 0);
  background-size: 36px 36px;
}
.page-hero-fade {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(100,60,220,.07) 0%, transparent 70%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.page-hero-inner h1 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 900;
  letter-spacing: -.033em;
  line-height: 1.07;
  margin-bottom: 18px;
}
.page-hero-inner p {
  font-size: 17px;
  color: var(--t2);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}

/* ── COMPARISON TABLE ── */
.cmp-wrap {
  background: var(--surface);
  border: 1px solid var(--border-c);
  border-radius: var(--rl);
  overflow: hidden;
}
.cmp-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 14px 24px;
  background: rgba(139,92,246,.025);
  border-bottom: 1px solid var(--border);
}
.cmp-head > div {
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.cmp-head .h-us { color: var(--purple); }
.cmp-head .h-th { color: var(--t3); text-align: center; }
.cmp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 15px 24px;
  border-bottom: 1px solid rgba(255,255,255,.025);
  transition: background .2s;
}
.cmp-row:last-child { border-bottom: none; }
.cmp-row:hover { background: rgba(139,92,246,.018); }
.cmp-crit { font-size: 13.5px; color: var(--t2); display: flex; align-items: center; gap: 8px; }
.cmp-cell { display: flex; align-items: center; justify-content: center; }
.cmp-cell .yes { color: #22c55e; width: 18px; height: 18px; }
.cmp-cell .no { color: #ef4444; width: 16px; height: 16px; }
.cmp-cell .par { font-size: 11.5px; font-weight: 600; color: #f59e0b; }

/* ── PRICING CARDS ── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 34px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--border-c);
  background: rgba(139,92,246,.03);
  box-shadow: 0 0 40px rgba(139,92,246,.06);
}
.price-badge {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 3px 14px; border-radius: 100px;
}
.price-tier { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--t3); margin-bottom: 8px; }
.price-num { font-size: 40px; font-weight: 900; letter-spacing: -.035em; line-height: 1; margin-bottom: 3px; }
.price-num span { font-size: 16px; font-weight: 600; color: var(--t3); }
.price-range { font-size: 12px; color: var(--t3); margin-bottom: 22px; }
.price-div { height: 1px; background: var(--border); margin: 20px 0; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.price-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--t2); }
.price-feats li .chk { color: var(--purple); flex-shrink: 0; margin-top: 1px; }
.price-feats li .chk svg { width: 14px; height: 14px; }
.price-btn { width: 100%; justify-content: center; padding: 11px; }

/* ── FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-grp { display: flex; flex-direction: column; gap: 6px; }
.form-grp.full { grid-column: span 2; }
.form-grp label { font-size: 12.5px; font-weight: 600; color: var(--t2); }
.form-grp input,
.form-grp textarea,
.form-grp select {
  background: rgba(255,255,255,.038);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 11px 14px;
  font-family: var(--f); font-size: 13.5px; color: var(--t1);
  outline: none;
  transition: border-color .2s, background .2s;
}
.form-grp input::placeholder,
.form-grp textarea::placeholder { color: var(--t3); }
.form-grp input:focus,
.form-grp textarea:focus,
.form-grp select:focus {
  border-color: rgba(139,92,246,.36);
  background: rgba(139,92,246,.025);
}
.form-grp textarea { resize: vertical; min-height: 96px; }
.form-grp select { appearance: none; -webkit-appearance: none; }

/* ── FOOTER ── */
#footer {
  background: #04070F;
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-desc { font-size: 13.5px; color: var(--t3); line-height: 1.65; max-width: 260px; margin: 14px 0 20px; }
.footer-badges { display: flex; gap: 7px; flex-wrap: wrap; }
.fbadge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 10.5px; font-weight: 600; color: var(--t3);
}
.fbadge.ok { border-color: rgba(34,197,94,.18); color: #22c55e; background: rgba(34,197,94,.04); }
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--t3); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 13.5px; color: var(--t2); transition: color .18s; }
.footer-col a:hover { color: var(--t1); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 12.5px; color: var(--t3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12.5px; color: var(--t3); transition: color .18s; }
.footer-legal a:hover { color: var(--t2); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, rgba(79,70,229,.08) 0%, rgba(139,92,246,.05) 100%);
  border-top: 1px solid var(--border-c);
  border-bottom: 1px solid var(--border-c);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.12;
  margin-bottom: 14px;
}
.cta-band p { font-size: 16px; color: var(--t2); margin-bottom: 28px; }
.cta-band .cta-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ── MISC SHARED ── */
.tag {
  display: inline-block;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--purple); margin-top: 14px;
}
.compliance-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
}
.compliance-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(139,92,246,.055);
  border: 1px solid var(--border-c);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 12.5px; font-weight: 600; color: var(--purple);
}
.compliance-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple); }

/* ── COMING SOON PAGE ── */
.coming-soon {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 28px 80px;
}
.coming-soon h1 { font-size: clamp(32px, 4vw, 56px); font-weight: 900; letter-spacing: -.03em; margin: 16px 0 12px; }
.coming-soon p { font-size: 16px; color: var(--t2); max-width: 420px; margin-bottom: 32px; }

/* ── LEGAL PAGE ── */
.legal-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 140px 28px 80px;
}
.legal-body h1 { font-size: clamp(28px, 3vw, 42px); font-weight: 800; letter-spacing: -.025em; margin-bottom: 8px; }
.legal-body .meta { font-size: 13px; color: var(--t3); margin-bottom: 48px; }
.legal-body h2 { font-size: 20px; font-weight: 700; margin: 36px 0 12px; color: var(--t1); }
.legal-body p { font-size: 15px; color: var(--t2); line-height: 1.75; margin-bottom: 14px; }
.legal-body ul { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.legal-body li { font-size: 15px; color: var(--t2); line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .price-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cmp-head, .cmp-row { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .hero-product { max-width: 100%; padding: 0 16px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 18px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed; inset: 0;
    background: rgba(6,9,16,.97);
    backdrop-filter: blur(22px);
    align-items: center; justify-content: center;
    gap: 28px; z-index: 900;
  }
  .nav-links.open a { font-size: 20px; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grp.full { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .hero-center { padding: 0 18px; }
  .hero-product { padding: 0 10px; }
  .win-body { grid-template-columns: 1fr; min-height: auto; }
  .win-sidebar { display: none; }
  .win-chrome-right { display: none; }
  .win-url { font-size: 10.5px; }
  .legal-body { padding: 110px 18px 60px; }
  .page-hero { padding: 110px 0 56px; }
  .page-hero-inner h1 { font-size: clamp(30px, 8vw, 48px); }
  .cta-band { padding: 56px 0; }
  /* Comparison table: scroll horizontally rather than break layout */
  .cmp-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .cmp-head, .cmp-row { min-width: 540px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 52px 0; }
  .hero-h { font-size: clamp(34px, 9vw, 52px); }
  .hero-sub { font-size: 15px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas a { justify-content: center; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 16px 24px; }
  .section-title { font-size: clamp(22px, 6vw, 36px); }
  .cta-band { padding: 44px 0; }
  .cta-band h2 { font-size: clamp(22px, 6vw, 36px); }
  .price-grid { max-width: 100%; }
  .footer-badges { flex-direction: column; align-items: flex-start; }
}
