:root {
  --bg: #020811;
  --bg-2: #07131f;
  --panel: rgba(15, 28, 43, .78);
  --panel-2: rgba(12, 25, 39, .92);
  --line: rgba(137, 171, 216, .18);
  --blue: #1d7cff;
  --blue-2: #0a56d6;
  --green: #22d36f;
  --yellow: #ffbd21;
  --red: #ff4444;
  --text: #f6fbff;
  --muted: #9aa9bc;
  --soft: #c7d4e4;
  --shadow: 0 24px 80px rgba(0, 0, 0, .5);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 16%, rgba(14, 100, 255, .28), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(3, 90, 190, .18), transparent 42%),
    linear-gradient(180deg, #01050b 0%, #06111c 45%, #020811 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(30, 126, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 126, 255, .05) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at 62% 18%, black, transparent 58%);
}

a { color: inherit; text-decoration: none; }
.page-shell { width: min(100%, 1440px); margin: 0 auto; overflow: hidden; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 52px;
  background: rgba(2, 8, 17, .72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(117, 159, 218, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0;
}

.brand-mark {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--blue);
}
.brand-mark svg,
.brand-mark img { width: 100%; height: 100%; display: block; filter: drop-shadow(0 0 12px rgba(29, 124, 255, .45)); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
  font-size: 14px;
  color: #d8e5f7;
}
.nav-links a:first-child { color: var(--blue); }
.nav-links a:hover { color: var(--blue); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid rgba(137, 171, 216, .22);
  background: rgba(15, 28, 43, .6);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: #d8e5f7;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: sticky;
  top: 73px;
  z-index: 19;
  flex-direction: column;
  gap: 2px;
  padding: 10px 22px 18px;
  background: rgba(2, 8, 17, .97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(117, 159, 218, .12);
}
.mobile-nav a {
  padding: 13px 4px;
  font-size: 15px;
  font-weight: 700;
  color: #d8e5f7;
  border-bottom: 1px solid rgba(137, 171, 216, .1);
}
.mobile-nav a:hover { color: var(--blue); }
.mobile-nav .download-pill {
  justify-content: center;
  margin-top: 12px;
  border: 1px solid rgba(50, 139, 255, .75);
}
.mobile-nav.open { display: flex; }

.download-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 13px;
  border: 1px solid rgba(50, 139, 255, .75);
  box-shadow: inset 0 0 24px rgba(29, 124, 255, .18), 0 8px 28px rgba(0, 71, 180, .22);
  font-weight: 800;
  font-size: 13px;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 44px;
}

.hero {
  position: relative;
  min-height: 620px;
  padding: 34px 86px 0;
  background:
    linear-gradient(90deg, rgba(1, 6, 12, .3), rgba(2, 9, 18, .08)),
    url("./hero-atmosphere.png") center top / cover no-repeat,
    radial-gradient(circle at 82% 44%, rgba(18, 105, 255, .2), transparent 31%),
    radial-gradient(circle at 52% 20%, rgba(10, 77, 176, .18), transparent 38%);
}

.hero-copy,
.hero-visual {
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 96px;
  background: linear-gradient(180deg, transparent, rgba(7, 18, 28, .92));
  pointer-events: none;
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  margin-bottom: 28px;
  padding: 8px 14px;
  border: 1px solid rgba(29, 124, 255, .24);
  border-radius: 999px;
  background: rgba(14, 86, 186, .16);
  color: #69a8ff;
  font-weight: 800;
  font-size: 14px;
}

h1, h2, h3, p { margin: 0; }
.hero h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 8vw, 100px);
  line-height: .86;
  letter-spacing: 0;
  text-shadow: 0 18px 48px rgba(0,0,0,.45);
}
.hero h1 span {
  color: var(--blue);
  text-shadow: 0 0 30px rgba(29, 124, 255, .42);
}
.hero h2 {
  max-width: 620px;
  margin-top: 26px;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.08;
  font-weight: 900;
}
.hero p {
  max-width: 580px;
  margin-top: 28px;
  color: #c7d4e4;
  font-size: 20px;
  line-height: 1.7;
}
.good { color: var(--green); }
.warn { color: var(--yellow); }
.bad { color: var(--red); }

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.primary-btn, .secondary-btn {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 34px;
  border-radius: 14px;
  font-weight: 900;
}
.primary-btn {
  background: linear-gradient(135deg, #2f91ff, #1068ff);
  box-shadow: 0 18px 44px rgba(22, 112, 255, .36);
}
.secondary-btn {
  min-width: 260px;
  border: 1px solid rgba(173, 197, 230, .35);
  background: rgba(7, 15, 25, .7);
}
.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 28px;
  color: #a9b8c9;
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 586px;
  display: grid;
  place-items: start center;
}

.phone {
  position: relative;
  z-index: 2;
  width: min(390px, 86vw);
  height: 610px;
  padding: 18px;
  border-radius: 48px 48px 0 0;
  border: 4px solid #222b36;
  border-bottom: 0;
  background: linear-gradient(145deg, #02050a, #1a222c);
  box-shadow: var(--shadow), inset 0 0 0 2px rgba(255,255,255,.05);
}
.phone::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 40px 40px 0 0;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}
.phone-notch {
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  width: 144px;
  height: 26px;
  border-radius: 0 0 18px 18px;
  background: #03060b;
  z-index: 3;
}
.phone-status {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  padding: 8px 13px 12px;
  font-size: 12px;
  font-weight: 800;
}
.phone-screen {
  position: relative;
  height: 540px;
  padding: 0;
  border-radius: 26px 26px 0 0;
  background: linear-gradient(180deg, #08131e, #07101a 72%);
  border: 1px solid rgba(137, 171, 216, .14);
  overflow: hidden;
}
.phone-screenshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.screen-label {
  display: block;
  margin-bottom: 16px;
  font-weight: 800;
}
.offer-card {
  text-align: center;
  padding: 27px 16px;
  border: 1px solid rgba(137, 171, 216, .14);
  border-radius: 14px;
  background: rgba(14, 28, 44, .85);
}
.offer-card strong {
  display: block;
  font-size: 40px;
  font-family: "Outfit", sans-serif;
}
.offer-card span { color: #cbd7e6; font-weight: 800; font-size: 20px; }
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 22px 0;
  border-bottom: 1px solid rgba(137, 171, 216, .12);
}
.metrics div {
  padding: 0 14px 18px;
  border-right: 1px solid rgba(137, 171, 216, .12);
}
.metrics div:last-child { border-right: 0; }
.metrics span, .distances span { display: block; color: #8d9db0; font-size: 12px; margin-bottom: 5px; }
.metrics b { font-size: 14px; }
.distances { display: grid; gap: 19px; padding-bottom: 24px; border-bottom: 1px solid rgba(137, 171, 216, .12); }
.distances p { display: flex; justify-content: space-between; align-items: center; }
.distances b { font-size: 14px; }
.decision-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 24px; }
.decision { display: grid; place-items: center; gap: 9px; font-size: 12px; font-weight: 900; }
.decision span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 4px solid currentColor;
  border-radius: 50%;
  font-size: 35px;
}
.accept { color: var(--green); }
.analyze { color: var(--yellow); }
.reject { color: var(--red); }

.how, .features, .plans, .faq, .why, .security, .final-cta {
  padding-left: 86px;
  padding-right: 86px;
}
.how {
  padding-top: 28px;
  padding-bottom: 46px;
  background: linear-gradient(180deg, rgba(8, 21, 33, .8), transparent);
}
.section-title { text-align: center; margin-bottom: 28px; }
.section-title h2, .why h2, .security h2, .final-cta h2 {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 900;
}
.section-title p { margin-top: 8px; color: var(--muted); }

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 28px;
  align-items: center;
}
.step-card, .feature-grid article, .plan, .security, .final-cta, .quote-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(18, 34, 52, .82), rgba(11, 22, 35, .72));
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}
.step-card {
  min-height: 162px;
  display: flex;
  gap: 18px;
  padding: 24px;
}
.icon, .feature-grid span {
  flex: none;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(29, 124, 255, .15);
  border: 1px solid rgba(29, 124, 255, .6);
  color: #69a8ff;
  font-size: 23px;
  box-shadow: inset 0 0 20px rgba(29, 124, 255, .12);
}
.step-card b { font-weight: 900; }
.step-card i {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--blue);
  font-style: normal;
  font-size: 13px;
}
.step-card p, .feature-grid p, .plan p, .security p { margin-top: 13px; color: var(--muted); line-height: 1.55; }
.step-arrow { font-size: 54px; color: rgba(179, 197, 222, .42); }

.features { padding-top: 0; padding-bottom: 64px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-grid article { padding: 24px; min-height: 157px; }
.feature-grid h3 { margin-top: 14px; font-size: 18px; }

.feature-group-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}
.feature-group + .feature-group { margin-top: 36px; }
.feature-group.featured {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(29, 124, 255, .1), rgba(10, 20, 33, .3));
  border: 1px solid rgba(29, 124, 255, .22);
}
.feature-group.featured .feature-group-title {
  color: #7fb2ff;
}
.feature-group.featured .feature-group-title::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(29, 124, 255, .9);
}
.feature-grid-pro { grid-template-columns: repeat(3, 1fr); }
.feature-grid article.pro {
  border-color: rgba(29, 124, 255, .38);
  background: linear-gradient(145deg, rgba(23, 44, 68, .85), rgba(11, 22, 35, .72));
}
.feature-grid article.pro span {
  background: rgba(29, 124, 255, .22);
  border-color: rgba(29, 124, 255, .8);
}

.why {
  padding-top: 0;
  padding-bottom: 64px;
  margin-top: 20px;
  padding-top: 56px;
  grid-template-columns: .75fr 1.25fr;
  background: linear-gradient(180deg, transparent, rgba(29, 124, 255, .05) 40%, transparent);
  border-top: 1px solid var(--line);
}
.why-list { padding-left: 28px; }
.why-list ul { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 13px; color: var(--soft); }
.why-list li { position: relative; padding-left: 34px; }
.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-weight: 900;
  font-size: 13px;
}
.quote-card {
  position: relative;
  min-height: 288px;
  padding: 58px 48px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 21, 34, .04), rgba(8, 21, 34, .02)),
    url("./quote-wheel-bg.png") center / 100% 100% no-repeat;
}
.quote-card blockquote,
.quote-card > span,
.quote-card p {
  opacity: 1;
}
.quote-card blockquote {
  position: relative;
  margin: 0;
  z-index: 2;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
}
.quote-card > span {
  display: block;
  position: relative;
  z-index: 2;
  width: 34px;
  height: 3px;
  margin: 32px 0 22px;
  background: var(--blue);
}
.quote-card p { position: relative; z-index: 2; color: var(--soft); font-size: 19px; line-height: 1.55; }
.wheel {
  display: none;
}
.wheel::before {
  content: "";
  position: absolute;
  inset: -54px -78px -54px -34px;
  background:
    linear-gradient(38deg, transparent 0 42%, rgba(29,124,255,.18) 43% 45%, transparent 46%),
    linear-gradient(-28deg, transparent 0 52%, rgba(83,152,255,.14) 53% 55%, transparent 56%);
  opacity: .7;
}
.wheel::after {
  content: "";
  position: absolute;
  inset: 92px;
  border-radius: 50%;
  border: 12px solid rgba(29,124,255,.55);
}

.plans { padding-top: 0; padding-bottom: 46px; }
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}
.plan {
  position: relative;
  padding: 34px 24px 24px;
}
.plan.featured {
  border-color: rgba(29, 124, 255, .95);
  box-shadow: 0 0 34px rgba(29, 124, 255, .13), inset 0 1px 0 rgba(255,255,255,.05);
}
.plan em {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -1px);
  padding: 10px 34px;
  border-radius: 0 0 12px 12px;
  background: var(--blue);
  font-style: normal;
  font-weight: 900;
}
.plan h3 { font-size: 24px; }
.plan strong {
  display: block;
  margin: 22px 0;
  font-size: 35px;
  font-family: "Outfit", sans-serif;
}
.plan small { color: var(--muted); font-family: "Manrope"; font-size: 16px; font-weight: 700; }
.plan ul { padding: 0; margin: 0 0 28px; list-style: none; display: grid; gap: 8px; color: #e4edf8; }
.plan li::before { content: "✓ "; color: var(--text); }
.plan a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid var(--blue);
  border-radius: 12px;
  color: #2f91ff;
  font-weight: 900;
}
.plan.featured a { color: white; background: linear-gradient(135deg, #2f91ff, #1068ff); }
.save {
  color: var(--blue) !important;
  font-weight: 900;
  margin-top: -12px !important;
  margin-bottom: 20px !important;
  font-size: 14px;
}
.plan-note { text-align: center; margin-top: 20px; color: var(--muted); }

.security {
  margin: 0 86px 50px;
  padding: 26px 38px;
  display: grid;
  grid-template-columns: auto 1.2fr repeat(4, 1fr);
  gap: 30px;
  align-items: center;
}
.security .lock {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--blue);
  font-size: 34px;
  background: rgba(29, 124, 255, .13);
}
.security div:not(.lock) { display: flex; gap: 14px; align-items: center; }
.security span { color: #aebbd0; font-size: 28px; }
.security p { margin: 0; font-size: 14px; }

.faq { padding-top: 0; padding-bottom: 46px; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 14px; }
.faq-item {
  position: relative;
  width: 100%;
  min-height: 54px;
  padding: 0 48px 0 22px;
  border: 1px solid rgba(137, 171, 216, .13);
  border-radius: 12px;
  background: rgba(15, 28, 43, .72);
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.faq-item b {
  position: absolute;
  right: 18px;
  top: 16px;
  transition: transform .2s ease;
}
.faq-item p {
  display: none;
  padding: 0 0 18px;
  color: var(--muted);
  line-height: 1.5;
}
.faq-item.open { padding-top: 16px; }
.faq-item.open b { transform: rotate(180deg); }
.faq-item.open p { display: block; margin-top: 12px; }

.final-cta {
  position: relative;
  margin: 0 98px 30px;
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 80%, rgba(29,124,255,.42), transparent 24%),
    linear-gradient(145deg, rgba(19, 42, 67, .92), rgba(8, 20, 34, .9));
}
.final-cta::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 270px;
  height: 118px;
  background:
    radial-gradient(circle at 38% 32%, rgba(29,124,255,.95) 0 6px, transparent 7px),
    linear-gradient(135deg, transparent 0 41%, rgba(29,124,255,.55) 42% 44%, transparent 45%),
    linear-gradient(28deg, transparent 0 55%, rgba(69,153,255,.32) 56% 58%, transparent 59%),
    linear-gradient(110deg, rgba(5,15,26,.1), rgba(4,11,20,.72));
  clip-path: polygon(0 18%, 55% 0, 100% 100%, 0 100%);
  opacity: .9;
}
.final-cta > div {
  position: relative;
  z-index: 1;
  margin-left: 250px;
}
.final-cta .primary-btn {
  position: relative;
  z-index: 1;
}
.final-cta h2 { max-width: 660px; }
.final-cta p { margin-top: 8px; color: var(--soft); font-size: 19px; }

.whatsapp-contact-copy {
  display: grid;
  justify-items: start;
  gap: 10px;
  margin-top: 18px;
}

.whatsapp-contact-copy p,
.legal-whatsapp-contact p {
  margin: 0;
}

.whatsapp-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(134, 239, 172, 0.45);
  border-radius: 8px;
  background: #15803d;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(22, 163, 74, 0.22);
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.whatsapp-btn:hover {
  background: #166534;
  border-color: rgba(187, 247, 208, 0.75);
  transform: translateY(-1px);
}

.legal-card .whatsapp-btn,
.legal-card .whatsapp-btn:visited {
  color: #ffffff;
}

.whatsapp-btn:focus-visible {
  outline: 3px solid rgba(74, 222, 128, 0.5);
  outline-offset: 3px;
}

.whatsapp-btn img {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.whatsapp-btn--compact {
  min-height: 48px;
  padding: 10px 16px;
}

.legal-whatsapp-contact {
  display: grid;
  justify-items: start;
  gap: 14px;
}

@media (max-width: 640px) {
  .whatsapp-contact-copy,
  .legal-whatsapp-contact {
    justify-items: stretch;
  }

  .whatsapp-btn {
    width: 100%;
  }
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  align-items: center;
  gap: 30px;
  padding: 28px 86px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer .brand { color: var(--text); }
.footer nav { display: flex; gap: 34px; }
.footer small { grid-column: 3; }

@media (max-width: 1100px) and (min-width: 761px) {
  .site-header { padding: 10px 30px; }
  .nav-links { gap: 22px; }
  .download-pill { padding: 9px 14px; font-size: 12px; }
  .hero, .how, .features, .plans, .faq, .why {
    padding-left: 52px;
    padding-right: 52px;
  }
  .hero {
    min-height: 375px;
    padding-top: 10px;
    gap: 18px;
  }
  .eyebrow {
    margin-bottom: 13px;
    padding: 5px 10px;
    font-size: 11px;
  }
  .hero h1 { font-size: 54px; }
  .hero h2 {
    margin-top: 12px;
    font-size: 25px;
  }
  .hero p {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.35;
  }
  .hero-actions {
    margin-top: 18px;
    gap: 10px;
  }
  .primary-btn, .secondary-btn {
    min-height: 36px;
    padding: 0 16px;
    border-radius: 9px;
    font-size: 11px;
  }
  .secondary-btn {
    min-width: 180px;
  }
  .trust-line {
    margin-top: 12px;
    font-size: 10px;
  }
  .hero-visual {
    min-height: 375px;
    place-items: start center;
  }
  .phone {
    width: 260px;
    height: 392px;
    padding: 10px;
    border-radius: 34px 34px 0 0;
  }
  .phone-notch { width: 100px; height: 19px; top: 10px; }
  .phone-status { padding: 6px 10px 8px; font-size: 9px; }
  .phone-screen {
    height: 344px;
    border-radius: 20px 20px 0 0;
  }
  .steps { gap: 12px; }
  .step-arrow {
    font-size: 34px;
  }
  .step-card {
    min-width: 0;
    padding: 10px;
    min-height: 78px;
    gap: 8px;
  }
  .step-card p {
    margin-top: 4px;
    font-size: 8.5px;
    line-height: 1.25;
  }
  .step-card b {
    font-size: 10px;
  }
  .step-card i { width: 17px; height: 17px; font-size: 10px; }
  .icon, .feature-grid span {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    font-size: 13px;
  }
  .how { padding-top: 10px; padding-bottom: 18px; }
  .section-title { margin-bottom: 12px; }
  .section-title h2, .why h2, .security h2, .final-cta h2 { font-size: 20px; }
  .section-title p { font-size: 10px; }
  .feature-grid { gap: 10px; }
  .features { padding-bottom: 22px; }
  .feature-grid article {
    padding: 10px;
    min-height: 74px;
  }
  .feature-grid h3 {
    margin-top: 7px;
    font-size: 10.5px;
  }
  .feature-grid p {
    margin-top: 4px;
    font-size: 8px;
    line-height: 1.2;
  }
  .why {
    padding-bottom: 20px;
    grid-template-columns: .72fr 1.28fr;
  }
  .why-list { padding-left: 18px; }
  .why-list ul {
    margin-top: 10px;
    gap: 4px;
    font-size: 9px;
  }
  .why-list li { padding-left: 25px; }
  .why-list li::before { width: 17px; height: 17px; font-size: 10px; }
  .quote-card {
    min-height: 179px;
    padding: 34px 30px;
  }
  .quote-card blockquote { font-size: 20px; }
  .quote-card > span { margin: 14px 0 12px; }
  .quote-card p { font-size: 13px; }
  .wheel { width: 170px; height: 170px; border-width: 24px; right: -20px; }
  .plans { padding-bottom: 18px; }
  .plan-grid { gap: 14px; }
  .plan { padding: 18px 14px 14px; }
  .plan h3 { font-size: 14px; }
  .plan p, .plan li { font-size: 8.5px; }
  .plan strong { margin: 8px 0; font-size: 21px; }
  .plan small { font-size: 10px; }
  .plan ul { gap: 2px; margin-bottom: 10px; }
  .plan a { min-height: 28px; font-size: 9.5px; border-radius: 8px; }
  .plan em { padding: 6px 24px; font-size: 11px; }
  .plan-note { margin-top: 12px; font-size: 10px; }
  .security { margin-left: 52px; margin-right: 52px; gap: 14px; padding: 14px 22px; }
  .security {
    margin-bottom: 14px;
    padding: 14px 22px;
  }
  .security .lock { width: 42px; height: 42px; font-size: 20px; }
  .security p { font-size: 8.5px; }
  .security span { font-size: 16px; }
  .faq { padding-bottom: 14px; }
  .faq-grid { gap: 5px 8px; }
  .faq-item { min-height: 28px; font-size: 8.5px; border-radius: 8px; padding-left: 14px; }
  .final-cta { margin-left: 52px; margin-right: 52px; }
  .final-cta {
    margin-bottom: 12px;
    padding: 12px 26px;
  }
  .final-cta > div { margin-left: 180px; }
  .final-cta .primary-btn {
    min-width: 150px;
    min-height: 40px;
    padding: 0 14px;
    white-space: nowrap;
  }
  .final-cta p { font-size: 11px; }
  .footer {
    padding: 14px 52px;
    font-size: 9px;
  }
  .footer .brand { font-size: 12px; }
}

.legal-page {
  min-height: 100vh;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.legal-page > .brand {
  margin-bottom: 28px;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 22, 35, .86);
  box-shadow: var(--shadow);
  padding: clamp(24px, 5vw, 56px);
}

.legal-card h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1;
  margin-bottom: 18px;
}

.legal-card h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 20px;
  color: #dbe8f8;
}

.legal-card p {
  color: var(--soft);
  font-size: 16px;
  line-height: 1.8;
}

.legal-card a {
  color: var(--blue);
  font-weight: 800;
}

.release-box {
  margin: 28px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(29, 124, 255, .38);
  background: rgba(29, 124, 255, .08);
}

.release-box-icon {
  flex: none;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(29, 124, 255, .18);
  border: 1px solid rgba(29, 124, 255, .6);
  color: #69a8ff;
}

.release-box-info {
  flex: 1;
  min-width: 200px;
  display: grid;
  gap: 2px;
}

.release-box strong {
  font-family: "Outfit", sans-serif;
  font-size: 26px;
}

.release-box span {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.release-box-info p {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.5;
}

.release-box .primary-btn {
  flex: none;
  width: 100%;
  color: white;
}

.release-box .primary-btn.disabled {
  pointer-events: none;
  opacity: .55;
}

.download-hero-card {
  background:
    linear-gradient(160deg, rgba(29, 124, 255, .08), transparent 60%),
    rgba(10, 22, 35, .86);
}

.legal-page .legal-card + .legal-card { margin-top: 20px; }

.section-icon-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0 !important;
}

.section-icon-title span {
  flex: none;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(29, 124, 255, .15);
  border: 1px solid rgba(29, 124, 255, .55);
  color: #69a8ff;
  font-size: 15px;
}

.install-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.install-step {
  display: flex;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(18, 34, 52, .6), rgba(11, 22, 35, .5));
}

.install-step-number {
  flex: none;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-weight: 900;
  font-size: 13px;
}

.install-step b { display: block; margin-bottom: 4px; }
.install-step p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.55; }

@media (max-width: 760px) {
  .install-steps { grid-template-columns: 1fr; }
  .release-box .primary-btn { width: 100%; }
}

.release-history {
  margin: 28px 0;
}

.release-history-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.release-history-item {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .02);
  overflow: hidden;
}

.release-history-header {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  cursor: pointer;
}

.release-history-title-group {
  display: grid;
  gap: 4px;
}

.release-history-title-group strong {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
}

.release-history-meta {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.release-history-chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.release-history-changelog {
  display: none;
  margin: 0;
  padding: 0 20px 16px;
  color: #c3d1e0;
  font-size: 14px;
  line-height: 1.5;
}

.release-history-item.open .release-history-changelog {
  display: block;
}

.release-history-toggle-all {
  all: unset;
  box-sizing: border-box;
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  border: 1px dashed var(--line);
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.release-history-toggle-all:hover {
  color: #dbe8f8;
  border-color: rgba(137, 171, 216, .4);
}

@media (max-width: 760px) {
  .site-header { padding: 16px 22px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero, .how, .features, .plans, .faq, .why { padding-left: 22px; padding-right: 22px; }
  .hero { grid-template-columns: 1fr; padding-top: 38px; min-height: auto; }
  .hero-visual { min-height: 560px; }
  .phone { height: 570px; }
  .phone-screen { height: 500px; }
  .steps, .feature-grid, .plan-grid, .faq-grid, .why { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .security { margin: 0 22px 42px; grid-template-columns: 1fr; }
  .final-cta { margin: 0 22px 26px; flex-direction: column; align-items: stretch; padding: 28px; }
  .final-cta > div { margin-left: 0; }
  .final-cta::before { opacity: .35; }
  .footer { grid-template-columns: 1fr; padding: 28px 22px; }
  .footer small { grid-column: auto; }
}

/* ─── Tutorial ──────────────────────────────────────────────────────── */

.tutorial-page {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.tutorial-page > .brand { margin-bottom: 8px; }

.tutorial-intro {
  max-width: 720px;
  margin: 24px 0 40px;
}

.tutorial-intro .eyebrow { margin-bottom: 14px; }

.tutorial-intro h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.05;
  margin: 0 0 14px;
}

.tutorial-intro p {
  color: var(--soft);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.tutorial-apps-line {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.tutorial-apps-line span.chip {
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(15, 28, 43, .7);
  color: var(--soft);
  font-weight: 700;
}

.tutorial-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.tutorial-index {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding-right: 8px;
}

.tutorial-index-group + .tutorial-index-group { margin-top: 22px; }

.tutorial-index-group h4 {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

.tutorial-index-group ul { list-style: none; margin: 0; padding: 0; }

.tutorial-index-group a {
  display: block;
  padding: 7px 10px;
  margin: 1px 0;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--soft);
  border-left: 2px solid transparent;
}

.tutorial-index-group a:hover { color: var(--text); background: rgba(137, 171, 216, .06); }

.tutorial-index-group a.active {
  color: var(--text);
  background: rgba(29, 124, 255, .14);
  border-left-color: var(--blue);
}

.tutorial-mobile-index {
  display: none;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 14px;
  margin-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}

.tutorial-mobile-index a {
  flex: none;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(15, 28, 43, .7);
  color: var(--soft);
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
}

.tutorial-mobile-index a.active {
  color: var(--text);
  background: rgba(29, 124, 255, .18);
  border-color: var(--blue);
}

.tutorial-content { display: flex; flex-direction: column; gap: 18px; min-width: 0; }

.tutorial-section {
  display: none;
  scroll-margin-top: 90px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(18, 34, 52, .82), rgba(11, 22, 35, .72));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  padding: clamp(20px, 3.4vw, 34px);
}

.tutorial-section.is-active { display: block; }

.tutorial-section-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 6px;
}

.tutorial-section-head span.icon {
  flex: none;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(29, 124, 255, .15);
  border: 1px solid rgba(29, 124, 255, .55);
  color: #69a8ff;
  font-size: 20px;
}

.tutorial-section-head h2 {
  margin: 0 0 4px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(20px, 2.6vw, 25px);
}

.tutorial-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

.tutorial-pro-badge {
  flex: none;
  align-self: flex-start;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  background: rgba(255, 189, 33, .15);
  border: 1px solid rgba(255, 189, 33, .5);
  color: var(--yellow);
  white-space: nowrap;
}

.tutorial-section h3 {
  margin: 22px 0 8px;
  font-size: 15.5px;
  color: #dbe8f8;
}

.tutorial-section p { color: var(--soft); font-size: 15px; line-height: 1.75; margin: 8px 0; }

.tutorial-section ul, .tutorial-section ol {
  margin: 10px 0;
  padding-left: 20px;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.75;
}

.tutorial-section li { margin: 4px 0; }
.tutorial-section li::marker { color: var(--blue); font-weight: 800; }

.tutorial-section strong { color: var(--text); }

.tutorial-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 20px 0;
}

.tutorial-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 14px 0;
}

.tutorial-mini-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: rgba(10, 22, 35, .55);
}

.tutorial-mini-card b { display: block; margin-bottom: 4px; font-size: 14px; }
.tutorial-mini-card p { margin: 0; font-size: 13.5px; color: var(--muted); }

.tutorial-callout {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-radius: 14px;
  padding: 14px 16px;
  margin: 14px 0;
  font-size: 14px;
  line-height: 1.65;
  border: 1px solid var(--line);
  background: rgba(137, 171, 216, .06);
  color: var(--soft);
}

.tutorial-callout.good { border-color: rgba(34, 211, 111, .4); background: rgba(34, 211, 111, .08); }
.tutorial-callout.warn { border-color: rgba(255, 189, 33, .4); background: rgba(255, 189, 33, .08); }
.tutorial-callout.bad  { border-color: rgba(255, 68, 68, .4); background: rgba(255, 68, 68, .08); }
.tutorial-callout .dot { flex: none; font-size: 16px; line-height: 1.5; }

.tutorial-classification-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 14px 0;
}

.tutorial-classification-row > div {
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid;
}

.tutorial-classification-row .c-good { border-color: rgba(34, 211, 111, .4); background: rgba(34, 211, 111, .08); }
.tutorial-classification-row .c-warn { border-color: rgba(255, 189, 33, .4); background: rgba(255, 189, 33, .08); }
.tutorial-classification-row .c-bad  { border-color: rgba(255, 68, 68, .4); background: rgba(255, 68, 68, .08); }
.tutorial-classification-row b { display: block; font-size: 14px; margin-bottom: 4px; }
.tutorial-classification-row .c-good b { color: var(--green); }
.tutorial-classification-row .c-warn b { color: var(--yellow); }
.tutorial-classification-row .c-bad b { color: var(--red); }
.tutorial-classification-row p { margin: 0; font-size: 13px; color: var(--muted); }

@media (max-width: 900px) {
  .tutorial-layout { grid-template-columns: 1fr; }
  .tutorial-index { display: none; }
  .tutorial-mobile-index { display: flex; }
  .tutorial-grid-2, .tutorial-classification-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .site-header .download-pill { display: none; }
  .hero h1 { font-size: 58px; }
  .hero h2 { font-size: 31px; }
  .hero p { font-size: 17px; }
  .primary-btn, .secondary-btn { width: 100%; }
  .feature-grid article, .step-card, .plan { padding: 20px; }
}
