:root {
  --bg: #ffffff;
  --bg-2: #ffffff;
  --card: #ffffff;
  --line: #111111;
  --line-soft: rgba(17, 17, 17, 0.14);
  --blue: #0a5cff;
  --blue-2: #0a5cff;
  --blue-deep: #0a5cff;
  --text: #111111;
  --muted: #2a2a2a;
  --silver: #111111;
  --white: #ffffff;
  --ink: #111111;
  --ok: #0a5cff;
  --radius: 18px;
  --max: 1120px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Manrope", system-ui, sans-serif;
  --brand: "Montserrat", "Manrope", sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; background: var(--bg); color: var(--text); }
body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.015em;
  overflow-x: hidden;
  font-weight: 500;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.045em; margin: 0; line-height: 1.02; font-weight: 800; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 6.4vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.03em; line-height: 1.25; }
.brand-name {
  font-family: var(--brand);
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 0.84em;
  text-transform: uppercase;
  color: var(--blue);
  line-height: 1;
  display: inline-block;
  vertical-align: 0.02em;
}
.vs {
  font-family: var(--brand);
  font-size: 0.72em;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--blue);
  vertical-align: 0.08em;
}
.lede, .sub { color: var(--muted); max-width: 46ch; }
.muted { color: var(--muted); }
.note { color: var(--muted); font-size: 14px; }
.price {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--ink);
}
.price small {
  display: block; margin-top: 8px; color: var(--blue);
  font-size: 0.32em; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; font-family: var(--font);
}
.row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 0 24px; border: 0; border-radius: 999px;
  background: var(--blue);
  color: #fff; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  font-size: 13px; cursor: pointer;
  box-shadow: none;
  transition: transform .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); background: #0047d6; }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink); box-shadow: none;
}
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-full { width: 100%; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 72px; gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--brand); font-weight: 800; letter-spacing: 0.12em;
  font-size: 13px; color: var(--ink);
}
.logo-mark {
  width: 12px; height: 12px;
  background: var(--blue);
  transform: rotate(45deg);
  border-radius: 1px;
  box-shadow: none;
}
.nav-links { display: flex; gap: 26px; color: var(--ink); font-size: 14px; font-weight: 600; }
.nav-links a:hover { color: var(--blue); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-cta .tg { color: var(--blue); font-size: 13px; font-weight: 800; }
.nav-cta .max { color: #471AFF; font-size: 13px; font-weight: 800; }
.nav-cta .btn { font-size: 12px; padding: 0 16px; min-height: 44px; }
@media (max-width: 960px) {
  .nav-links { gap: 14px; font-size: 13px; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta .tg, .nav-cta .btn { display: none; }
}

.hero {
  position: relative;
  padding: 56px 0 20px;
  overflow: hidden;
}
.hero::before { display: none; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  border: 1.5px solid var(--blue); color: var(--blue);
  font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  background: transparent;
}
.badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.hero h1 { margin: 18px 0 16px; }
.hero-meta {
  display: flex; gap: 18px; flex-wrap: wrap; margin: 8px 0 18px;
  color: var(--ink); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px;
}
.hero-price { margin: 10px 0 26px; }
.hero-visual {
  position: relative; min-height: 0;
  display: grid; place-items: center;
}
.hero-video {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 672 / 448;
  height: auto;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #000;
  display: block;
  object-fit: cover;
}

.facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  padding: 8px 0 56px;
}
.fact {
  padding: 22px; border: 1px solid var(--line-soft); border-radius: var(--radius);
  background: var(--card);
}
.fact strong {
  display: block; font-family: var(--display); font-size: 1.15rem; margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.fact p { margin: 0; color: var(--muted); font-size: 14px; }

.points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
#points { padding-top: 28px; }
.points li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 22px;
  align-items: start;
  padding: 26px 8px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}
.points li:first-child { border-top: 1px solid var(--line); }
.points-n {
  font-family: var(--brand);
  font-size: clamp(3rem, 7vw, 4.4rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.07em;
  color: var(--blue);
  min-width: 1.1ch;
}
.points p {
  margin: 10px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.02em;
}
.why-us {
  margin-top: 28px;
  padding: 8px 0 18px;
  border-radius: 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
}
.why-us h3 {
  margin-bottom: 10px;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.15;
}
.why-us p {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
  font-size: 1.08rem;
}

.section { padding: 88px 0; }
.section-head { margin-bottom: 32px; }
.section-head .sub { margin-top: 14px; }

.compare-one {
  margin: 0 0 28px;
}
.compare-one img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  background: #000;
}
.compat-photo img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  background: #f4eef8;
}
.video-frame {
  margin: 0 auto;
  max-width: min(420px, 100%);
  border: 1.5px solid var(--ink);
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}
.talk-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 480 / 770;
  background: #000;
  vertical-align: middle;
}
.adv {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.adv article {
  padding: 24px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line);
}
.adv .big {
  margin: 10px 0 12px;
  font-family: var(--display); font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  letter-spacing: -0.04em;
}
.adv p { margin: 0; color: var(--muted); }

.split {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center;
}
.checks { list-style: none; padding: 0; margin: 18px 0 0; }
.checks li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 8px 0; color: var(--ink);
}
.checks li::before {
  content: ""; width: 16px; height: 16px; margin-top: 5px; flex: none;
  border-radius: 50%; background: var(--blue);
  box-shadow: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path d='M2 6.2l2.6 2.6L10 3.4' stroke='white' stroke-width='1.7' fill='none'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
}
.photo-frame {
  border-radius: 20px; overflow: hidden; border: 1px solid var(--line);
  background: #fff;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; max-height: 520px; }

.kit-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 16px;
}
.kit-grid .photo-frame:first-child { grid-row: span 2; }
.kit-grid img { max-height: none; height: 100%; }
.kit-cta {
  margin-top: 28px; display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}

.models {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin: 22px 0;
}
.models li {
  list-style: none; padding: 16px 14px; border-radius: 12px;
  border: 1px solid var(--line); background: #fff;
  font-weight: 800; font-size: 14px;
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.step {
  padding: 8px 0; border-radius: 0; border: 0; border-top: 1px solid var(--line); background: transparent;
}
.step b {
  display: block; color: var(--blue); font-family: var(--brand);
  font-size: 32px; letter-spacing: -0.06em; margin: 16px 0 8px;
}

.ship {
  position: relative; overflow: hidden;
  border-radius: 0; padding: 8px 0 12px; border: 0;
  background: transparent;
}
.world {
  position: absolute; right: -4%; top: 50%; transform: translateY(-50%);
  width: min(420px, 48%); opacity: .28; pointer-events: none;
}
.gift, .ref {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center;
}
.gift { background: transparent; border-radius: 0; padding: 0; }
.gift .photo-frame img { object-fit: contain; max-height: 640px; background: #fff; }
.gift-copy, .ref-copy { padding: 0; }
.ref {
  border-radius: 0; padding: 28px 0; border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.origin p { color: var(--muted); max-width: 62ch; }

.unsure {
  text-align: center; padding: 64px 24px; border-radius: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.unsure .row { justify-content: center; margin-top: 28px; }
.unsure .sub { margin: 16px auto 0; }

.faq details {
  border-top: 1px solid var(--line); padding: 18px 0;
}
.faq summary {
  cursor: pointer; font-weight: 800; list-style: none;
  display: flex; justify-content: space-between; gap: 16px;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue); font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 10px 0 0; color: var(--muted); max-width: 70ch; }

.finale {
  position: relative; overflow: hidden;
  border-radius: 0; padding: 40px 0;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
  background: var(--ink);
  color: #fff;
  border: 0;
  margin-inline: calc(50% - 50vw);
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
}
.finale h2, .finale .price, .finale .checks li { color: #fff; }
.finale .sub { color: rgba(255,255,255,.82); }
.finale .btn-ghost { color: #fff; border-color: #fff; }
.finale .btn-ghost:hover { background: #fff; color: var(--ink); }
.finale-media { margin: 0; }
.finale-media img {
  position: static;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: contain;
  border: 0;
}
.finale-copy { position: relative; max-width: none; }
.finale .checks { margin-top: 16px; }

.form-card {
  margin-top: 36px; padding: 8px 0 0;
  border-radius: 0;
  background: transparent; border: 0;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.form-grid { display: grid; gap: 14px; }
.form-grid label { display: grid; gap: 6px; font-size: 13px; color: var(--ink); font-weight: 800; }
.form-grid input[type="text"], .form-grid input[type="tel"], .form-grid textarea {
  width: 100%; min-height: 52px; padding: 0 14px; border-radius: 0;
  border: 0; border-bottom: 1.5px solid var(--ink); background: transparent;
}
.form-grid input:focus, .form-grid textarea:focus {
  outline: none; border-bottom-color: var(--blue);
}
.form-grid textarea { min-height: 90px; padding: 12px 14px; resize: vertical; }
.file {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  min-height: 50px; padding: 0; border-radius: 0; border: 0; border-bottom: 1.5px dashed var(--ink);
  color: var(--ink); cursor: pointer;
}
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); }
.consent a { color: var(--blue); text-decoration: underline; }
.consent input { margin-top: 3px; }
.form-msg { min-height: 1.4em; font-weight: 700; }
.form-msg.ok { color: var(--blue); }
.form-msg.err { color: var(--ink); }

.site-footer {
  padding: 48px 0 120px; color: var(--muted); font-size: 13px;
  border-top: 1px solid var(--line);
}
.foot { display: grid; grid-template-columns: 1.4fr .8fr; gap: 24px; }
.foot strong { color: var(--ink); display: block; margin-bottom: 8px; font-family: var(--brand); letter-spacing: 0.08em; }
.foot a { color: var(--blue); }
.legal { margin-top: 18px; max-width: 72ch; }

.sticky {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 50;
  padding: 10px 10px 10px 16px; border-radius: 16px;
  background: #fff; border: 1.5px solid var(--ink);
  align-items: center; justify-content: space-between; gap: 10px;
  box-shadow: none;
}
.sticky b { font-family: var(--display); font-size: 20px; letter-spacing: -.04em; }
.sticky .btn { min-height: 44px; padding: 0 14px; font-size: 12px; }

.modal {
  position: fixed; inset: 0; z-index: 80; display: none;
  align-items: center; justify-content: center; padding: 18px;
  background: rgba(17,17,17,.55);
}
.modal.open { display: flex; }
.modal-card {
  width: min(520px, 100%); background: #fff; border: 1.5px solid var(--ink);
  border-radius: 16px; padding: 24px; position: relative;
}
.modal-x {
  position: absolute; right: 12px; top: 12px; width: 36px; height: 36px;
  border-radius: 50%; border: 1.5px solid var(--ink); background: transparent; cursor: pointer;
}

.reveal { opacity: 0; transform: translateY(12px); animation: rise .55s ease forwards; }
.d1 { animation-delay: .08s; } .d2 { animation-delay: .16s; } .d3 { animation-delay: .24s; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .wrap { width: min(var(--max), calc(100% - 32px)); }
  .hero-grid, .compare, .adv, .split, .facts, .kit-grid, .models, .steps, .gift, .ref, .foot, .finale {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 24px; }
  .hero-visual { min-height: 0; order: -1; }
  .hero-video { max-width: none; }
  .nav { min-height: 58px; }
  .section { padding: 56px 0; }
  .finale { padding: 28px 16px 32px; min-height: 0; margin-inline: 0; padding-inline: 16px; border-radius: 16px; }
  .finale-media { order: -1; }
  .world { display: none; }
  .sticky { display: flex; }
  .ship { padding: 8px 0; }
  .kit-grid .photo-frame:first-child { grid-row: auto; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
