/* ═══════════════════════════════════════════
   VOXI KNOX — Full Professional Stylesheet
   ═══════════════════════════════════════════ */

:root {
  --bg: #000;
  --bg-2: #0a0a0a;
  --panel: rgba(10, 10, 10, 0.88);
  --panel-strong: rgba(8, 8, 8, 0.94);
  --line: rgba(111, 246, 255, 0.18);
  --line-strong: rgba(255, 155, 66, 0.24);
  --text: #eef8fb;
  --muted: #9db4bf;
  --cyan: #6ff6ff;
  --teal: #20d6de;
  --orange: #ff9b42;
  --orange-2: #ff6d2d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background-color: #000;
  background-image: none;
  background-attachment: scroll;
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── Particle Canvas ── */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

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

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
  background: #000;
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(111, 246, 255, 0.06);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  padding: 0;
  height: 72px;
  transition: height 0.4s ease;
  overflow: visible;
  position: relative;
}

.site-header.scrolled .nav {
  height: 56px;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  z-index: 101;
  overflow: visible;
  position: relative;
}

.brand-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: height 0.4s ease, filter 0.4s ease;
  filter: brightness(1.05);
  margin-top: 0;
  position: relative;
}

.site-header.scrolled .brand-logo {
  height: 70px;
  margin-top: 0;
}

.nav-center {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: none;
}

/* Align nav links + CTA with hero logo vertically */
.site-header:not(.scrolled) .nav-center {
  margin-top: 0;
}
.site-header:not(.scrolled) .nav-cta {
  margin-top: 0;
}

.nav-center a {
  color: rgba(238, 248, 251, 0.55);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  transition: color 0.25s ease, background 0.25s ease;
  position: relative;
  padding: 6px 14px;
  border-radius: 8px;
}

.nav-center a:hover,
.nav-center a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  padding: 7px 18px !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--teal)) !important;
  color: #041017 !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.01em;
  transition: box-shadow 0.3s ease, transform 0.3s ease !important;
}

.nav-cta:hover {
  box-shadow: 0 4px 20px rgba(32, 214, 222, 0.35) !important;
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--cyan), var(--teal)) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   ANIMATED TEXT
   ═══════════════════════════════════════════ */

.text-gradient {
  background: linear-gradient(135deg, var(--cyan), var(--teal), var(--orange));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 0 40px;
  background: transparent;
}

.hero::after {
  content: none;
}

/* ── Large centered orb background ── */
.hero-orb-bg {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 680px;
  height: 680px;
  z-index: 0;
}

.hero-orb-bg .orb {
  width: 100%;
  height: 100%;
  animation: orbFloat 7s ease-in-out infinite;
}

/* Ambient glow behind entire orb */
.hero-orb-bg::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(111, 246, 255, 0.1) 0%, rgba(111, 246, 255, 0.04) 35%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}

/* ── Text content centered on top of orb ── */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.8);
  margin-top: 30px;
}

.hero-content h1 {
  max-width: none;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.06;
  margin-bottom: 16px;
}

.hero-content .lede {
  max-width: 60ch;
  margin: 0 auto 24px;
  font-size: 0.92rem;
}

.hero-content .cta-row {
  justify-content: center;
}

.hero-content .eyebrow {
  margin-bottom: 14px;
}

/* ── Old side-by-side hero grid (kept for breakpoints) ── */
.hero-grid {
  display: flex;
  gap: 36px;
  justify-content: space-between;
  align-items: center;
}

.hero-grid > * { flex: 1; }

.hero-copy { padding-top: 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
  background: rgba(111, 246, 255, 0.06);
  border: 1px solid rgba(111, 246, 255, 0.1);
  padding: 4px 12px;
  border-radius: 999px;
}

h1, h2, h3, p, ul { margin-top: 0; }

h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
  margin-bottom: 10px;
  max-width: 18ch;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  line-height: 1.08;
  margin-bottom: 14px;
  max-width: 26ch;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.28rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.lede, p, li, span {
  color: var(--muted);
  line-height: 1.65;
}

.lede {
  font-size: 0.88rem;
  max-width: 55ch;
}

.cta-row {
  flex-wrap: wrap;
  display: flex;
  gap: 12px;
  margin: 16px 0 14px;
}



/* Hero Dashboard Mockup */
/* ── ORB VISUAL ──────────────────────────────── */

.orb {
  position: relative;
  width: 360px;
  height: 360px;
}

.orb-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
}

/* Ring 1 — outermost, large dashed orbit */
.ring-1 {
  width: 640px; height: 640px;
  margin: -320px 0 0 -320px;
  border: 2px dashed rgba(111, 246, 255, 0.14);
  animation: spin1 35s linear infinite;
}

/* Ring 2 — bright accent ring */
.ring-2 {
  width: 510px; height: 510px;
  margin: -255px 0 0 -255px;
  border: 2.5px solid rgba(111, 246, 255, 0.06);
  border-top-color: rgba(111, 246, 255, 0.5);
  border-right-color: rgba(111, 246, 255, 0.25);
  animation: spin2 24s linear infinite;
  box-shadow: 0 0 20px rgba(111, 246, 255, 0.03);
}

/* Ring 3 — dashed reverse */
.ring-3 {
  width: 380px; height: 380px;
  margin: -190px 0 0 -190px;
  border: 2px dashed rgba(111, 246, 255, 0.15);
  animation: spin1 18s linear infinite reverse;
}

/* Ring 4 — bright accent */
.ring-4 {
  width: 260px; height: 260px;
  margin: -130px 0 0 -130px;
  border: 2.5px solid rgba(111, 246, 255, 0.06);
  border-top-color: rgba(111, 246, 255, 0.5);
  border-left-color: rgba(111, 246, 255, 0.2);
  animation: spin2 13s linear infinite;
  box-shadow: 0 0 15px rgba(111, 246, 255, 0.02);
}

/* Ring 5 — innermost ring */
.ring-5 {
  width: 140px; height: 140px;
  margin: -70px 0 0 -70px;
  border: 2px solid rgba(111, 246, 255, 0.2);
  border-bottom-color: rgba(111, 246, 255, 0.55);
  animation: spin1 9s linear infinite reverse;
}

/* Glowing core */
.orb-core {
  position: absolute;
  width: 32px; height: 32px;
  top: 50%; left: 50%;
  margin: -16px 0 0 -16px;
  background: radial-gradient(circle, #fff 0%, var(--cyan) 20%, rgba(111, 246, 255, 0.2) 55%, transparent 100%);
  border-radius: 50%;
  box-shadow:
    0 0 25px rgba(111, 246, 255, 0.7),
    0 0 60px rgba(111, 246, 255, 0.3),
    0 0 120px rgba(111, 246, 255, 0.1);
  animation: corePulse 4s ease-in-out infinite;
}

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

@keyframes corePulse {
  0%, 100% { box-shadow: 0 0 20px rgba(111,246,255,0.6), 0 0 50px rgba(111,246,255,0.25); transform: scale(1); }
  50% { box-shadow: 0 0 30px rgba(111,246,255,0.8), 0 0 80px rgba(111,246,255,0.3); transform: scale(1.12); }
}

@keyframes spin1 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes spin2 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

/* Accent dots on rings */
.ring-2::after,
.ring-4::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan), 0 0 24px rgba(111, 246, 255, 0.25);
}
.ring-2::after { top: -3px; left: 50%; margin-left: -3px; }
.ring-4::after { bottom: -3px; left: 50%; margin-left: -3px; }

.signal-hold {
  background: rgba(111, 246, 255, 0.1);
  color: var(--cyan) !important;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.6rem;
  text-align: center;
  display: inline-block;
}

.mini-card strong,
.metric strong,
.offer-card h3,
.card h3 {
  color: var(--text);
  display: block;
}

/* ═══════════════════════════════════════════
   TICKER
   ═══════════════════════════════════════════ */

.ticker-wrap {
  overflow: hidden;
  background: rgba(0,0,0,0.15);
  padding: 12px 0;
  position: relative;
  z-index: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

/* Scroll Indicator */
.scroll-indicator {
  display: flex;
  justify-content: center;
  padding: 6px 0 12px;
  position: relative;
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, var(--cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

.ticker {
  display: flex;
  gap: 56px;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

.ticker-item {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(157, 180, 191, 0.5);
  white-space: nowrap;
  text-transform: uppercase;
}

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

/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */

.stats-bar {
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after { opacity: 1; }

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: #041017;
  box-shadow: 0 8px 28px rgba(32, 214, 222, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 12px 36px rgba(32, 214, 222, 0.4);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}

.btn-secondary:hover {
  border-color: rgba(255, 155, 66, 0.5);
  background: rgba(255, 155, 66, 0.06);
}

.btn-sm {
  min-height: 38px;
  padding: 0 16px;
  font-size: 0.85rem;
}

.btn-block {
  display: flex;
  width: 100%;
  margin-top: 16px;
}

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */

.section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.alt {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.section-head {
  margin-bottom: 36px;
}

.section-head.center { text-align: center; }
.section-head.center h2 { max-width: none; margin-left: auto; margin-right: auto; }

.section-head.narrow p,
.section-head.narrow h2 {
  max-width: 14ch;
}

/* ═══════════════════════════════════════════
   CARDS — GENERIC
   ═══════════════════════════════════════════ */

.card-grid, .offer-grid, .metrics-grid {
  display: grid;
  gap: 20px;
}

.card-grid.three,
.offer-grid,
.metrics-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

/* Equal-height cards */
.card-grid.three article,
.offer-grid article,
.tiers-grid article {
  display: flex;
  flex-direction: column;
}

.card-grid.three article .price-row,
.card-grid.three article > .btn-block {
  margin-top: auto;
}

.offer-grid article ul { margin-top: auto; }

/* Tier cards: push buttons to bottom */
.tiers-grid article ul { margin-bottom: auto; }
.tiers-grid article .btn-block { margin-top: auto; }

.card, .glow-card, .mini-card, .offer-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before,
.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(111, 246, 255, 0.2), transparent 50%, rgba(255, 155, 66, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.card:hover::before,
.offer-card:hover::before {
  opacity: 1;
}

.card:hover,
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(111, 246, 255, 0.08);
  border-color: rgba(111, 246, 255, 0.28);
}

.card, .mini-card, .offer-card { padding: 28px; }

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(111, 246, 255, 0.06);
  border: 1px solid rgba(111, 246, 255, 0.12);
  transition: transform var(--transition), background var(--transition);
}

.card:hover .card-icon {
  transform: scale(1.1);
  background: rgba(111, 246, 255, 0.12);
}

.glow-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(13, 25, 37, 0.98), rgba(8, 14, 20, 0.96));
}

/* ── Offer Cards ── */

.offer-card {
  position: relative;
  background: linear-gradient(180deg, rgba(13, 24, 34, 0.9), rgba(8, 14, 20, 0.95));
}

.offer-card.featured {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.offer-card.featured:hover {
  transform: translateY(-10px);
}

.offer-card ul { padding-left: 18px; }
.offer-card li { margin-bottom: 6px; }

.kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition);
}

.offer-card:hover .kicker {
  background: rgba(111, 246, 255, 0.1);
}

/* ── Mini Cards ── */

.mini-card {
  border-radius: 16px;
  padding: 20px;
}

.mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(111, 246, 255, 0.25);
}

/* ── Two Column Layout ── */

.two-col {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.two-col > * { flex: 1; }

.stack { display: grid; gap: 16px; }

/* ═══════════════════════════════════════════
   LEAD MAGNET
   ═══════════════════════════════════════════ */

.lead-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-color: rgba(255, 155, 66, 0.3);
  position: relative;
  overflow: hidden;
}

.lead-wrap::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 155, 66, 0.1), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.lead-copy { flex: 1; position: relative; z-index: 1; }
.lead-copy h2 { margin-bottom: 8px; }
.lead-copy p { margin-bottom: 0; }

.lead-form {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.lead-form input[type="email"] {
  min-width: 260px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.lead-form input[type="email"]:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(111, 246, 255, 0.1);
}

/* ═══════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════ */

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text);
}

/* ═══════════════════════════════════════════
   MEMBERSHIP TIERS
   ═══════════════════════════════════════════ */

.tiers-wrap { margin-top: 48px; }

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tier-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 26px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.tier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.tier-card.featured {
  border-color: var(--line-strong);
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(13, 24, 34, 0.95), rgba(8, 14, 20, 0.98));
}

.tier-card.featured:hover {
  transform: translateY(-12px);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #041017;
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 16px rgba(255, 155, 66, 0.3);
}

.tier-card h3 {
  color: var(--text);
  margin-bottom: 8px;
}

.tier-price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 22px;
  line-height: 1;
}

.tier-price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.tier-card ul {
  padding-left: 18px;
  margin: 0 0 8px;
}

.tier-card ul li {
  margin-bottom: 10px;
}

/* ═══════════════════════════════════════════
   METRICS / WHY SECTION
   ═══════════════════════════════════════════ */

.metrics {
  /* Uniform with all other sections: 80px padding via .section */
}

.metric {
  display: grid;
  gap: 10px;
  text-align: left;
}

.metric strong {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  padding: 28px;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(111, 246, 255, 0.2);
  transform: translateY(-4px);
}

.testimonial-card p {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  color: #041017;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--text);
  font-size: 0.85rem;
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.7;
}

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */

.contact-wrap {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}

.contact-form {
  display: grid;
  gap: 12px;
  min-width: 360px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(111, 246, 255, 0.08);
}

.contact-form select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239db4bf' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.contact-form textarea { resize: vertical; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.site-footer {
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
}

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

.footer-brand .footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 32ch;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 4px;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.88rem;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-col a:hover {
  color: var(--cyan);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.82rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--cyan); }

/* ═══════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════ */

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: #041017;
  font-size: 1.2rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  box-shadow: 0 8px 28px rgba(32, 214, 222, 0.35);
  transform: translateY(-3px);
}

/* ═══════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════ */

.legal {
  padding: 120px 0 90px;
  position: relative;
  z-index: 1;
}

.legal article {
  max-width: 860px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 100vh;
    padding: 0;
  }

  .hero-orb-bg {
    width: 500px;
    height: 500px;
  }

  .hero-orb-bg .ring-1 { width: 480px; height: 480px; margin: -240px 0 0 -240px; }
  .hero-orb-bg .ring-2 { width: 380px; height: 380px; margin: -190px 0 0 -190px; }
  .hero-orb-bg .ring-3 { width: 280px; height: 280px; margin: -140px 0 0 -140px; }
  .hero-orb-bg .ring-4 { width: 190px; height: 190px; margin: -95px 0 0 -95px; }
  .hero-orb-bg .ring-5 { width: 100px; height: 100px; margin: -50px 0 0 -50px; }

  .hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
  }

  h1 { max-width: 16ch; }

  .two-col,
  .contact-wrap {
    flex-direction: column;
  }

  .offer-grid,
  .metrics-grid,
  .tiers-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .contact-form {
    min-width: auto;
    width: 100%;
  }

  .tier-card.featured { transform: none; }
  .offer-card.featured { transform: none; }

  /* Mobile nav */
  .hamburger { display: flex; }

  .mobile-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 100;
  }

  .mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav a {
    font-size: 1.2rem;
  }

  .lead-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .lead-form {
    flex-direction: column;
    align-items: stretch;
  }

  .lead-form input[type="email"] {
    min-width: auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }

  .hero { padding: 0; }

  .hero-orb-bg {
    width: 360px;
    height: 360px;
  }

  .hero-orb-bg .ring-1 { width: 340px; height: 340px; margin: -170px 0 0 -170px; }
  .hero-orb-bg .ring-2 { width: 270px; height: 270px; margin: -135px 0 0 -135px; }
  .hero-orb-bg .ring-3 { width: 200px; height: 200px; margin: -100px 0 0 -100px; }
  .hero-orb-bg .ring-4 { width: 140px; height: 140px; margin: -70px 0 0 -70px; }
  .hero-orb-bg .ring-5 { width: 75px; height: 75px; margin: -37px 0 0 -37px; }

  .hero-content h1 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .hero-content .lede {
    font-size: 0.82rem;
  }

  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-number { font-size: 2.2rem; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .container {
    width: min(1160px, calc(100% - 24px));
  }
}
