/* =========================================================
   INRange — landing page styles
   ========================================================= */

:root {
  --bg-0: #070a17;
  --bg-1: #0b1024;
  --bg-2: #121735;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --text: #e9ecff;
  --text-dim: #a6aed0;
  --text-mute: #7a82a6;

  --accent: #6ee7b7;        /* in-range mint */
  --accent-2: #60a5fa;      /* blue */
  --accent-3: #c084fc;      /* purple */
  --accent-4: #f472b6;      /* pink */
  --warn: #fbbf24;
  --bad:  #f87171;

  --grad: linear-gradient(135deg, #6ee7b7 0%, #60a5fa 50%, #c084fc 100%);
  --grad-soft: linear-gradient(135deg, rgba(110,231,183,0.18), rgba(192,132,252,0.18));

  --radius: 16px;
  --radius-lg: 24px;

  --shadow-lg: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 0 1px rgba(255,255,255,0.06), 0 30px 80px -20px rgba(96, 165, 250, 0.35);

  --maxw: 1200px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-0);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

p { margin: 0; color: var(--text-dim); }

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

/* ---------- Background aurora ---------- */
.bg-aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(96, 165, 250, 0.18), transparent 60%),
    radial-gradient(800px 600px at -10% 20%, rgba(192, 132, 252, 0.18), transparent 60%),
    radial-gradient(800px 500px at 50% 100%, rgba(110, 231, 183, 0.12), transparent 60%),
    var(--bg-0);
}

.blob {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
  animation: floaty 18s ease-in-out infinite;
}
.blob-1 { top: -120px; left: -80px; background: #5b9dff; }
.blob-2 { top: 30%; right: -120px; background: #b88cff; animation-delay: -6s; }
.blob-3 { bottom: -160px; left: 30%; background: #5ce0a8; animation-delay: -12s; }

@keyframes floaty {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(40px, -30px, 0) scale(1.08); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 18px max(24px, 5vw);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  background: rgba(10, 14, 30, 0.55);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(96,165,250,0.3);
}

.brand-name {
  font-size: 18px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 28px;
  color: var(--text-dim);
  font-weight: 500;
  font-size: 14.5px;
}
.nav-links a { transition: color 0.2s ease; }
.nav-links a:hover { color: var(--text); }

@media (max-width: 780px) {
  .nav-links { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad);
  color: #0a0f1e;
  box-shadow: 0 10px 30px -10px rgba(96,165,250,0.65);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 40px -10px rgba(96,165,250,0.75); }

.btn-secondary {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--surface); }

/* ---------- Layout ---------- */
main { display: block; }

.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 100px max(24px, 5vw);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-head h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  margin-bottom: 18px;
}

.section-head p { color: var(--text-dim); font-size: 18px; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-2);
  background: rgba(96,165,250,0.1);
  border: 1px solid rgba(96,165,250,0.25);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.kicker-light {
  color: var(--accent);
  background: rgba(110,231,183,0.1);
  border-color: rgba(110,231,183,0.3);
}

/* ---------- Hero ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 60px max(24px, 5vw) 40px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 80vh;
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 40px; min-height: auto; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(110,231,183,0.08);
  color: var(--accent);
  border: 1px solid rgba(110,231,183,0.22);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(110,231,183,0.8);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(110,231,183,0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(110,231,183,0); }
  100% { box-shadow: 0 0 0 0 rgba(110,231,183,0); }
}

.hero-copy h1 {
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.02;
  margin-bottom: 22px;
}

.lede {
  font-size: clamp(17px, 1.6vw, 20px);
  max-width: 560px;
  margin-bottom: 32px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cta-row.center { justify-content: center; }

.stats {
  margin-top: 48px;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.stat-num {
  font-size: 28px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { font-size: 13px; color: var(--text-mute); }

/* ---------- Hero devices ---------- */
.hero-devices {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}

@media (max-width: 960px) {
  .hero-devices { min-height: 520px; margin-top: 30px; }
}

/* iPhone mockup */
.phone {
  position: relative;
  width: 290px;
  height: 590px;
  border-radius: 46px;
  background: linear-gradient(180deg, #1a1f38 0%, #0c1024 100%);
  box-shadow:
    var(--shadow-lg),
    inset 0 0 0 2px rgba(255,255,255,0.08),
    inset 0 0 40px rgba(96,165,250,0.08);
  padding: 14px;
  animation: floatY 6s ease-in-out infinite;
  z-index: 2;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-14px) rotate(-3deg); }
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #04060f;
  border-radius: 14px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  background: linear-gradient(180deg, #0a0f22 0%, #0b1230 100%);
  padding: 50px 18px 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0 4px 4px;
}
.phone-title {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.phone-date {
  color: var(--text-mute);
  font-size: 12px;
  font-weight: 600;
}

.card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
}

.card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  font-weight: 700;
}

.chip {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.chip-good { background: rgba(110,231,183,0.15); color: var(--accent); }
.chip-info { background: rgba(96,165,250,0.15); color: var(--accent-2); }

.inr-value {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}
.inr-num {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.inr-trend {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(110,231,183,0.1);
  padding: 3px 8px;
  border-radius: 999px;
}

.sparkline {
  width: 100%;
  height: 46px;
  display: block;
  margin-bottom: 10px;
}

.range-bar {
  position: relative;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
  margin-top: 4px;
}
.range-fill {
  position: absolute;
  left: 25%;
  right: 25%;
  top: 0;
  bottom: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
}
.range-marker {
  position: absolute;
  top: -3px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #0c1024, 0 0 10px rgba(110,231,183,0.6);
  transform: translateX(-50%);
}
.range-labels {
  display: flex;
  justify-content: space-between;
  color: var(--text-mute);
  font-size: 10px;
  font-weight: 600;
  margin-top: 6px;
  padding: 0 22%;
}

.dose-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-dim);
}

.mini-btn {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--grad);
  color: #0a0f1e;
  border: 0;
  cursor: pointer;
}

.card-notif {
  display: flex;
  gap: 10px;
  align-items: center;
}
.notif-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(192,132,252,0.15);
  color: var(--accent-3);
  display: grid;
  place-items: center;
}
.notif-text { display: flex; flex-direction: column; font-size: 12px; }
.notif-text strong { font-size: 13px; font-weight: 700; color: var(--text); }
.notif-text span { color: var(--text-mute); }

/* Watch mockup */
.watch {
  position: absolute;
  right: 2%;
  bottom: 4%;
  width: 160px;
  transform: rotate(6deg);
  animation: floatY2 7s ease-in-out infinite;
  z-index: 3;
}

@keyframes floatY2 {
  0%, 100% { transform: translateY(0) rotate(6deg); }
  50% { transform: translateY(-10px) rotate(6deg); }
}

@media (max-width: 960px) {
  .watch { right: 4%; bottom: -6%; }
}

.watch-band {
  width: 78%;
  height: 32px;
  margin: 0 auto;
  background: linear-gradient(180deg, #1a1f38, #0c1024);
  border-radius: 20px;
}
.watch-band.top { border-radius: 20px 20px 6px 6px; }
.watch-band.bottom { border-radius: 6px 6px 20px 20px; }

.watch-case {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.2;
  background: linear-gradient(180deg, #14182d 0%, #090c1c 100%);
  border-radius: 30px;
  margin: -6px 0;
  padding: 10px;
  box-shadow:
    var(--shadow-lg),
    inset 0 0 0 2px rgba(255,255,255,0.1);
}

.watch-crown, .watch-button {
  position: absolute;
  right: -6px;
  background: linear-gradient(180deg, #2a2f4c, #14182d);
  border-radius: 3px;
}
.watch-crown {
  top: 28%;
  width: 6px;
  height: 22px;
}
.watch-button {
  top: 58%;
  width: 5px;
  height: 28px;
}

.watch-screen {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  background: radial-gradient(circle at 30% 20%, #1a2048 0%, #060814 80%);
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
}

.watch-time {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--accent);
  position: absolute;
  top: 16px;
  right: 16px;
  font-weight: 700;
}

.watch-complication {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.watch-ring {
  position: relative;
  width: 90px;
  height: 90px;
}

.ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.ring-bg { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 3; }
.ring-fg {
  fill: none;
  stroke: url(#watchgrad);
  stroke: #6ee7b7;
  stroke-width: 3;
  stroke-linecap: round;
  animation: ringGrow 2s ease-out 0.3s both;
}

@keyframes ringGrow {
  from { stroke-dasharray: 0, 100; }
}

.ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ring-val {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.ring-lbl {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  font-weight: 700;
}

.watch-status {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(110,231,183,0.12);
  padding: 3px 8px;
  border-radius: 999px;
}

.watch-actions {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}
.watch-action {
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border: 0;
  cursor: pointer;
}
.watch-action.primary {
  background: var(--grad);
  color: #0a0f1e;
}

/* ---------- Trust strip ---------- */
.trust {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 30px max(24px, 5vw);
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 44px;
  justify-content: center;
  align-items: center;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
}
.trust-item svg { color: var(--accent); }

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature {
  position: relative;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  overflow: hidden;
}

.feature::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--grad);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.feature:hover {
  transform: translateY(-4px);
  background: var(--surface-2);
}
.feature:hover::before { opacity: 0.6; }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 26px; height: 26px; }

.icon-green  { background: rgba(110,231,183,0.12); color: var(--accent); }
.icon-pink   { background: rgba(244,114,182,0.12); color: var(--accent-4); }
.icon-purple { background: rgba(192,132,252,0.12); color: var(--accent-3); }
.icon-blue   { background: rgba(96,165,250,0.12);  color: var(--accent-2); }
.icon-amber  { background: rgba(251,191,36,0.12);  color: var(--warn); }
.icon-teal   { background: rgba(45,212,191,0.12);  color: #2dd4bf; }

.feature h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.feature p {
  font-size: 15px;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.feature-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

/* ---------- Watch section ---------- */
.watch-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.watch-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  background: linear-gradient(135deg, rgba(110,231,183,0.07), rgba(96,165,250,0.05) 50%, rgba(192,132,252,0.07));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

@media (max-width: 900px) {
  .watch-showcase { grid-template-columns: 1fr; padding: 36px 24px; gap: 40px; }
}

.watch-showcase h2 {
  font-size: clamp(32px, 4vw, 46px);
  margin: 10px 0 18px;
}
.watch-showcase p {
  font-size: 17px;
  max-width: 500px;
  margin-bottom: 24px;
}

.watch-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.watch-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 15.5px;
  font-weight: 500;
}

.watch-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--grad);
  color: #0a0f1e;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.watch-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.watch-big {
  position: static;
  width: 240px;
  transform: rotate(-4deg);
  animation: floatY3 7s ease-in-out infinite;
}

@keyframes floatY3 {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-14px) rotate(-4deg); }
}

.orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  animation: orbitRotate 40s linear infinite;
}

@keyframes orbitRotate {
  to { transform: rotate(360deg); }
}

.orbit-dot {
  position: absolute;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: orbitReset 40s linear infinite;
}
@keyframes orbitReset {
  to { transform: rotate(-360deg); }
}

.orbit-1 { top: 6%;  left: 12%; }
.orbit-2 { top: 10%; right: 6%; color: var(--accent); }
.orbit-3 { bottom: 12%; left: 4%; color: var(--accent-2); }
.orbit-4 { bottom: 8%; right: 10%; color: var(--accent-3); }

/* ---------- Why INRange (compare) ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 740px) {
  .compare { grid-template-columns: 1fr; }
}

.compare-col {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.compare-col.is-featured {
  background: linear-gradient(135deg, rgba(110,231,183,0.06), rgba(96,165,250,0.08) 60%, rgba(192,132,252,0.06));
  border-color: rgba(96,165,250,0.25);
  box-shadow: var(--shadow-glow);
}

.compare-col.is-featured::before {
  content: "Best value";
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #0a0f1e;
  background: var(--grad);
  padding: 4px 10px;
  border-radius: 999px;
}

.compare-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.compare-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}
.compare-generic {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compare-name {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.compare-price {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}
.compare-price.muted { color: var(--text-mute); }

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.compare-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
  font-size: 14.5px;
  color: var(--text);
}
.compare-list li:last-child { border-bottom: 0; }

.muted-list li { color: var(--text-dim); }

.yes {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(110,231,183,0.15);
  color: var(--accent);
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}
.no {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(248,113,113,0.1);
  color: var(--bad);
  display: inline-grid;
  place-items: center;
  font-weight: 800;
  font-size: 11px;
  flex-shrink: 0;
}

/* ---------- Roadmap ---------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 780px) { .timeline { grid-template-columns: 1fr; } }

.timeline-col {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.timeline-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--text-dim);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-mute);
}
.dot-done   { background: var(--accent); box-shadow: 0 0 12px var(--accent); }
.dot-soon   { background: var(--accent-2); box-shadow: 0 0 12px var(--accent-2); animation: pulse 2s infinite; }
.dot-future { background: var(--accent-3); }

.timeline-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.timeline-col li {
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
}

/* ---------- CTA ---------- */
.cta {
  padding-top: 40px;
  padding-bottom: 120px;
}

.cta-card {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(110,231,183,0.08), rgba(96,165,250,0.08), rgba(192,132,252,0.08));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(96,165,250,0.2), transparent 60%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 14px;
  position: relative;
}
.cta-card p {
  position: relative;
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 28px;
}
.cta-card .cta-row { position: relative; }

.disclaimer {
  margin-top: 36px !important;
  font-size: 12px;
  color: var(--text-mute);
  max-width: 520px;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px max(24px, 5vw);
  background: rgba(5, 8, 20, 0.6);
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
@media (max-width: 780px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-links { justify-content: center; }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-tagline {
  font-size: 12px;
  color: var(--text-mute);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text-dim);
  font-size: 14px;
}
.footer-links a:hover { color: var(--text); }

.footer-meta { color: var(--text-mute); font-size: 12px; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Selection */
::selection {
  background: rgba(96,165,250,0.35);
  color: #fff;
}
