:root {
  color-scheme: dark;
  --bg: #07101f;
  --bg-deep: #040914;
  --surface: rgba(18, 30, 52, 0.52);
  --surface-strong: rgba(16, 28, 49, 0.8);
  --surface-soft: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.23);
  --text: #f5f7ff;
  --muted: #a9b5ca;
  --muted-2: #7f8ca3;
  --accent: #9db1ff;
  --accent-2: #73e3c3;
  --accent-3: #c795ff;
  --danger: #ff9f9f;
  --success: #81e5bd;
  --warning: #ffd08a;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 16px 48px rgba(0, 0, 0, 0.22);
  --container: 1180px;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 10%, rgba(111, 142, 255, 0.17), transparent 32rem),
    radial-gradient(circle at 88% 17%, rgba(106, 231, 193, 0.12), transparent 30rem),
    radial-gradient(circle at 55% 72%, rgba(198, 145, 255, 0.1), transparent 34rem),
    linear-gradient(180deg, var(--bg-deep), var(--bg) 35%, #081220 70%, #040914);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  z-index: -1;
}

::selection { background: rgba(157, 177, 255, 0.32); color: white; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section { padding: 104px 0; position: relative; }
.section-sm { padding: 68px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius: 999px;
  color: #c9d4e8;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .03em;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.section-label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px var(--accent);
}
.section-heading {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}
.section-copy {
  max-width: 670px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .13em;
  color: #aebfff;
  font-size: 12px;
  font-weight: 800;
}
.muted { color: var(--muted); }
.small { font-size: 13px; }
.text-gradient {
  color: transparent;
  background: linear-gradient(100deg, #fff 5%, #aebdff 46%, #8ff0d5 92%);
  background-clip: text;
  -webkit-background-clip: text;
}

.glass {
  background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.035));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), var(--shadow-soft);
  backdrop-filter: blur(24px) saturate(135%);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
}
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255,255,255,.14), transparent 35%, transparent 65%, rgba(123,226,195,.04));
  mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.site-header.is-scrolled {
  background: rgba(5, 12, 24, 0.72);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(157,177,255,.26), rgba(115,227,195,.13));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 12px 30px rgba(0,0,0,.22);
}
.brand-mark svg { width: 21px; height: 21px; }
.nav {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav a {
  padding: 10px 13px;
  border-radius: 12px;
  color: #bac5d8;
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease, background .2s ease;
}
.nav a:hover, .nav a[aria-current="page"] { color: white; background: rgba(255,255,255,.07); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle span { margin: 4px 0; }
.menu-toggle.is-open span { opacity: 0; }
.menu-toggle.is-open::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open::after { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 750;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(157,177,255,.42);
  outline-offset: 3px;
}
.btn-primary {
  color: #07101f;
  background: linear-gradient(100deg, #b7c4ff, #7fe7cb);
  box-shadow: 0 16px 40px rgba(113, 203, 193, .18), inset 0 1px 0 rgba(255,255,255,.75);
}
.btn-primary:hover { box-shadow: 0 20px 50px rgba(113, 203, 193, .25), inset 0 1px 0 rgba(255,255,255,.8); }
.btn-secondary {
  background: rgba(255,255,255,.065);
  border-color: var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.btn-secondary:hover { border-color: var(--line-strong); background: rgba(255,255,255,.095); }
.btn-compact { min-height: 42px; padding: 9px 15px; border-radius: 13px; font-size: 14px; }
.btn-wide { width: 100%; }
.icon-arrow { width: 18px; height: 18px; transition: transform .2s ease; }
.btn:hover .icon-arrow { transform: translateX(3px); }

.hero {
  min-height: 780px;
  padding: 112px 0 72px;
  display: grid;
  align-items: start;
  overflow: visible;
}
.hero::after {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  left: 50%;
  top: 8%;
  transform: translateX(-2%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.045);
  box-shadow: 0 0 0 90px rgba(255,255,255,.012), 0 0 0 180px rgba(255,255,255,.008);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, .97fr);
  align-items: start;
  gap: clamp(34px, 6vw, 88px);
}
.hero-copy { position: relative; z-index: 2; }
.hero-kicker { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; }
.hero h1 {
  margin: 18px 0 0;
  font-size: clamp(52px, 7.6vw, 93px);
  line-height: .97;
  letter-spacing: -.068em;
  max-width: 780px;
  overflow: visible;
}
.hero-lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: #b8c2d4;
  font-size: clamp(18px, 2.1vw, 22px);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 14px 22px; margin-top: 22px; color: #9aa8bd; font-size: 13px; }
.hero-meta span { display: inline-flex; gap: 8px; align-items: center; }
.hero-meta span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 14px rgba(115,227,195,.7); }

.product-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  align-self: start;
  margin-top: 35px;
  z-index: 2;
  perspective: 1200px;
}
.product-orb {
  position: absolute;
  width: 400px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.92), rgba(174,192,255,.34) 8%, rgba(113,227,195,.16) 35%, rgba(63,84,147,.12) 56%, transparent 72%);
  filter: blur(.2px);
  opacity: .7;
  animation: breathe 7s ease-in-out infinite;
}
.orbit {
  position: absolute;
  width: 450px;
  height: 450px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  transform: rotateX(66deg) rotateZ(-22deg);
  animation: orbit-spin 18s linear infinite;
}
.orbit::before, .orbit::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #a5b7ff;
  box-shadow: 0 0 30px #a5b7ff;
}
.orbit::before { top: 15%; left: 13%; }
.orbit::after { bottom: 9%; right: 20%; background: #7be4c7; box-shadow: 0 0 30px #7be4c7; }
.plan-card {
  position: relative;
  width: min(100%, 420px);
  padding: 28px;
  border-radius: 31px;
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform .25s ease;
  overflow: hidden;
  margin-top: 12px;
}
.plan-card:hover { transform: rotateY(-3deg) rotateX(1deg) translateY(-5px); }
.plan-card::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -95px;
  top: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157,177,255,.29), transparent 70%);
}
.plan-top { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; position: relative; z-index: 1; }
.plan-icon {
  width: 56px;
  height: 56px;
  border-radius: 19px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(187,201,255,.3), rgba(115,227,195,.18));
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2);
}
.plan-icon svg { width: 28px; }
.plan-badge { padding: 7px 10px; border-radius: 999px; background: rgba(115,227,195,.12); border: 1px solid rgba(115,227,195,.24); color: #a9efd9; font-size: 12px; font-weight: 800; }
.plan-name { margin: 32px 0 0; font-size: 29px; letter-spacing: -.04em; }
.plan-subtitle { margin: 6px 0 0; color: var(--muted); }
.plan-price { display: flex; align-items: flex-end; gap: 9px; margin-top: 26px; }
.plan-price strong { font-size: 50px; line-height: 1; letter-spacing: -.04em; color: #eef3ff; }
.plan-price span { color: var(--muted); padding-bottom: 5px; }
.plan-features { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; color: #d7deeb; }
.plan-features svg { flex: 0 0 18px; margin-top: 3px; color: var(--accent-2); }
.plan-card .btn { margin-top: 28px; }
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 17px;
  background: rgba(11, 20, 35, .68);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 45px rgba(0,0,0,.25);
  font-size: 13px;
  color: #ced7e6;
  animation: float 5.5s ease-in-out infinite;
}
.float-chip svg { width: 19px; color: var(--accent-2); }
.float-chip.one { left: -76px; top: 50%; transform: translateY(-50%); z-index: 5; }
.float-chip.two { right: -8px; bottom: 12%; animation-delay: -2.4s; }

.trust-strip {
  margin-top: -22px;
  position: relative;
  z-index: 3;
}
.trust-panel {
  border-radius: 24px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.trust-copy { display: flex; align-items: center; gap: 14px; color: #bac5d6; font-size: 14px; }
.trust-icon { width: 40px; height: 40px; border-radius: 14px; display: grid; place-items: center; background: rgba(115,227,195,.1); border: 1px solid rgba(115,227,195,.18); color: var(--accent-2); }
.trust-icon svg { width: 20px; }
.trust-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.trust-links a { padding: 8px 11px; border-radius: 11px; background: rgba(255,255,255,.045); color: #c1ccdc; font-size: 12px; border: 1px solid rgba(255,255,255,.08); }
.trust-links a:hover { color: white; border-color: rgba(255,255,255,.18); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.feature-card {
  position: relative;
  min-height: 250px;
  padding: 25px;
  border-radius: 24px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.22); }
.feature-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -50px;
  bottom: -55px;
  background: radial-gradient(circle, rgba(157,177,255,.17), transparent 68%);
}
.feature-icon { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; background: rgba(157,177,255,.1); border: 1px solid rgba(157,177,255,.17); color: #b9c6ff; }
.feature-icon svg { width: 23px; }
.feature-card h3 { margin: 36px 0 0; font-size: 20px; letter-spacing: -.025em; }
.feature-card p { margin: 10px 0 0; color: var(--muted); font-size: 15px; }
.feature-card.wide { grid-column: span 2; }
.feature-card.tall { min-height: 340px; }

.steps-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(42px, 8vw, 90px); align-items: start; margin-top: 50px; }
.steps-sticky { position: sticky; top: 120px; }
.safety-note { margin-top: 25px; padding: 18px; border-radius: 18px; display: flex; gap: 13px; color: #c2ccdb; font-size: 14px; }
.safety-note svg { flex: 0 0 22px; color: var(--success); }
.steps-list { display: grid; gap: 14px; }
.step-card { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 24px; border-radius: 22px; }
.step-number { width: 44px; height: 44px; border-radius: 15px; display: grid; place-items: center; background: rgba(157,177,255,.11); border: 1px solid rgba(157,177,255,.22); color: #c9d2ff; font-weight: 850; }
.step-card h3 { margin: 2px 0 0; font-size: 19px; }
.step-card p { margin: 8px 0 0; color: var(--muted); }

.pricing-wrap { display: grid; grid-template-columns: 1fr minmax(380px, .82fr); gap: clamp(40px, 8vw, 90px); align-items: center; }
.price-card { position: relative; padding: 32px; border-radius: 30px; overflow: hidden; }
.price-card::after { content: ""; position: absolute; inset: auto -100px -170px auto; width: 330px; height: 330px; border-radius: 50%; background: radial-gradient(circle, rgba(115,227,195,.18), transparent 68%); }
.price-card > * { position: relative; z-index: 1; }
.price-line { display: flex; align-items: flex-end; gap: 10px; margin-top: 22px; }
.price-line strong { font-size: clamp(56px, 7vw, 74px); line-height: .92; letter-spacing: -.06em; color: #eef3ff; }
.price-line span { color: var(--muted); padding-bottom: 4px; }
.price-details { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.price-details li { display: flex; gap: 10px; align-items: flex-start; color: #d2dae8; }
.price-details svg { width: 18px; flex: 0 0 18px; margin-top: 3px; color: var(--accent-2); }
.price-card .btn { margin-top: 28px; }
.price-footnote { margin: 15px 0 0; color: var(--muted-2); font-size: 12px; }
.compliance-list { display: grid; gap: 13px; margin-top: 30px; }
.compliance-row { display: flex; align-items: flex-start; gap: 13px; color: #c8d0de; }
.compliance-row span:first-child { width: 24px; height: 24px; flex: 0 0 24px; border-radius: 9px; display: grid; place-items: center; background: rgba(115,227,195,.09); color: var(--accent-2); font-size: 13px; }

.faq-list { max-width: 880px; margin-top: 44px; display: grid; gap: 11px; }
.faq-item { border-radius: 19px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 21px 23px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-weight: 700; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { width: 28px; height: 28px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; flex: 0 0 28px; transition: transform .25s ease; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; width: 12px; height: 1.5px; background: currentColor; }
.faq-plus::after { transform: rotate(90deg); }
.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-content { padding: 0 23px 22px; color: var(--muted); max-width: 760px; }

.cta-panel { position: relative; border-radius: 34px; padding: clamp(30px, 6vw, 70px); overflow: hidden; text-align: center; }
.cta-panel::after, .cta-panel::before { content: ""; position: absolute; border-radius: 50%; filter: blur(1px); }
.cta-panel::before { width: 390px; height: 390px; left: -170px; top: -220px; background: radial-gradient(circle, rgba(157,177,255,.24), transparent 67%); }
.cta-panel::after { width: 360px; height: 360px; right: -130px; bottom: -230px; background: radial-gradient(circle, rgba(115,227,195,.2), transparent 68%); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { margin: 0 auto; max-width: 760px; font-size: clamp(37px, 6vw, 67px); line-height: 1; letter-spacing: -.055em; }
.cta-panel p { max-width: 610px; margin: 21px auto 0; color: var(--muted); font-size: 18px; }
.cta-panel .btn { margin-top: 29px; }

.site-footer { padding: 0 0 30px; }
.footer-shell { border-radius: 30px; overflow: hidden; }
.footer-main { padding: 42px; display: grid; grid-template-columns: 1.3fr repeat(3, .72fr); gap: 35px; }
.footer-brand p { max-width: 360px; margin: 15px 0 0; color: var(--muted); font-size: 14px; }
.footer-disclaimer { margin-top: 18px; padding: 13px 14px; border-radius: 14px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.075); color: #9eaabd; font-size: 12px; }
.footer-col h3 { margin: 0 0 14px; color: #dbe2ee; font-size: 13px; text-transform: uppercase; letter-spacing: .09em; }
.footer-col a, .footer-col span { display: block; margin: 9px 0; color: #9eabbe; font-size: 14px; }
.footer-col a:hover { color: white; }
.company-data { padding: 26px 42px; border-top: 1px solid rgba(255,255,255,.08); display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.company-data h4 { margin: 0 0 7px; color: #d5ddea; font-size: 13px; }
.company-data p { margin: 0; color: #8f9cb0; font-size: 12px; line-height: 1.65; }
.payment-row { padding: 24px 42px; border-top: 1px solid rgba(255,255,255,.08); display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: center; }
.payment-title { min-width: 180px; }
.payment-title strong { display: block; font-size: 14px; }
.payment-title span { color: var(--muted-2); font-size: 12px; }
.payment-logos { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.payment-logos img { height: 42px; width: auto; }
.footer-bottom { padding: 18px 42px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 20px; color: #758298; font-size: 12px; }

.legal-hero { padding: 150px 0 55px; }
.legal-hero h1 { margin: 22px 0 0; max-width: 850px; font-size: clamp(45px, 7vw, 78px); line-height: .98; letter-spacing: -.055em; }
.legal-hero p { max-width: 720px; margin: 23px 0 0; color: var(--muted); font-size: 18px; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 56px; align-items: start; padding-bottom: 100px; }
.legal-toc { position: sticky; top: 110px; padding: 18px; border-radius: 19px; }
.legal-toc strong { display: block; margin-bottom: 9px; font-size: 13px; color: #d6deec; }
.legal-toc a { display: block; padding: 8px 9px; color: #93a0b5; font-size: 13px; border-radius: 9px; }
.legal-toc a:hover { color: white; background: rgba(255,255,255,.06); }
.legal-content { min-width: 0; }
.legal-card { padding: clamp(24px, 4vw, 42px); border-radius: 25px; }
.legal-card + .legal-card { margin-top: 16px; }
.legal-card h2 { scroll-margin-top: 110px; margin: 0 0 18px; font-size: clamp(25px, 4vw, 34px); letter-spacing: -.035em; }
.legal-card h3 { margin: 26px 0 10px; font-size: 18px; }
.legal-card p, .legal-card li { color: #b2bed0; }
.legal-card ul, .legal-card ol { padding-left: 21px; }
.legal-card li + li { margin-top: 9px; }
.notice { padding: 16px 17px; border-radius: 15px; background: rgba(255,208,138,.075); border: 1px solid rgba(255,208,138,.18); color: #e7d2ae; }
.notice strong { color: #ffe3b4; }
.info-table { width: 100%; border-collapse: collapse; margin-top: 18px; font-size: 14px; }
.info-table th, .info-table td { text-align: left; padding: 14px; border-bottom: 1px solid rgba(255,255,255,.08); vertical-align: top; }
.info-table th { width: 34%; color: #d3dbea; font-weight: 650; }
.info-table td { color: #9eabbe; }
.receipt { max-width: 620px; margin: 24px auto 0; padding: 28px; border-radius: 20px; background: #f8fafc; color: #121826; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; box-shadow: 0 24px 60px rgba(0,0,0,.28); }
.receipt h3 { margin: 0 0 18px; text-align: center; }
.receipt-row { display: flex; justify-content: space-between; gap: 18px; padding: 7px 0; border-bottom: 1px dashed #cfd5de; }
.receipt-total { font-weight: 850; font-size: 18px; }
.receipt small { display: block; margin-top: 18px; text-align: center; color: #657084; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(2, 6, 14, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.modal-backdrop.is-open { opacity: 1; visibility: visible; }
.modal {
  width: min(100%, 540px);
  max-height: min(90vh, 820px);
  overflow: visible;
  border-radius: 28px;
  padding: 24px;
  transform: translateY(14px) scale(.98);
  transition: transform .25s ease;
  position: relative;
  scrollbar-width: none;
}
.modal::-webkit-scrollbar { width: 0; height: 0; display: none; }
.modal-backdrop.is-open .modal { transform: translateY(0) scale(1); }
.modal-close { position: absolute; right: 18px; top: 18px; width: 38px; height: 38px; border-radius: 13px; border: 1px solid var(--line); background: rgba(255,255,255,.05); cursor: pointer; display: grid; place-items: center; }
.modal-close svg { width: 17px; }
.modal h2 { margin: 0; font-size: 31px; letter-spacing: -.04em; }
.modal-intro { margin: 9px 0 0; color: var(--muted); }
.order-summary { margin: 24px 0; padding: 17px; border-radius: 17px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.09); display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.order-summary span { color: var(--muted); font-size: 13px; }
.order-summary strong { display: block; margin-top: 2px; }
.order-price { text-align: right; font-size: 20px; }
.form-grid { display: grid; gap: 16px; }
.field { display: grid; gap: 8px; }
.field label { color: #d4dcea; font-size: 13px; font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(4,10,20,.55);
  color: white;
  border-radius: 14px;
  min-height: 50px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 94px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: rgba(157,177,255,.55); box-shadow: 0 0 0 4px rgba(157,177,255,.09); }
.field-help { color: var(--muted-2); font-size: 11px; }
.checkbox { display: grid; grid-template-columns: auto 1fr; gap: 11px; align-items: start; color: #aab5c6; font-size: 12px; }
.checkbox input { width: 18px; height: 18px; accent-color: #8edec8; margin-top: 1px; }
.checkbox a { color: #c6d1ff; text-decoration: underline; text-underline-offset: 3px; }
.form-status { min-height: 22px; color: var(--muted); font-size: 13px; }
.form-status.is-error { color: var(--danger); }
.form-status.is-success { color: var(--success); }

.toast {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  max-width: 390px;
  padding: 15px 17px;
  border-radius: 16px;
  background: rgba(13, 24, 42, .92);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  color: #dbe2ed;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
}
.toast.is-visible { transform: translateY(0); opacity: 1; visibility: visible; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
@keyframes breathe { 0%, 100% { transform: scale(.96); opacity: .55; } 50% { transform: scale(1.05); opacity: .75; } }
@keyframes orbit-spin { from { transform: rotateX(66deg) rotateZ(-22deg); } to { transform: rotateX(66deg) rotateZ(338deg); } }

@media (max-width: 980px) {
  :root { --header-h: 70px; }
  .nav {
    position: fixed;
    top: 76px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    padding: 12px;
    background: rgba(8,16,30,.94);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav a { padding: 13px 14px; }
  .menu-toggle { display: flex; flex-direction: column; }
  .header-actions .btn { display: none; }
  .hero { padding-top: 104px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero h1, .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-kicker, .hero-actions, .hero-meta { justify-content: center; }
  .product-visual { min-height: 540px; margin-top: 0; }
  .float-chip.one { left: 4%; top: 42%; }
  .float-chip.two { right: 3%; bottom: 8%; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card.wide { grid-column: auto; }
  .steps-layout, .pricing-wrap { grid-template-columns: 1fr; }
  .steps-sticky { position: static; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .company-data { grid-template-columns: 1fr 1fr; }
  .payment-row { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; gap: 25px; }
  .legal-toc { position: static; display: flex; overflow-x: auto; gap: 4px; }
  .legal-toc strong { display: none; }
  .legal-toc a { white-space: nowrap; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 60px 0; }
  .section-sm { padding: 38px 0; }
  .hero { padding: 92px 0 42px; }
  .hero h1 { font-size: clamp(44px, 13.5vw, 64px); line-height: .96; }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; margin-top: 22px; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { gap: 10px 16px; }
  .product-visual { min-height: 405px; margin-inline: 0; }
  .product-orb { width: 310px; }
  .orbit { width: 350px; height: 350px; }
  .plan-card { width: min(100%, 360px); padding: 22px; transform: none; margin-top: 0; }
  .plan-card:hover { transform: translateY(-4px); }
  .float-chip { display: none; }
  .trust-panel { grid-template-columns: 1fr; }
  .trust-links { justify-content: flex-start; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card.tall { min-height: auto; }
  .price-card { padding: 23px; }
  .footer-main { padding: 30px 24px; grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .company-data { padding: 24px; grid-template-columns: 1fr; }
  .payment-row { padding: 24px; }
  .payment-logos img { height: 38px; }
  .footer-bottom { padding: 18px 24px; flex-direction: column; }
  .legal-hero { padding-top: 122px; }
  .legal-card { padding: 22px; }
  .info-table, .info-table tbody, .info-table tr, .info-table th, .info-table td { display: block; width: 100%; }
  .info-table tr { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .info-table th, .info-table td { border: 0; padding: 3px 0; }
  .modal { padding: 20px 18px; max-height: 86vh; overflow-y: auto; }
}

@media (max-width: 430px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .payment-logos img { height: 36px; }
  .plan-price strong { font-size: 41px; }
}

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


.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 120;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  transform-origin: left center;
  transform: scaleX(calc(var(--scroll-progress, 0%) / 100));
  box-shadow: 0 0 20px rgba(123, 228, 199, .6);
}
.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 380px;
  height: 380px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  translate: calc(var(--cursor-x, -999px) - 50%) calc(var(--cursor-y, -999px) - 50%);
  background: radial-gradient(circle, rgba(123, 228, 199, .18), rgba(157, 177, 255, .12) 38%, transparent 70%);
  filter: blur(8px);
  transition: opacity .25s ease;
}
.cursor-glow.is-active { opacity: 1; }
.hero::before {
  content: "";
  position: absolute;
  inset: 8% -12% auto auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.15), rgba(157,177,255,.08) 30%, transparent 70%);
  filter: blur(10px);
  animation: float 9s ease-in-out infinite;
  pointer-events: none;
}
.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.mini-glass {
  position: relative;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow-soft);
}
.mini-glass strong { display: block; font-size: 14px; }
.mini-glass span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }
.hero-telegram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-telegram svg, .telegram-mini-icon svg, .telegram-fab svg, .telegram-inline svg { width: 19px; height: 19px; }
.telegram-inline { display: inline-flex; align-items: center; gap: 8px; }
.telegram-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(10,18,34,.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  color: #ebf2ff;
}
.telegram-fab span { font-size: 13px; font-weight: 700; }
.telegram-fab small { display: block; color: var(--muted); font-size: 11px; }
.telegram-fab:hover { transform: translateY(-2px) scale(1.02); }
.btn-telegram {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
}
.btn-telegram:hover { background: rgba(255,255,255,.1); }
.currency-amount, .currency-inline-text {
  display: inline-flex;
  align-items: center;
  gap: .3em;
}
.currency-value { line-height: 1; }
.currency-icon, .currency-inline-icon {
  width: .82em;
  height: .98em;
  color: currentColor;
  opacity: .96;
  flex: none;
}
.payment-logos { gap: 12px; }
.pay-chip {
  min-height: 58px;
  padding: 12px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pay-chip img { height: 22px; width: auto; }
.footer-telegram {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  color: #dfe9ff !important;
}
.footer-telegram:hover { color: white !important; }
.footer-main { align-items: start; }
.order-hints {
  display: grid;
  gap: 9px;
  margin-top: -4px;
}
.order-hint {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 12px 14px;
  border-radius: 15px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  color: #b7c2d4;
  font-size: 12px;
}
.order-hint svg { width: 16px; flex: none; color: #9dd6ff; }
.plan-card::before, .feature-card::before, .step-card::before, .price-card::before, .cta-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(255,255,255,.18), rgba(255,255,255,0), rgba(123,228,199,.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.trust-panel, .feature-card, .step-card, .price-card, .cta-panel, .footer-shell { isolation: isolate; }
.faq-content ul { margin: 10px 0 0; padding-left: 20px; color: #b4c0d1; }
.faq-content li + li { margin-top: 7px; }
.section-heading .currency-inline-text { vertical-align: middle; }
.hero-actions .btn { position: relative; }
.btn[data-magnetic] { transition: transform .2s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.btn::after {
  content: "";
  position: absolute;
  inset: auto 8% -35%;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(157,177,255,.42), transparent 72%);
  filter: blur(12px);
  opacity: 0;
  transition: opacity .25s ease;
}
.btn:hover::after { opacity: 1; }
.price-line strong .currency-icon, .plan-price strong .currency-icon, .order-price .currency-icon { width: .74em; height: .95em; }
.payment-title .currency-inline-icon { width: .72em; height: .92em; }
.hero-support-note {
  margin-top: 18px;
  color: #8fa4c7;
  font-size: 13px;
}
.auto-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}
.auto-card {
  position: relative;
  padding: 18px;
  border-radius: 21px;
}
.auto-card h3 { margin: 0; font-size: 18px; }
.auto-card p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.legal-card code { color: #d9e3f3; background: rgba(255,255,255,.05); padding: 2px 6px; border-radius: 8px; }
@media (max-width: 980px) {
  .hero-highlights, .auto-grid { grid-template-columns: 1fr; }
  .telegram-fab span { display: none; }
  .telegram-fab small { display: none; }
}
@media (max-width: 720px) {
  .pay-chip { width: calc(50% - 6px); min-height: 54px; }
  .pay-chip img { max-width: 100%; object-fit: contain; }
  .footer-bottom { flex-direction: column; }
  .company-data, .payment-row { padding-inline: 22px; }
}


html, body { overflow-x: clip; }
* { scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.14) transparent; }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb { background: rgba(255,255,255,.16); border-radius: 999px; border: 2px solid transparent; background-clip: padding-box; }
.text-gradient { display: inline-block; padding-left: .02em; overflow: visible; }
.cursor-glow { display: none !important; }
.price-line .currency-amount,
.plan-price .currency-amount,
.order-price .currency-amount { display: inline-flex; align-items: flex-end; gap: .12em; }
.price-line .currency-value { color: #f2f6ff; }
.plan-price .currency-value { color: #f2f6ff; }
.price-line .currency-icon { width: .34em; height: .48em; opacity: .72; margin-left: .02em; }
.plan-price .currency-icon { width: .34em; height: .48em; opacity: .72; margin-left: .02em; }
.order-price .currency-icon { width: .42em; height: .56em; opacity: .75; }
.price-line span:last-child:empty { display: none; }
.price-card .eyebrow { color: #bfd0ef; }
.hero-kicker .section-label { padding-block: 10px; }
.product-visual .float-chip.one { min-width: 170px; justify-content: center; }
.mini-glass, .feature-card, .step-card, .price-card, .trust-panel, .cta-panel { transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.mini-glass:hover, .feature-card:hover, .step-card:hover, .price-card:hover, .trust-panel:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.15); }
.section + .container .auto-grid { margin-top: -10px; }
.auto-grid { margin-top: 8px; }
@media (max-width: 980px) {
  .hero-kicker { gap: 8px; }
  .hero-highlights { margin-top: 20px; }
}
@media (max-width: 680px) {
  .hero-kicker { justify-content: flex-start; }
  .hero-copy { text-align: left; }
  .hero h1, .hero-lead { margin-left: 0; margin-right: 0; }
  .hero-kicker, .hero-actions, .hero-meta { justify-content: flex-start; }
  .hero-highlights { grid-template-columns: 1fr; gap: 10px; margin-top: 18px; }
  .mini-glass { padding: 12px 14px; }
  .steps-layout { margin-top: 34px; gap: 26px; }
  .pricing-wrap { gap: 22px; }
  .faq-list { margin-top: 30px; }
  .cta-panel { padding: 26px 20px; }
  .price-line strong { font-size: 50px; }
  .price-line .currency-icon { width: .32em; height: .46em; }
}
@media (max-width: 430px) {
  .hero-copy { padding-top: 0; }
  .hero-meta { margin-top: 18px; }
  .section-label { font-size: 12px; }
}

.currency-inline-icon { width: .66em; height: .82em; transform: translateY(.04em); }
.currency-icon { width: .62em; height: .78em; transform: translateY(.04em); }
.btn .currency-icon { width: .44em; height: .58em; color: rgba(15,24,45,.72); }
.price-line .currency-icon,
.plan-price .currency-icon,
.order-price .currency-icon { color: #aab4c7; transform: translateY(.01em); }
.modal-backdrop { overflow: hidden; }
