:root {
  --bg: #0a0712;
  --bg-2: #0e0a18;
  --surface: #181125;
  --border: #2a2140;
  --text: #ece8f5;
  --muted: #a99fc4;
  --accent: #be8bf5;
  --accent-2: #9d5cf0;
  --accent-soft: #be8bf51a;
  --radius: 16px;
  --maxw: 1180px;
  --shadow: 0 18px 50px -20px rgba(0,0,0,.7);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 760px; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--accent); color: #160c24; padding: 10px 16px; }
.skip-link:focus { left: 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; padding: 11px 20px; border-radius: 10px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .15s ease, background .2s, border-color .2s, box-shadow .2s; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #15091f; box-shadow: 0 10px 30px -12px var(--accent-2); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: #fff; }
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn.full { width: 100%; }

/* Promo banner */
.promo-banner { background: linear-gradient(90deg, var(--accent-2), var(--accent)); color: #15091f; text-align: center; font-size: 14px; font-weight: 600; padding: 9px 16px; }
.promo-banner strong { font-weight: 800; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(10,7,18,.72); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; gap: 28px; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo { width: 34px; height: 34px; object-fit: contain; }
.brand-name { font-weight: 800; font-size: 21px; letter-spacing: -.02em; }
.nav-links { display: flex; gap: 26px; margin-left: 18px; font-size: 15px; font-weight: 500; }
.nav-links a { color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; gap: 12px; margin-left: auto; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; margin-left: auto; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* Section scaffolding */
.section { padding: 84px 0; }
.section-head { max-width: 620px; margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -.02em; }
.section-head p { color: var(--muted); margin-top: 10px; font-size: 17px; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--accent); background: var(--accent-soft); border: 1px solid var(--border); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; }
.accent { background: linear-gradient(120deg, var(--accent), #e3c2ff); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* HERO (split) */
.hero { position: relative; padding: 80px 0 64px; overflow: hidden; }
.hero-glow { position: absolute; top: -160px; right: -80px; width: 760px; height: 560px; background: radial-gradient(closest-side, var(--accent-2), transparent 70%); opacity: .26; filter: blur(40px); z-index: -1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-title { font-size: clamp(40px, 6vw, 68px); line-height: 1.02; font-weight: 900; letter-spacing: -.03em; }
/* Per-letter ambient animation: gentle tilt, scale, and glow */
.hero-title .word { display: inline-block; white-space: nowrap; }
.hero-title .ltr {
  display: inline-block; transform-origin: center bottom; will-change: transform, text-shadow;
  animation: ltrFloat 2.8s ease-in-out infinite alternate;
}
@keyframes ltrFloat {
  0%   { transform: translateY(1px) rotate(-3.5deg) scale(.96);  text-shadow: 0 0 5px rgba(190,139,245,.2); }
  100% { transform: translateY(-4px) rotate(3.5deg) scale(1.06); text-shadow: 0 0 20px rgba(190,139,245,.9), 0 0 38px rgba(157,92,240,.5); }
}
.hero-sub { color: var(--muted); font-size: 18px; max-width: 520px; margin: 20px 0 30px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 30px; color: var(--muted); font-size: 14px; }

/* Hero vision visual */
.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 10px; perspective: 1200px; }
.vp-label { width: 100%; max-width: 560px; font-size: 12px; font-weight: 700; letter-spacing: .07em; color: var(--accent); }
.vision-panel {
  position: relative; width: 100%; max-width: 560px; aspect-ratio: 16 / 9;
  background: radial-gradient(120% 120% at 70% 20%, #1c1233, #0c0818 75%);
  border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
  transform-origin: center;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s ease;
  will-change: transform;
}
/* Hover: enlarge a touch and tilt left so the clip reads bigger */
.hero-visual:hover .vision-panel {
  transform: scale(1.06) rotate(-2.5deg);
  box-shadow: 0 30px 70px -20px rgba(157,92,240,.55);
}
/* Crossfading clip layers */
.vp-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity .8s ease;
}
.vp-video.is-active { opacity: 1; }

/* ── App showcase (clickable screenshots) ──────────────────────── */
.showcase-stage {
  position: relative; max-width: 960px; margin: 0 auto;
  aspect-ratio: 1135 / 833; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); background: #0c0818; box-shadow: var(--shadow);
}
.sc-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity .45s ease;
}
.sc-img.is-active { opacity: 1; }

/* Invisible click targets sitting over the app's real tab bar */
.sc-hotspots { position: absolute; inset: 0; z-index: 3; }
.sc-hot {
  position: absolute; top: 11.3%; height: 6.4%;
  background: transparent; border: 0; padding: 0; cursor: pointer;
  border-radius: 6px; transition: background .18s ease, box-shadow .18s ease;
}
.sc-hot::after {           /* hover underline matching the app's accent */
  content: ""; position: absolute; left: 8%; right: 8%; bottom: 0; height: 2px;
  background: var(--accent); border-radius: 2px;
  opacity: 0; transform: scaleX(.4); transition: opacity .18s ease, transform .18s ease;
}
.sc-hot:hover { background: rgba(190,139,245,.10); }
.sc-hot:hover::after { opacity: 1; transform: scaleX(1); }
.sc-hot:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.showcase-hint {
  text-align: center; color: var(--muted); font-size: 14px;
  margin-top: 16px; opacity: .85;
}

.fov-ring { position: absolute; top: 50%; left: 50%; width: 190px; height: 190px; transform: translate(-50%,-50%); border: 1.5px dashed rgba(190,139,245,.55); border-radius: 50%; animation: pulseRing 3.2s ease-in-out infinite; }
.crosshair { position: absolute; top: 50%; left: 50%; width: 26px; height: 26px; transform: translate(-50%,-50%); }
.crosshair::before, .crosshair::after { content: ""; position: absolute; background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.crosshair::before { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.crosshair::after { top: 50%; left: 0; height: 2px; width: 100%; transform: translateY(-50%); }
.target { position: absolute; border: 2px solid rgba(227,194,255,.9); border-radius: 4px; box-shadow: 0 0 12px rgba(190,139,245,.5); }
.target.t1 { width: 54px; height: 84px; top: 30%; left: 26%; animation: drift1 5s ease-in-out infinite; }
.target.t2 { width: 40px; height: 64px; top: 46%; left: 64%; opacity: .7; animation: drift2 6s ease-in-out infinite; }
.vp-readout { position: absolute; bottom: 14px; left: 16px; right: 16px; display: flex; justify-content: space-between; font-size: 11px; font-weight: 600; letter-spacing: .04em; color: var(--muted); }
@keyframes pulseRing { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity: .55; } 50% { transform: translate(-50%,-50%) scale(1.08); opacity: .9; } }
@keyframes drift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(10px,-12px); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-12px,10px); } }

/* Features + How it works (combined, two-column) */
.combo-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: stretch; scroll-margin-top: 90px; }

/* Left: feature list */
.combo-features { display: flex; flex-direction: column; gap: 14px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; transition: transform .2s, border-color .2s; }
.feature-item:hover { transform: translateX(4px); border-color: var(--accent); }
.f-ic { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 11px; display: flex; align-items: center; justify-content: center; background: var(--accent-soft); color: var(--accent); }
.f-ic svg { width: 22px; height: 22px; }
.feature-item h3 { font-size: 17px; margin-bottom: 5px; }
.feature-item p { color: var(--muted); font-size: 14px; }

/* Right: setup timeline card */
.combo-steps { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 32px; }
.timeline { list-style: none; margin-top: 22px; }
.t-step { position: relative; display: flex; gap: 18px; padding-bottom: 30px; }
.t-step:last-child { padding-bottom: 0; }
/* connecting line down through the numbers */
.t-step:not(:last-child)::before { content: ""; position: absolute; left: 21px; top: 46px; bottom: 0; width: 2px; background: linear-gradient(var(--accent-2), transparent); }
.step-num { flex: 0 0 auto; position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #15091f; font-weight: 800; font-size: 20px; }
.t-step h3 { font-size: 18px; margin-bottom: 6px; padding-top: 8px; }
.t-step p { color: var(--muted); font-size: 14px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.price-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; display: flex; flex-direction: column; }
.price-card.featured { transform: translateY(-8px); }
.pop { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #15091f; font-size: 12px; font-weight: 800; padding: 4px 12px; border-radius: 999px; }
.tier { font-size: 16px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.price { font-size: 44px; font-weight: 900; letter-spacing: -.03em; margin: 6px 0 2px; }
.price span { font-size: 15px; font-weight: 600; color: var(--muted); margin-left: 4px; }
.tier-sub { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.check-list { list-style: none; display: grid; gap: 11px; margin-bottom: 24px; flex: 1; }
.check-list li { position: relative; padding-left: 28px; font-size: 14px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 19px; height: 19px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; }

/* Live worldwide */
.worldwide-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
.ww-copy h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.ww-copy p { color: var(--muted); font-size: 16px; margin-bottom: 22px; }
.ww-counter { display: inline-flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 14px 20px; font-size: 13px; color: var(--muted); }
.ww-counter strong { font-size: 30px; color: var(--accent); font-weight: 800; }
.ww-map { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); }
.world-map { width: 100%; filter: brightness(1.4) saturate(1.2); }

/* Accessibility */
.accessibility { background: var(--bg-2); border-block: 1px solid var(--border); }
.access-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.access-copy h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; }
.access-copy p { color: var(--muted); font-size: 16px; margin-bottom: 22px; }
.access-points { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.access-points li { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px 14px 38px; font-size: 14px; position: relative; }
.access-points li::before { content: "★"; position: absolute; left: 14px; color: var(--accent); }

/* FAQ */
.qa { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 4px 20px; margin-bottom: 12px; }
.qa summary { cursor: pointer; font-weight: 600; font-size: 16px; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; color: var(--accent); font-size: 22px; font-weight: 700; transition: transform .2s; }
.qa[open] summary::after { transform: rotate(45deg); }
.qa p { color: var(--muted); font-size: 15px; padding: 0 0 18px; }

/* CTA */
.cta-band { text-align: center; }
.cta-inner { position: relative; background: linear-gradient(135deg, #20133a, #2a1850); border: 1px solid var(--border); border-radius: 24px; padding: 56px 32px; }
.cta-inner h2 { font-size: clamp(28px, 5vw, 44px); font-weight: 800; letter-spacing: -.02em; }
.cta-inner p { color: var(--muted); font-size: 18px; margin: 12px 0 26px; }
.cta-inner strong { color: var(--accent); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 56px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 14px; max-width: 280px; }
.footer-col h4 { font-size: 14px; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--muted); font-size: 14px; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--border); margin-top: 40px; padding-top: 22px; color: var(--muted); font-size: 13px; }

/* ── Rotating corner glow (reused on .glow-card) ───────────────── */
.glow-card { position: relative; }
.glow-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; padding: 1.5px; background: rgba(190,139,245,.16); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude; }
.glow-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; padding: 2px;
  background: conic-gradient(from var(--angle),
    transparent 0deg, transparent 25deg,
    rgba(190,139,245,.35) 35deg, rgba(227,194,255,1) 45deg, rgba(190,139,245,.35) 55deg,
    transparent 65deg, transparent 205deg,
    rgba(190,139,245,.35) 215deg, rgba(227,194,255,1) 225deg, rgba(190,139,245,.35) 235deg,
    transparent 245deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude;
  filter: drop-shadow(0 0 6px rgba(190,139,245,.9));
  animation: cornerSnap 5s cubic-bezier(.65,0,.35,1) infinite;
}
@property --angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes cornerSnap { 0% { --angle: 0deg; } 50% { --angle: 90deg; } 100% { --angle: 180deg; } }
@media (prefers-reduced-motion: reduce) {
  .glow-card::after, .fov-ring, .target { animation: none; }
  .vision-panel, .vp-video { transition: none; }
  .hero-visual:hover .vision-panel { transform: none; }
  .hero-title .ltr { animation: none; transform: none; text-shadow: none; }
}

/* Responsive */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .combo-grid { grid-template-columns: 1fr; gap: 28px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .worldwide-inner, .access-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-actions { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); padding: 18px 24px; gap: 16px; margin: 0; }
  .nav-toggle { display: flex; }
  .access-points { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
