:root {
  color-scheme: dark;
  --bg: #05070c;
  --bg-soft: #090d16;
  --panel: #0f1b2c;
  --panel-2: #142235;
  --panel-3: #1b2f48;
  --text: #eef6ff;
  --muted: #a9b8ca;
  --muted-2: #748399;
  --blue: #4d8dff;
  --blue-2: #78aaff;
  --cyan: #75d9ff;
  --green: #76f2b6;
  --border: rgba(148, 185, 255, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 32px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

.background-grid {
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(rgba(77, 141, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 141, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 0%, black, transparent 72%);
  opacity: 0.45;
}

.orb {
  position: fixed;
  z-index: -3;
  width: 42vw;
  height: 42vw;
  min-width: 420px;
  min-height: 420px;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.24;
  pointer-events: none;
}
.orb-one { top: -12vw; left: -12vw; background: #2563eb; }
.orb-two { right: -14vw; top: 38vh; background: #0ea5e9; opacity: 0.16; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}
.site-header::before {
  content: "";
  position: fixed;
  inset: 0 0 auto 0;
  height: 82px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 7, 12, 0.92), rgba(5, 7, 12, 0));
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 1.25rem;
}
.brand img { width: 38px; height: 38px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}
.nav-links a { transition: color 180ms ease; }
.nav-links a:hover { color: var(--text); }

.section-shell {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 0.96fr);
  align-items: center;
  gap: 54px;
  padding-top: 92px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--blue-2);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 30px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 24px rgba(77, 141, 255, 0.55);
}
h1, h2, h3 { overflow-wrap: normal; word-break: normal; }
p { overflow-wrap: break-word; }
h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(3.05rem, 5.85vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: -0.062em;
  text-wrap: balance;
}
.headline-line {
  display: block;
}
.brand-word {
  white-space: nowrap;
}
.hero-copy,
h1,
.headline-line {
  overflow: visible;
}
h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}
h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}
.hero-subtitle,
.section-heading p,
.showcase-copy p,
.cta p,
.disclaimer p {
  color: var(--muted);
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
}
.hero-subtitle { max-width: 700px; margin: 28px 0 0; }
.hero-actions, .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.store-button, .plan-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  border-radius: 999px;
  border: 1px solid rgba(120, 170, 255, 0.36);
  background: linear-gradient(135deg, #4d8dff, #6ba2ff);
  color: white;
  box-shadow: 0 16px 42px rgba(77, 141, 255, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.store-button {
  flex-direction: column;
  align-items: flex-start;
  min-width: 190px;
  padding: 12px 24px;
}
.store-button small { color: rgba(255,255,255,0.78); font-weight: 700; }
.store-button strong { font-size: 1.1rem; }
.store-button.ghost {
  background: rgba(15, 27, 44, 0.72);
  color: var(--text);
  box-shadow: none;
}
.disabled { cursor: default; }
.store-button:hover, .plan-button:hover { transform: translateY(-2px); border-color: rgba(120, 170, 255, 0.7); }
.signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.signal-strip span {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(15, 27, 44, 0.68);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-visual { min-height: 640px; display: flex; align-items: center; justify-content: center; }
.phone-stack {
  position: relative;
  width: min(100%, 460px);
  min-height: 660px;
}
.phone-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 44px;
  border: 1px solid rgba(148, 185, 255, 0.22);
  background: #07101b;
  box-shadow: var(--shadow), inset 0 0 0 8px rgba(255, 255, 255, 0.035);
}
.phone-frame img {
  width: 100%;
  height: auto;
  border-radius: 38px;
}
.phone-front {
  position: absolute;
  width: 72%;
  right: 0;
  top: 0;
  transform: rotate(3deg);
  animation: floatPhone 5.8s ease-in-out infinite;
}
.phone-back {
  position: absolute;
  width: 66%;
  left: 0;
  top: 105px;
  transform: rotate(-8deg);
  opacity: 0.78;
  filter: saturate(0.95) brightness(0.72);
}
.single-phone {
  width: min(100%, 380px);
  justify-self: center;
}
@keyframes floatPhone {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}
.section-heading p { max-width: 760px; }
.problem-grid, .feature-grid, .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.problem-card, .feature-card, .price-card, .step, .cta-panel, .disclaimer {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(20, 34, 53, 0.82), rgba(9, 13, 22, 0.82));
  border-radius: var(--radius);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.24);
}
.problem-card, .feature-card, .price-card, .step { padding: 28px; }
.problem-card p, .feature-card p, .step p, .price-card p, .price-card li, .check-list li { color: var(--muted); }
.icon-bubble {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 15px;
  color: var(--blue-2);
  background: rgba(77, 141, 255, 0.12);
  border: 1px solid rgba(77, 141, 255, 0.2);
  font-weight: 900;
}

.timeline-layout, .showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: 48px;
}
.steps { display: grid; gap: 18px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.step h3, .step p { grid-column: 2; }
.step p { margin: 0; }
.step-number {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(77, 141, 255, 0.14);
  color: var(--blue-2);
  font-weight: 900;
}
.feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-card {
  min-height: 210px;
  background:
    radial-gradient(circle at top right, rgba(77, 141, 255, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(20, 34, 53, 0.82), rgba(9, 13, 22, 0.86));
}
.showcase-copy { max-width: 660px; }
.check-list { display: grid; gap: 12px; padding: 0; margin: 28px 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 32px; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 22px rgba(117, 217, 255, 0.25);
}

.pricing-grid { align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; }
.price-card.featured {
  border-color: rgba(120, 170, 255, 0.55);
  background:
    radial-gradient(circle at top, rgba(77, 141, 255, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(27, 47, 72, 0.95), rgba(11, 18, 30, 0.95));
  transform: translateY(-12px);
}
.popular {
  position: absolute;
  right: 22px;
  top: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(118, 242, 182, 0.13);
  color: var(--green);
  border: 1px solid rgba(118, 242, 182, 0.26);
  font-weight: 900;
  font-size: 0.78rem;
}
.price-header { padding-right: 84px; }
.price {
  margin-top: 28px;
  font-size: 3.2rem;
  font-weight: 950;
  letter-spacing: -0.06em;
}
.price span { font-size: 1.7rem; vertical-align: super; }
.price small { color: var(--muted); font-size: 1rem; letter-spacing: 0; }
.annual { margin: -8px 0 18px; color: var(--blue-2) !important; font-weight: 800; }
.price-card ul { padding: 0; margin: 0 0 26px; list-style: none; display: grid; gap: 11px; }
.price-card li { position: relative; padding-left: 24px; }
.price-card li::before { content: "•"; position: absolute; left: 0; color: var(--blue-2); font-weight: 900; }
.plan-button { margin-top: auto; min-height: 50px; padding: 0 20px; background: rgba(77, 141, 255, 0.12); box-shadow: none; font-weight: 900; }
.plan-button.primary { background: linear-gradient(135deg, #4d8dff, #6ba2ff); }

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  background:
    radial-gradient(circle at 15% 10%, rgba(77, 141, 255, 0.28), transparent 32%),
    radial-gradient(circle at 85% 55%, rgba(117, 217, 255, 0.16), transparent 36%),
    linear-gradient(135deg, #111f32, #080c14);
}
.cta-panel h2 { max-width: 760px; }
.cta-panel p { max-width: 720px; }
.disclaimer {
  padding: 26px 30px;
  margin-top: -44px;
  margin-bottom: 40px;
}
.disclaimer p { margin: 0; font-size: 1rem; }
.site-footer { border-top: 1px solid var(--border); background: rgba(5, 7, 12, 0.72); }
.footer-inner {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
}
.footer-inner .brand { color: var(--text); }
.footer-inner p { margin: 0; }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 120ms; }
.reveal-delay-2 { transition-delay: 220ms; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .section-shell { padding: 76px 0; }
  .hero, .timeline-layout, .showcase, .cta-panel { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .hero-visual { min-height: 590px; }
  .phone-stack { min-height: 600px; max-width: 420px; }
  .problem-grid, .pricing-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .cta-buttons { margin-top: 0; }
}

@media (max-width: 620px) {
  .site-header, .section-shell, .footer-inner { width: min(100% - 28px, var(--max-width)); }
  .brand { font-size: 1.05rem; }
  .brand img { width: 34px; height: 34px; }
  h1 {
    font-size: clamp(2.55rem, 15.5vw, 4.05rem);
    line-height: 0.98;
    letter-spacing: -0.058em;
  }
  h2 { font-size: clamp(2.1rem, 12vw, 3rem); }
  .hero-subtitle, .section-heading p, .showcase-copy p, .cta p { font-size: 1rem; }
  .hero-actions, .cta-buttons { display: grid; grid-template-columns: 1fr; }
  .store-button { width: 100%; }
  .hero-visual { min-height: 505px; }
  .phone-stack { min-height: 500px; max-width: 330px; }
  .phone-front { width: 73%; }
  .phone-back { width: 68%; top: 78px; }
  .phone-frame { border-radius: 34px; box-shadow: 0 18px 54px rgba(0,0,0,0.45), inset 0 0 0 6px rgba(255,255,255,0.035); }
  .phone-frame img { border-radius: 30px; }
  .problem-card, .feature-card, .price-card, .step { padding: 22px; border-radius: 24px; }
  .step { grid-template-columns: 1fr; }
  .step h3, .step p { grid-column: auto; }
  .step-number { grid-row: auto; }
  .popular { position: static; width: fit-content; margin-bottom: 16px; }
  .price-header { padding-right: 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

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