:root {
  --bg-deep: #050816;
  --bg-mid: #08122A;
  --bg-app: #0D1117;
  --surface-card-deep: #0A1731;
  --surface-inset: #0B1427;
  --surface-elevated: #101B34;
  --surface-raised: #14203A;
  --surface-action: #162238;
  --surface-pill: #12203C;
  --line: rgba(189, 185, 255, 0.14);
  --line-strong: rgba(189, 185, 255, 0.25);
  --line-blue: rgba(157, 151, 255, 0.20);
  --brand: #6C63FF;
  --brand-soft: #9D97FF;
  --accent: #BDB9FF;
  --text: #FFFFFF;
  --body: #D0D8EA;
  --body-soft: #C8D3E8;
  --muted: #8FA0C2;
  --success: #43D17A;
  --warning: #FFB547;
  --error: #FF6B6B;
  --sand: #D6B38A;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.28);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--body);
  background:
    radial-gradient(circle at 16% 8%, rgba(108, 99, 255, 0.20), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(157, 151, 255, 0.16), transparent 28%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 46%, var(--bg-app) 100%);
  min-height: 100vh;
  letter-spacing: -0.014em;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.42), transparent 82%);
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
img { display: block; max-width: 100%; }
strong { color: var(--text); }
main, header, footer, .container { position: relative; z-index: 1; }
.container { width: min(100% - 44px, var(--max)); margin-inline: auto; }

.ambient {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(6px);
  opacity: 0.52;
}
.ambient-one {
  width: 360px;
  height: 360px;
  left: -120px;
  top: 140px;
  background: radial-gradient(circle, rgba(108,99,255,.28), transparent 68%);
  animation: ambient-one 15s ease-in-out infinite alternate;
}
.ambient-two {
  width: 460px;
  height: 460px;
  right: -190px;
  top: 420px;
  background: radial-gradient(circle, rgba(157,151,255,.18), transparent 70%);
  animation: ambient-two 18s ease-in-out infinite alternate;
}
@keyframes ambient-one { to { transform: translate3d(30px, 34px, 0) scale(1.08); opacity: .7; } }
@keyframes ambient-two { to { transform: translate3d(-34px, -24px, 0) scale(1.05); opacity: .62; } }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(189,185,255,.08);
  background: linear-gradient(180deg, rgba(5,8,22,.90), rgba(5,8,22,.62));
  backdrop-filter: blur(24px);
}
.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.logo { width: 34px; height: 34px; object-fit: contain; }
.brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: rgba(108, 99, 255, .08);
  border: 1px solid rgba(157, 151, 255, .18);
}
.wordmark { height: 28px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  color: var(--body-soft);
  font-size: 14px;
  font-weight: 650;
}
.nav-links a:not(.nav-cta) { opacity: .92; }
.nav-links a:not(.nav-cta):hover { color: var(--text); opacity: 1; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--brand-soft), var(--brand));
  color: var(--text);
  box-shadow: 0 14px 34px rgba(108,99,255,.32);
}

.hero-shell { padding: 74px 0 18px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  align-items: center;
  gap: 54px;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(189,185,255,.16);
  background: rgba(18,32,60,.66);
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 18px rgba(67,209,122,.55);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 24px 0 22px;
  color: var(--text);
  font-size: clamp(56px, 7.8vw, 98px);
  line-height: .98;
  letter-spacing: -0.065em;
  max-width: 760px;
}
.hero-lead {
  max-width: 590px;
  margin-bottom: 32px;
  color: var(--body-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--brand-soft), var(--brand));
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 46px rgba(108,99,255,.34);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 22px 58px rgba(108,99,255,.42); }
.button.secondary {
  background: rgba(11,20,39,.58);
  color: var(--body-soft);
  border-color: rgba(189,185,255,.28);
  box-shadow: none;
}
.button.secondary:hover { border-color: rgba(189,185,255,.46); color: var(--text); }
.play-dot { font-size: 12px; margin-right: 9px; opacity: .82; }

.hero-shot-wrap {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}
.halo {
  position: absolute;
  inset: 8% 0 8% auto;
  width: 520px;
  max-width: 100%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(108,99,255,.34), rgba(108,99,255,.12) 34%, transparent 68%);
  filter: blur(4px);
  animation: breathe 8s ease-in-out infinite alternate;
}
@keyframes breathe { to { transform: scale(1.06); opacity: .82; } }
.phone-frame {
  position: relative;
  overflow: hidden;
  background: #060915;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,.04);
}
.phone-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  z-index: 2;
}
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-phone {
  width: min(360px, 82vw);
  aspect-ratio: 9 / 16;
  border-radius: 42px;
  transform: rotate(1deg);
}
.hero-phone::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 26px;
  border-radius: 999px;
  background: rgba(0,0,0,.72);
  z-index: 3;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px 0 38px;
}
.trust-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(16,27,52,.84);
  border: 1px solid rgba(189,185,255,.13);
  color: var(--body-soft);
  font-weight: 750;
  box-shadow: var(--shadow-soft);
}
.trust-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  box-shadow: 0 0 16px rgba(157,151,255,.36);
}
.trust-dot.android { border-color: var(--success); }
.trust-dot.star { border-color: var(--brand-soft); }
.trust-dot.heart { border-color: var(--error); }

.statement-section {
  padding: 58px 22px 48px;
  text-align: center;
  border-top: 1px solid rgba(189,185,255,.10);
}
.statement-section .section-kicker { margin: 0 auto 18px; }
.statement-section h2,
.section-heading h2,
.moment-copy h2,
.trust-card h2,
.final-cta h2,
.doc-hero h1 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.statement-section p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--body-soft);
  font-size: 19px;
  line-height: 1.68;
}

.section-block { padding: 42px 0; }
.section-heading { margin-bottom: 28px; }
.section-heading.centered { text-align: center; }
.section-heading.centered .section-kicker { margin: 0 auto 14px; }
.section-heading p { max-width: 720px; margin: 0 auto; color: var(--body-soft); line-height: 1.7; font-size: 18px; }
.journey-block {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(16,27,52,.72), rgba(10,23,49,.46));
  border: 1px solid rgba(189,185,255,.16);
  box-shadow: var(--shadow-soft);
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.journey-card {
  position: relative;
  min-width: 0;
  padding: 0 0 2px;
}
.step-number {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-soft), var(--brand));
  color: white;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 12px;
}
.journey-card h3 {
  min-height: 50px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.032em;
  margin-bottom: 14px;
}
.mini-phone {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 440px;
  border-radius: 30px;
  margin-bottom: 14px;
}

.focus-split {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: min(440px, 62vw);
  margin-bottom: 14px;
}
.focus-slice {
  width: 100%;
  min-height: 0;
  border-radius: 26px;
}
.focus-slice img {
  object-fit: cover;
  object-position: top center;
}
.focus-split .focus-slice:nth-child(2) img {
  object-position: center 52%;
}
.journey-card p {
  margin: 0;
  color: var(--body-soft);
  font-size: 15px;
  line-height: 1.55;
}

.product-moment {
  margin-top: 42px;
  padding: 40px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 20%, rgba(108,99,255,.18), transparent 42%),
    linear-gradient(180deg, rgba(16,27,52,.78), rgba(10,23,49,.52));
  border: 1px solid rgba(189,185,255,.16);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.wide-shot { min-height: 340px; display: flex; align-items: center; justify-content: center; }
.landscape-crop {
  width: min(440px, 100%);
  height: 340px;
  border-radius: 34px;
}
.landscape-crop img { object-position: top center; }
.moment-copy p {
  color: var(--body-soft);
  font-size: 19px;
  line-height: 1.7;
  margin: 0;
}
.moment-copy .section-kicker { margin-bottom: 16px; }

.trust-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 42px 0 18px;
}
.trust-card {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(16,27,52,.86), rgba(10,23,49,.62));
  border: 1px solid rgba(189,185,255,.14);
  box-shadow: var(--shadow-soft);
}
.card-icon {
  display: inline-flex;
  color: var(--brand-soft);
  font-size: 34px;
  margin-bottom: 10px;
}
.trust-card h2 { font-size: clamp(28px, 3vw, 38px); }
.trust-card p, .trust-card li {
  color: var(--body-soft);
  font-size: 17px;
  line-height: 1.7;
}
ul { padding-left: 20px; margin: 0 0 18px; }
li { margin-bottom: 8px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-soft);
  font-weight: 850;
}
.text-link:hover { color: var(--accent); }

.premium-section {
  padding: 54px 0 36px;
}
.premium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.premium-grid article {
  padding: 24px;
  border-radius: 22px;
  background: rgba(16,27,52,.84);
  border: 1px solid rgba(189,185,255,.13);
  box-shadow: var(--shadow-soft);
}
.premium-grid span { color: var(--brand-soft); font-size: 28px; }
.premium-grid h3 { margin: 14px 0 8px; color: var(--text); font-size: 18px; }
.premium-grid p { margin: 0; color: var(--body-soft); line-height: 1.58; font-size: 14px; }

.final-cta {
  margin-top: 24px;
  padding: 64px 0;
  text-align: center;
  border-top: 1px solid rgba(189,185,255,.10);
  border-bottom: 1px solid rgba(189,185,255,.10);
  background: radial-gradient(circle at center, rgba(108,99,255,.18), transparent 48%);
}
.final-cta p {
  margin: 0 auto 24px;
  max-width: 560px;
  color: var(--body-soft);
  font-size: 18px;
  line-height: 1.65;
}
.center-actions { justify-content: center; }

.footer {
  padding: 30px 0 36px;
  color: var(--muted);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.rich-footer { align-items: flex-start; }
.footer-brand p { max-width: 340px; margin: 12px 0 0; color: var(--muted); line-height: 1.6; }
.footer-links, .footer-inner > div:last-child {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer a:hover { color: var(--text); }

/* Document pages */
.doc { padding: 64px 0 72px; max-width: 920px; }
.doc-hero {
  margin-bottom: 26px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(16,27,52,.88), rgba(10,23,49,.66));
  border: 1px solid rgba(189,185,255,.15);
  box-shadow: var(--shadow-soft);
}
.doc-hero .eyebrow { margin-bottom: 16px; }
.doc-hero h1 { font-size: clamp(38px, 6vw, 66px); margin: 0 0 10px; }
.muted { color: var(--muted); }
.lead { font-size: 18px; line-height: 1.78; color: var(--body-soft); }
.toc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}
.toc a {
  padding: 13px 14px;
  border-radius: 15px;
  background: rgba(16,27,52,.72);
  border: 1px solid rgba(189,185,255,.10);
  color: var(--body-soft);
  font-size: 14px;
}
.toc a:hover { border-color: rgba(189,185,255,.24); color: var(--text); }
.doc-section {
  margin-bottom: 16px;
  padding: 25px;
  border-radius: 24px;
  background: rgba(16,27,52,.78);
  border: 1px solid rgba(189,185,255,.12);
  box-shadow: var(--shadow-soft);
}
.doc-section h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 24px;
  letter-spacing: -0.032em;
}
.doc-section p, .doc-section li {
  color: var(--body-soft);
  line-height: 1.82;
  font-size: 15px;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .hero-copy-block .eyebrow { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-shot-wrap { min-height: auto; }
  .hero-phone { width: min(330px, 80vw); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .journey-grid, .premium-grid { grid-template-columns: repeat(2, 1fr); }
  .product-moment { grid-template-columns: 1fr; text-align: center; gap: 26px; }
  .moment-copy .section-kicker { margin-inline: auto; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 30px, var(--max)); }
  .nav-inner { min-height: 68px; }
  .wordmark { height: 24px; }
  .brand-icon { width: 38px; height: 38px; }
  .logo { width: 30px; height: 30px; }
  .nav-links a:not(.mobile-keep) { display: none; }
  .nav-links { gap: 0; }
  .nav-cta { min-height: 38px; padding-inline: 14px; font-size: 12px; }
  .hero-shell { padding-top: 46px; }
  h1 { font-size: clamp(48px, 15vw, 66px); }
  .hero-lead { font-size: 17px; }
  .button { width: 100%; min-height: 56px; }
  .trust-strip { grid-template-columns: 1fr; padding-bottom: 24px; }
  .statement-section { padding: 42px 8px 34px; }
  .journey-block { padding: 22px; border-radius: 28px; }
  .journey-grid, .trust-cards, .premium-grid { grid-template-columns: 1fr; }
  .journey-card h3 { min-height: 0; }
  .mini-phone { max-height: 520px; width: min(100%, 320px); margin-inline: auto; }
  .focus-split { width: min(100%, 320px); height: 520px; margin-inline: auto; }
  .product-moment { padding: 24px; }
  .landscape-crop { height: 420px; width: min(100%, 320px); border-radius: 30px; }
  .trust-card { padding: 26px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links, .footer-inner > div:last-child { justify-content: flex-start; gap: 16px; }
  .doc { padding-top: 34px; }
  .doc-hero, .doc-section { padding: 22px; }
}
