:root {
  color-scheme: dark;
  --bg: #070a10;
  --panel: rgba(18, 25, 38, 0.72);
  --panel-strong: rgba(22, 31, 48, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: #f7f9fc;
  --muted: #aab4c3;
  --dim: #788397;
  --blue: #54b5ff;
  --blue-soft: rgba(84, 181, 255, 0.16);
  --violet: #a18aff;
  --mint: #42d899;
  --orange: #ff8a3d;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
  --focus: 0 0 0 3px rgba(84, 181, 255, 0.35);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 83% 8%, rgba(84, 181, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 12% 22%, rgba(161, 138, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 55% 80%, rgba(66, 216, 153, 0.08), transparent 30rem),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 74px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.015) 0 1px, transparent 1px 74px),
    var(--bg);
  font-family: "Avenir Next", "SF Pro Display", -apple-system, BlinkMacSystemFont, ui-rounded, system-ui, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.035) 42.2%, transparent 43%),
    radial-gradient(circle at center, transparent 0, rgba(0, 0, 0, 0.34) 78%);
}

a { color: inherit; text-underline-offset: 0.18em; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

button { font: inherit; }

/* Example Review Banner */
.example-review-banner {
  background: linear-gradient(90deg, rgba(84, 181, 255, 0.15), rgba(161, 138, 255, 0.15));
  border-bottom: 1px solid rgba(84, 181, 255, 0.25);
  padding: 10px 20px;
  text-align: center;
  font-size: 0.85rem;
  color: #c7ddff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.example-review-banner strong { color: #fff; }
.example-review-banner a { text-decoration: underline; color: var(--blue); }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: 3px;
  pointer-events: none;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--mint));
  box-shadow: 0 0 18px rgba(84, 181, 255, 0.72);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: max(16px, env(safe-area-inset-left));
  z-index: 40;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--blue);
  color: #07111e;
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 10, 16, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav,
.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.nav {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.brand img { width: 34px; height: 34px; border-radius: 9px; }

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.nav-links a,
.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  touch-action: manipulation;
  transition: color 0.16s ease, background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.button {
  gap: 8px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button:hover { border-color: var(--line-strong); transform: translateY(-2px); }

.button.primary {
  border-color: rgba(84, 181, 255, 0.76);
  background: linear-gradient(135deg, #8ed8ff, #3989e8);
  color: #07111e;
  box-shadow: 0 14px 38px rgba(84, 181, 255, 0.25);
}

.button-arrow { color: currentColor; font-size: 1.08em; }

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
  padding: clamp(62px, 9vw, 104px) 0 58px;
}

.hero > * { min-width: 0; }
.hero-copy-block { max-width: 690px; }

.eyebrow,
.section-index {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 14px;
  border: 1px solid rgba(84, 181, 255, 0.38);
  border-radius: 999px;
  background: var(--blue-soft);
  color: #b9e5ff;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  letter-spacing: -0.06em;
  background: linear-gradient(180deg, #ffffff 10%, #dbe7f7 52%, #8f9dad 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accent-word {
  background: linear-gradient(110deg, #f4f8ff, #83d4ff 45%, #b9a5ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 29px;
}

.hero-note,
.cta-note {
  margin: 18px 0 0;
  color: var(--dim);
  font-size: 0.9rem;
}

.hero-note span { color: var(--blue); }

/* Product Visual & Phone Cards */
.product-visual {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(190px, 1fr);
  gap: 18px;
  align-items: start;
  margin: 0;
  isolation: isolate;
}

.product-visual::before {
  position: absolute;
  top: 8%;
  right: 2%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84, 181, 255, 0.22), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
  content: "";
}

.visual-orbit {
  position: absolute;
  inset: 4% 8% 7% 12%;
  z-index: -1;
  border: 1px solid rgba(84, 181, 255, 0.2);
  border-radius: 50%;
  transform: rotate(-18deg);
  animation: orbit-breathe 8s ease-in-out infinite;
}

.app-icon-stack {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding-top: 42px;
}

.app-icon {
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 21px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.42), 0 0 0 8px rgba(84, 181, 255, 0.07);
  animation: icon-float 5s ease-in-out infinite;
}

.icon-tag {
  color: var(--blue);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-align: center;
  writing-mode: vertical-rl;
}

.phone-stage {
  position: relative;
  grid-column: 2;
  min-height: 560px;
  isolation: isolate;
}

.phone-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(150, 201, 255, 0.35);
  border-radius: 28px;
  background: #0e1728;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 0 8px rgba(84, 181, 255, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.phone-card:hover {
  border-color: rgba(84, 181, 255, 0.6);
}

.phone-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 22%, transparent 74%, rgba(84, 181, 255, 0.12));
  content: "";
}

.phone-card img {
  display: block;
  width: 100%;
  height: auto;
}

.phone-card--home {
  top: 0;
  right: 3%;
  z-index: 2;
  width: min(280px, 74%);
  transform: rotate(4deg);
  animation: screen-drift 7s ease-in-out infinite;
}

.phone-card--onboarding {
  top: 76px;
  left: 0;
  z-index: 1;
  width: min(210px, 57%);
  opacity: 0.9;
  transform: rotate(-8deg);
  animation: screen-drift-secondary 8s ease-in-out infinite;
}

.phone-card-label {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(5, 9, 16, 0.85);
  color: #d8edff;
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.screenshot-signal {
  position: absolute;
  right: 0;
  bottom: 24px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid rgba(66, 216, 153, 0.35);
  border-radius: 999px;
  background: rgba(13, 31, 28, 0.88);
  color: #bff6d9;
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 0 15px 32px rgba(0, 0, 0, 0.35);
}

.screenshot-signal i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
}

.phone-caption {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: var(--dim);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

/* Section Header */
.section-header,
.demo-section-header,
.feature-section-header,
.troubleshooting-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 76px 0 30px;
  border-top: 1px solid var(--line);
}

.section-header h2,
.demo-section-header h2,
.feature-section-header h2,
.privacy-panel h2,
.troubleshooting-header h2,
.final-cta h2 {
  max-width: 650px;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  letter-spacing: -0.05em;
}

.section-lede,
.demo-section-header p,
.feature-section-header p,
.troubleshooting-header p,
.privacy-panel > div:first-child p,
.final-cta-copy > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.section-index {
  margin-bottom: 15px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--blue);
  letter-spacing: 0.16em;
}

/* Demo Section & Upgraded Video Phone Frame */
.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
}

.video-showcase-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 740px;
  padding: 28px 0 14px;
  isolation: isolate;
}

.video-showcase-stage::before {
  position: absolute;
  bottom: 88px;
  left: 50%;
  width: 230px;
  height: 54px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.72);
  content: "";
  filter: blur(20px);
  opacity: 0.8;
  pointer-events: none;
  transform: translateX(-50%);
  z-index: 0;
}

.video-ambient-glow {
  position: absolute;
  top: 15%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84, 181, 255, 0.28), rgba(161, 138, 255, 0.16), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: video-ambient-breathe 7s ease-in-out infinite;
}

.video-phone-frame {
  position: relative;
  z-index: 2;
  width: min(318px, 90%);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 52px;
  padding: 12px;
  background:
    linear-gradient(145deg, #f4f5f7 0%, #9298a2 12%, #2d333d 29%, #080b11 52%, #69717c 78%, #e9edf2 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -2px 0 rgba(0, 0, 0, 0.5),
    0 0 0 4px rgba(8, 13, 22, 0.92),
    0 28px 72px -12px rgba(0, 0, 0, 0.86),
    0 0 70px rgba(84, 181, 255, 0.22);
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-style: preserve-3d;
}

.video-phone-frame::before,
.video-phone-frame::after {
  position: absolute;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.video-phone-frame::before {
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(5, 9, 16, 0.6),
    inset 0 18px 24px rgba(255, 255, 255, 0.06);
  z-index: 1;
}

.video-phone-frame::after {
  inset: 9px;
  border: 1px solid rgba(0, 0, 0, 0.62);
  z-index: 1;
}

.video-phone-frame:hover {
  transform: translateY(-6px) rotateY(-1deg) rotateX(0.5deg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -2px 0 rgba(0, 0, 0, 0.52),
    0 0 0 4px rgba(19, 32, 48, 0.96),
    0 36px 90px -10px rgba(0, 0, 0, 0.9),
    0 0 84px rgba(84, 181, 255, 0.3);
}

.video-phone-controls {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 7px;
  z-index: 5;
  pointer-events: none;
}

.video-phone-controls--left { left: -5px; }
.video-phone-controls--right { right: -5px; }

.video-phone-button {
  position: absolute;
  display: block;
  width: 5px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 4px 0 0 4px;
  background: linear-gradient(90deg, #8f98a3, #27303b 58%, #080b10);
  box-shadow: 1px 0 2px rgba(0, 0, 0, 0.65);
}

.video-phone-controls--right .video-phone-button {
  border-radius: 0 4px 4px 0;
  box-shadow: -1px 0 2px rgba(0, 0, 0, 0.65);
}

.video-phone-button--action { top: 96px; height: 25px; }
.video-phone-button--volume-up { top: 143px; height: 43px; }
.video-phone-button--volume-down { top: 195px; height: 43px; }
.video-phone-button--lock { top: 150px; height: 74px; }

.video-dynamic-island {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 25px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: #020305;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.08),
    0 1px 5px rgba(0, 0, 0, 0.7);
  z-index: 10;
}

.video-screen-container {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  overflow: hidden;
  clip-path: inset(0 round 40px);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  background: #000;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(0, 0, 0, 0.52),
    0 12px 22px rgba(0, 0, 0, 0.28);
  z-index: 2;
}

.video-screen-container video {
  display: block;
  width: 100%;
  aspect-ratio: 11 / 24;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  filter: saturate(1.015) contrast(1.005);
}

.video-glare-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(116deg, rgba(255, 255, 255, 0.14) 0%, transparent 18%, transparent 54%, rgba(84, 181, 255, 0.1) 100%),
    radial-gradient(circle at 50% -5%, rgba(255, 255, 255, 0.12), transparent 32%);
  mix-blend-mode: screen;
  opacity: 0.42;
  z-index: 4;
}

.video-phone-chin {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.video-home-bar {
  width: 96px;
  height: 4px;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.18);
}

.video-floating-badge {
  position: absolute;
  z-index: 5;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(14, 20, 32, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 750;
  color: #eaf4ff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 7px;
  pointer-events: none;
}

.video-badge--top {
  top: 8px;
  left: -6px;
  animation: badge-float 4s ease-in-out infinite;
}

.video-badge--bottom {
  bottom: 50px;
  right: -8px;
  animation: badge-float 4s ease-in-out infinite 2s;
}

.video-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint);
  animation: dot-pulse 2s infinite;
}

.video-badge-icon {
  font-size: 0.85rem;
  color: var(--blue);
}

@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

@keyframes video-ambient-breathe {
  0%, 100% { opacity: 0.8; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.04); }
}

.video-stage-caption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
  max-width: 320px;
}

.video-stage-caption strong {
  color: var(--text);
}

.app-store-previews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.store-preview {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.store-preview:hover {
  transform: translateY(-4px);
  border-color: rgba(84, 181, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.store-preview img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 415 / 900;
  object-fit: contain;
}

.store-preview figcaption {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  background: rgba(5, 9, 16, 0.85);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
}

.store-preview figcaption span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 850;
}

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

.feature-card {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(22, 32, 48, 0.7), rgba(9, 14, 24, 0.9));
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

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

.feature-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.feature-icon-box--blue {
  background: linear-gradient(135deg, rgba(84, 181, 255, 0.25), rgba(57, 137, 232, 0.25));
  color: var(--blue);
  border: 1px solid rgba(84, 181, 255, 0.4);
}

.feature-icon-box--violet {
  background: linear-gradient(135deg, rgba(161, 138, 255, 0.25), rgba(124, 58, 237, 0.25));
  color: var(--violet);
  border: 1px solid rgba(161, 138, 255, 0.4);
}

.feature-icon-box--mint {
  background: linear-gradient(135deg, rgba(66, 216, 153, 0.25), rgba(5, 150, 105, 0.25));
  color: var(--mint);
  border: 1px solid rgba(66, 216, 153, 0.4);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Setup Section */
.setup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.setup-panel {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(22, 32, 48, 0.7), rgba(9, 14, 24, 0.9));
  box-shadow: var(--shadow);
}

.setup-panel h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.setup-panel > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step-count;
}

.step-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.5;
}

.step-list li::before {
  counter-increment: step-count;
  content: counter(step-count);
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  background: var(--blue-soft);
  border: 1px solid rgba(84, 181, 255, 0.4);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  display: grid;
  place-items: center;
}

.permission-note {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(84, 181, 255, 0.3);
  border-radius: 12px;
  background: rgba(84, 181, 255, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.86rem;
  line-height: 1.55;
  color: #d2e4f7;
}

.permission-icon {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Privacy Panel */
.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: clamp(36px, 5vw, 56px);
  margin-top: 40px;
  border: 1px solid rgba(66, 216, 153, 0.28);
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(14, 34, 30, 0.8), rgba(7, 14, 20, 0.95));
  box-shadow: var(--shadow);
}

.privacy-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--mint);
  font-weight: 750;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.15s ease;
}

.privacy-link:hover { transform: translateX(3px); }

.privacy-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.privacy-check {
  color: var(--mint);
  flex-shrink: 0;
}

/* Troubleshooting / FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-list details:hover {
  border-color: var(--line-strong);
}

.faq-list summary {
  padding: 18px 22px;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--blue);
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* Final CTA Section */
.final-cta {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: clamp(40px, 6vw, 68px) 0 88px;
}

.final-cta-art {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cta-icon-halo {
  position: absolute;
  top: 10px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84, 181, 255, 0.3), rgba(161, 138, 255, 0.2), transparent 70%);
  filter: blur(20px);
  z-index: 1;
}

.final-cta-art img {
  position: relative;
  z-index: 2;
  width: 120px;
  height: 120px;
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5), 0 0 0 8px rgba(84, 181, 255, 0.08);
}

.final-cta-art span {
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.final-cta-copy h2 {
  font-size: clamp(2.35rem, 5vw, 3.8rem);
  letter-spacing: -0.045em;
  margin-bottom: 12px;
}

/* Footer */
.footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.88rem;
}

.footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

/* Keyframe Animations */
@keyframes screen-drift {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-8px); }
}

@keyframes screen-drift-secondary {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(8px); }
}

@keyframes icon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes orbit-breathe {
  0%, 100% { transform: rotate(-18deg) scale(1); opacity: 0.6; }
  50% { transform: rotate(-18deg) scale(1.05); opacity: 1; }
}

/* Responsive */
@media (max-width: 640px) {
  .nav {
    flex-wrap: wrap;
    gap: 6px 12px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-links {
    flex: 1 1 100%;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0;
  }

  .nav-links a,
  .nav-links .button {
    min-height: 34px;
    padding: 0 5px;
    font-size: 0.68rem;
    white-space: nowrap;
  }

  .nav-links .button.primary {
    padding-right: 9px;
    padding-left: 9px;
  }

  .nav-links .button-arrow {
    display: none;
  }

  .app-store-previews {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .video-showcase-stage {
    min-height: 680px;
    padding-top: 22px;
  }

  .video-phone-frame {
    width: min(318px, 84vw);
  }

  .video-floating-badge {
    font-size: 0.65rem;
  }

  .video-badge--top { left: 2px; }
  .video-badge--bottom { right: 2px; }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy-block {
    margin: 0 auto;
  }

  .eyebrow {
    margin: 0 auto 18px;
  }

  .hero-actions {
    justify-content: center;
  }

  .product-visual {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .app-icon-stack {
    display: none;
  }

  .phone-stage {
    grid-column: 1;
    min-height: 480px;
  }

  .section-header,
  .demo-section-header,
  .feature-section-header,
  .troubleshooting-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .demo-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .setup-grid {
    grid-template-columns: 1fr;
  }

  .privacy-panel {
    grid-template-columns: 1fr;
  }

  .final-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-cta-copy .hero-actions {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
