@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Unbounded:wght@500;600;700;800&display=swap');

:root {
  --bg: #05060d;
  --bg-soft: #080a15;
  --panel: rgba(14, 17, 33, 0.72);
  --panel-strong: rgba(13, 16, 31, 0.94);
  --line: rgba(138, 149, 214, 0.24);
  --line-bright: rgba(126, 165, 255, 0.48);
  --text: #f7f8ff;
  --muted: #a8b0c8;
  --muted-2: #78839f;
  --cyan: #51d8ff;
  --blue: #6d9cff;
  --violet: #8d6cff;
  --pink: #ce6fff;
  --green: #38f0c8;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(900px 600px at 78% 8%, rgba(104, 68, 255, 0.18), transparent 64%),
    radial-gradient(800px 760px at 8% 42%, rgba(45, 137, 255, 0.10), transparent 64%),
    linear-gradient(180deg, #05060d 0%, #070914 52%, #03040a 100%);
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(5, 6, 13, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 18px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.28), transparent 34%),
    linear-gradient(135deg, #3bc8ff, #826cff 58%, #c968ff);
  box-shadow: 0 0 28px rgba(112, 94, 255, 0.42);
}

.brand-copy strong {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  letter-spacing: -0.03em;
}

.brand-copy span {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: #c9cfe0;
  text-decoration: none;
  font-size: 14px;
  transition: color .2s ease;
}
.nav a:hover { color: #fff; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  cursor: pointer;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 0;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #fff;
  background: linear-gradient(100deg, #3fbfff, #756fff 55%, #b863ff);
  box-shadow: 0 16px 42px rgba(85, 105, 255, 0.30), inset 0 1px 0 rgba(255,255,255,0.26);
}
.button-secondary {
  color: #e6e9f4;
  border: 1px solid var(--line-bright);
  background: rgba(16, 20, 38, 0.62);
}
.button-small { min-height: 42px; padding: 0 18px; border-radius: 13px; font-size: 14px; }
.button-icon { width: 22px; height: 22px; flex: 0 0 auto; }

.hero {
  position: relative;
  padding: 88px 0 74px;
}

.hero-grid {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  align-items: center;
  gap: 30px;
  border: 1px solid rgba(129, 145, 220, 0.20);
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(700px 480px at 86% 14%, rgba(107,70,255,0.25), transparent 64%),
    radial-gradient(720px 760px at 84% 74%, rgba(58,141,255,0.16), transparent 66%),
    linear-gradient(180deg, rgba(7,9,20,0.96), rgba(5,7,15,0.98));
  box-shadow: var(--shadow);
}

.hero-copy { position: relative; z-index: 4; padding: 74px 0 74px 64px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border: 1px solid rgba(139,92,246,0.58);
  border-radius: 999px;
  color: #8fe9ff;
  background: rgba(20,20,40,0.44);
  box-shadow: 0 0 24px rgba(107,70,255,0.25), inset 0 0 12px rgba(107,70,255,0.12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px 2px rgba(56,240,200,.74);
}

h1, h2, h3 { font-family: 'Unbounded', sans-serif; }
h1 {
  max-width: 720px;
  margin: 26px 0 0;
  font-size: clamp(46px, 6.1vw, 78px);
  line-height: 1.03;
  letter-spacing: -0.055em;
  background: linear-gradient(104deg, #55d4ff 0%, #7589ff 40%, #a971ff 72%, #d56cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 660px;
  margin: 27px 0 0;
  color: #d6daea;
  font-size: 20px;
}
.hero-lead strong { color: #fff; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; color: var(--muted); font-size: 13px; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(56,240,200,.6); }

.hero-visual { position: relative; align-self: stretch; min-height: 690px; }
.mountain-scene { position: absolute; inset: 0 -40px 0 0; width: calc(100% + 40px); height: 100%; }

.app-preview {
  position: absolute;
  right: 44px;
  bottom: 56px;
  z-index: 5;
  width: min(360px, calc(100% - 70px));
  padding: 18px;
  border: 1px solid rgba(142, 160, 236, 0.32);
  border-radius: 28px;
  background: rgba(8, 11, 23, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0,0,0,.45), 0 0 36px rgba(94,87,255,.18);
}
.app-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.app-profile { display: flex; align-items: center; gap: 10px; }
.app-avatar { width: 40px; height: 40px; border-radius: 14px; display: grid; place-items: center; font-family: 'Unbounded'; font-weight: 800; background: linear-gradient(135deg,#46c8ff,#996dff); }
.app-profile strong { display: block; font-size: 14px; }
.app-profile span, .app-status { color: var(--muted-2); font-size: 11px; }
.app-status { color: #80ebd5; }
.progress-box { margin-top: 18px; padding: 16px; border-radius: 18px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.06); }
.progress-head { display:flex; align-items:center; justify-content:space-between; gap:10px; font-size:12px; color:var(--muted); }
.progress-head strong { color:#fff; font-size:13px; }
.progress-track { height: 7px; border-radius: 99px; background: rgba(255,255,255,.08); overflow:hidden; margin-top:12px; }
.progress-fill { width: 38%; height:100%; background:linear-gradient(90deg,#45cfff,#a56cff); box-shadow:0 0 14px rgba(105,120,255,.5); }
.task-card { margin-top: 12px; padding: 16px; border-radius: 18px; background: linear-gradient(135deg,rgba(64,86,160,.24),rgba(101,58,150,.20)); border:1px solid rgba(125,143,220,.20); }
.task-label { color:#7adfff; font-size:11px; text-transform:uppercase; letter-spacing:.12em; font-weight:700; }
.task-card h3 { margin:8px 0 0; font-size:16px; line-height:1.35; }
.task-card p { margin:8px 0 0; color:var(--muted); font-size:12px; }
.task-actions { display:grid; grid-template-columns:1fr 1fr; gap:9px; margin-top:14px; }
.task-actions span { min-height:38px; display:grid; place-items:center; border-radius:12px; font-size:12px; font-weight:700; border:1px solid rgba(132,155,234,.24); background:rgba(255,255,255,.04); }
.task-actions span:first-child { background:linear-gradient(100deg,rgba(58,190,255,.25),rgba(128,91,255,.28)); color:#fff; }

.section { padding: 88px 0; }
.section-tight { padding: 52px 0; }
.section-head { max-width: 760px; margin-bottom: 38px; }
.section-kicker { color: #7edfff; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; }
.section h2 { margin: 13px 0 0; font-size: clamp(32px, 4.7vw, 54px); line-height: 1.12; letter-spacing: -0.045em; }
.section-intro { margin: 18px 0 0; color: var(--muted); font-size: 18px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(18,22,42,.72), rgba(8,11,23,.84));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.card:hover { border-color: rgba(127, 159, 246, .42); }
.card-icon { width: 54px; height: 54px; display:grid; place-items:center; border-radius:17px; border:1px solid rgba(124,162,255,.30); background:rgba(65,81,159,.16); box-shadow:0 0 24px rgba(89,92,255,.14); }
.card-icon svg { width: 25px; height: 25px; }
.card h3 { margin: 18px 0 0; font-size: 18px; line-height: 1.35; }
.card p { margin: 10px 0 0; color: var(--muted); }

.steps { counter-reset: step; }
.step-card { min-height: 240px; }
.step-card::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  right: 22px;
  top: 14px;
  color: rgba(145,139,255,.16);
  font-family: 'Unbounded', sans-serif;
  font-size: 54px;
  font-weight: 800;
}

.category-list { display: flex; flex-wrap: wrap; gap: 12px; }
.category-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid rgba(134,149,217,.24);
  border-radius: 16px;
  color: #dce1f1;
  background: rgba(15,18,34,.58);
}
.category-chip b { font-size: 18px; }

.pricing-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
  align-items: stretch;
}
.price-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(118, 157, 255, .45);
  border-radius: 28px;
  background:
    radial-gradient(520px 300px at 100% 0%, rgba(114,77,255,.24), transparent 62%),
    linear-gradient(145deg, rgba(18,22,44,.96), rgba(9,12,26,.98));
  box-shadow: 0 24px 80px rgba(0,0,0,.28), 0 0 44px rgba(85,92,255,.12);
}
.price-card h3 { margin:0; font-size:24px; }
.price { margin-top:20px; font-family:'Unbounded'; font-size:46px; font-weight:800; letter-spacing:-.05em; }
.price small { font-family:'Inter'; font-size:15px; font-weight:500; color:var(--muted); letter-spacing:0; }
.price-list { list-style:none; padding:0; margin:24px 0 0; display:grid; gap:12px; }
.price-list li { position:relative; padding-left:28px; color:#dbe0ef; }
.price-list li::before { content:'✓'; position:absolute; left:0; color:var(--green); font-weight:800; }
.price-actions { margin-top:28px; display:flex; flex-wrap:wrap; gap:12px; }
.price-note { margin-top:14px; color:var(--muted-2); font-size:12px; }
.price-secondary { border-color:var(--line); }
.price-badge { display:inline-flex; margin-bottom:14px; padding:7px 10px; border-radius:999px; color:#9debdc; background:rgba(56,240,200,.08); border:1px solid rgba(56,240,200,.22); font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.1em; }

.faq { display:grid; gap:12px; }
details { border:1px solid var(--line); border-radius:18px; background:rgba(13,16,31,.62); padding:0 20px; }
summary { list-style:none; cursor:pointer; padding:20px 34px 20px 0; font-weight:700; position:relative; }
summary::-webkit-details-marker { display:none; }
summary::after { content:'+'; position:absolute; right:0; top:16px; font-size:24px; color:#8ca8ff; }
details[open] summary::after { content:'–'; }
details p { margin:0 0 20px; color:var(--muted); }

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(120,161,255,.38);
  border-radius: 28px;
  background:
    radial-gradient(500px 280px at 100% 50%, rgba(164,82,255,.24), transparent 64%),
    linear-gradient(110deg, rgba(20,29,58,.90), rgba(37,20,66,.84));
  box-shadow: 0 0 46px rgba(82,105,255,.14);
}
.cta-band-inner { position:relative; z-index:2; display:flex; align-items:center; justify-content:space-between; gap:28px; }
.cta-band h2 { margin:0; font-size:clamp(28px,4vw,44px); }
.cta-band p { margin:12px 0 0; color:#c1c8dc; max-width:680px; }

.site-footer { padding: 32px 0 46px; border-top:1px solid rgba(255,255,255,.06); }
.footer-grid { display:grid; grid-template-columns:1.15fr .85fr; gap:30px; align-items:start; }
.footer-copy { margin-top:16px; max-width:500px; color:var(--muted-2); font-size:13px; }
.footer-links { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:14px 18px; }
.footer-links a { color:#9da8c3; font-size:13px; text-decoration:none; }
.footer-links a:hover { color:#fff; }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; margin-top:26px; padding-top:22px; border-top:1px solid rgba(255,255,255,.05); color:#707a94; font-size:12px; }

.legal-hero { padding: 72px 0 34px; }
.legal-wrap { max-width: 900px; }
.legal-wrap h1 { font-size: clamp(38px, 6vw, 64px); }
.legal-card { margin: 24px 0 80px; padding: clamp(24px,4vw,46px); border:1px solid var(--line); border-radius:28px; background:rgba(11,14,28,.76); box-shadow:var(--shadow); }
.legal-card h2 { margin:32px 0 10px; font-size:23px; }
.legal-card h2:first-child { margin-top:0; }
.legal-card h3 { margin:24px 0 8px; font-size:17px; }
.legal-card p, .legal-card li { color:#c0c7da; }
.legal-card ul, .legal-card ol { padding-left:22px; }
.legal-card a { color:#7edfff; }
.legal-note { padding:16px 18px; border:1px solid rgba(255,198,92,.26); border-radius:16px; background:rgba(255,181,58,.07); color:#e8d5a5; }

.result-page { min-height:100vh; display:grid; place-items:center; padding:30px; }
.result-card { width:min(100%,620px); padding:44px; text-align:center; border:1px solid rgba(126,165,255,.38); border-radius:30px; background:radial-gradient(420px 280px at 80% 0%,rgba(117,75,255,.24),transparent 65%),rgba(10,13,28,.94); box-shadow:var(--shadow); }
.result-icon { width:74px; height:74px; margin:0 auto; display:grid; place-items:center; border-radius:24px; background:linear-gradient(135deg,#48d0ff,#896dff); box-shadow:0 0 36px rgba(99,105,255,.34); font-size:34px; }
.result-card h1 { margin-top:24px; font-size:clamp(31px,6vw,48px); }
.result-card p { color:var(--muted); font-size:17px; }
.result-actions { margin-top:28px; display:flex; flex-wrap:wrap; justify-content:center; gap:12px; }

[data-reveal] { opacity:0; transform:translateY(20px); transition:opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity:1; transform:none; }

@media (max-width: 980px) {
  .nav { position:absolute; left:20px; right:20px; top:70px; display:none; flex-direction:column; align-items:stretch; padding:18px; border:1px solid var(--line); border-radius:18px; background:rgba(8,10,21,.98); box-shadow:var(--shadow); }
  .nav.is-open { display:flex; }
  .nav .button { width:100%; }
  .nav-toggle { display:block; }
  .hero-grid { grid-template-columns:1fr; min-height:0; }
  .hero-copy { padding:58px 42px 34px; }
  .hero-visual { min-height:540px; }
  .mountain-scene { right:-80px; }
  .pricing-wrap { grid-template-columns:1fr; }
  .grid-3 { grid-template-columns:repeat(2,minmax(0,1fr)); }
}

@media (max-width: 680px) {
  .container { width:min(calc(100% - 24px),var(--container)); }
  .header-inner { min-height:68px; }
  .brand-copy span { display:none; }
  .hero { padding:34px 0 48px; }
  .hero-grid { border-radius:26px; }
  .hero-copy { padding:36px 22px 20px; }
  h1 { font-size:42px; }
  .hero-lead { font-size:17px; }
  .hero-actions .button { width:100%; }
  .hero-meta { gap:10px; }
  .hero-visual { min-height:500px; }
  .app-preview { right:18px; bottom:24px; width:calc(100% - 36px); }
  .mountain-scene { right:-145px; width:calc(100% + 145px); }
  .section { padding:64px 0; }
  .grid-3, .grid-2 { grid-template-columns:1fr; }
  .card { padding:22px; }
  .cta-band { padding:28px 22px; }
  .cta-band-inner { align-items:flex-start; flex-direction:column; }
  .cta-band .button { width:100%; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-links { justify-content:flex-start; }
  .footer-bottom { flex-direction:column; }
  .result-card { padding:34px 22px; }
  .legal-hero { padding-top:42px; }
  .legal-card { border-radius:22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation:none !important; transition:none !important; }
  [data-reveal] { opacity:1; transform:none; }
}
