:root {
  --bg: #0e0d0f;
  --bg-soft: #151316;
  --surface: #1b181c;
  --surface-2: #242025;
  --text: #f5f0f1;
  --muted: #aaa1a4;
  --red: #b9414a;
  --red-light: #d45a63;
  --red-dark: #7f2931;
  --line: rgba(255,255,255,.08);
  --shadow: 0 30px 80px rgba(0,0,0,.45);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 12%, rgba(185,65,74,.13), transparent 28%),
    radial-gradient(circle at 15% 42%, rgba(185,65,74,.07), transparent 32%),
    var(--bg);
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.header {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}

.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.03em; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--red-light), var(--red-dark));
  box-shadow: 0 10px 24px rgba(185,65,74,.25);
}

.nav { display: flex; gap: 30px; color: var(--muted); font-size: 14px; }
.nav a { transition: color .25s ease; }
.nav a:hover { color: var(--text); }

.header-cta {
  padding: 11px 18px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 14px; font-weight: 700; background: rgba(255,255,255,.03);
  transition: .25s ease;
}
.header-cta:hover { border-color: rgba(212,90,99,.55); background: rgba(185,65,74,.08); }

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 70px;
  padding-block: 72px 96px;
}

.eyebrow, .section-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  color: #d5c9cc; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
}
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--red-light); box-shadow: 0 0 18px var(--red); }

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 20px 0 24px;
  font-size: clamp(52px, 7vw, 84px);
  line-height: .98;
  letter-spacing: -.06em;
}
h1 em { color: var(--red-light); font-style: normal; }
.hero-text { max-width: 620px; color: var(--muted); font-size: 19px; line-height: 1.7; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.store-button {
  min-width: 184px;
  display: flex; align-items: center; gap: 11px;
  padding: 12px 17px; border: 1px solid var(--line); border-radius: 15px;
  background: rgba(255,255,255,.035);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.store-button.primary { background: linear-gradient(145deg, var(--red), var(--red-dark)); border-color: transparent; }
.store-button:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.18); }
.store-button svg { width: 26px; fill: white; }
.store-button span { display: flex; flex-direction: column; font-weight: 800; line-height: 1.1; }
.store-button small { font-size: 10px; font-weight: 500; opacity: .72; margin-bottom: 3px; }

.trust-row { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.avatars { display: flex; }
.avatars span {
  width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  margin-left: -7px; border: 2px solid var(--bg); background: var(--surface-2);
  font-size: 11px; font-weight: 800;
}
.avatars span:first-child { margin-left: 0; }
.trust-row > div:last-child { display: flex; flex-direction: column; }
.trust-row strong { font-size: 14px; }
.trust-row small { color: var(--muted); font-size: 12px; }

.hero-visual { position: relative; display: grid; place-items: center; min-height: 590px; }
.glow {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(185,65,74,.22), transparent 67%);
  filter: blur(8px);
}

.phone {
  width: 340px; min-height: 610px; padding: 14px 15px 18px;
  background: linear-gradient(160deg, #211d21, #121013);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 42px; box-shadow: var(--shadow), inset 0 0 0 7px #0b0a0c;
  position: relative; z-index: 2;
}
.phone-top { height: 28px; display: flex; justify-content: space-between; padding: 2px 15px; font-size: 11px; color: #dcd6d8; }
.app-header { display: flex; align-items: center; gap: 9px; padding: 10px 10px 14px; font-weight: 700; font-size: 14px; }
.mini-logo { width: 24px; height: 24px; border-radius: 8px; display: grid; place-items: center; background: var(--red); font-size: 11px; }

.card-stack { position: relative; height: 432px; perspective: 1000px; }
.swipe-card {
  position: absolute; inset: 0;
  overflow: hidden;
  background: #efeaeb; color: #211d20; border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,.28);
  transform: scale(.96) translateY(10px) rotate(2deg);
  opacity: .55;
  transition: .45s cubic-bezier(.2,.8,.2,1);
}
.swipe-card.active { transform: none; opacity: 1; z-index: 2; }
.swipe-card.exit-left { transform: translateX(-130%) rotate(-18deg); opacity: 0; }
.swipe-card.exit-right { transform: translateX(130%) rotate(18deg); opacity: 0; }

.card-image { height: 220px; position: relative; overflow: hidden; }
.image-one {
  background:
    radial-gradient(circle at 50% 25%, rgba(255,255,255,.7), transparent 7%),
    linear-gradient(145deg, #5c141a, #c75f65 48%, #281216);
}
.image-one::before,
.image-one::after {
  content: ""; position: absolute; border-radius: 999px; background: rgba(255,255,255,.22);
  filter: blur(.2px); transform: rotate(-25deg);
}
.image-one::before { width: 180px; height: 28px; left: 35px; top: 82px; box-shadow: 40px 70px 0 rgba(255,255,255,.12); }
.image-one::after { width: 115px; height: 115px; border: 1px solid rgba(255,255,255,.5); background: transparent; right: 30px; bottom: -26px; }
.image-two { background: linear-gradient(145deg, #2e1829, #805567 55%, #1d1018); }
.image-two::after { content:""; position:absolute; width:180px; height:180px; border-radius:50%; background:rgba(255,255,255,.09); left:80px; top:20px; box-shadow: -90px 70px 0 rgba(255,255,255,.06); }

.image-label {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 7px 10px; border-radius: 999px;
  background: rgba(12,10,12,.55); color: white; backdrop-filter: blur(10px);
  font-size: 11px; font-weight: 700;
}
.card-content { padding: 18px 20px 22px; }
.tag { display: inline-block; color: var(--red-dark); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 9px; }
.card-content h3 { font-size: 20px; line-height: 1.25; letter-spacing: -.03em; margin-bottom: 10px; }
.card-content p { color: #665d60; font-size: 13px; line-height: 1.5; margin-bottom: 0; }

.swipe-controls { display: flex; justify-content: center; gap: 24px; margin-top: 18px; }
.swipe {
  width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--surface-2); color: white; cursor: pointer;
  transition: .2s ease; font-size: 24px; font-weight: 700;
}
.swipe:hover { transform: translateY(-3px); }
.swipe.like { background: var(--red); border-color: transparent; }
.swipe.save { width: 42px; height: 42px; margin-top: 4px; font-size: 20px; }
.swipe-hint { text-align: center; color: #71696c; font-size: 10px; margin-top: 12px; }

.floating-card {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: 11px;
  padding: 13px 15px; border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px; background: rgba(28,24,28,.84); backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0,0,0,.3);
}
.floating-card strong { display: block; font-size: 14px; }
.floating-card span, .floating-card small { display: block; color: var(--muted); font-size: 11px; }
.top-card { right: -34px; top: 85px; flex-direction: column; align-items: flex-start; gap: 1px; }
.top-card strong { color: var(--red-light); font-size: 22px; }
.bottom-card { left: -68px; bottom: 95px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red-light); box-shadow: 0 0 16px rgba(212,90,99,.7); }

.proof-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.018); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); padding-block: 24px; }
.proof-grid div { display: flex; flex-direction: column; padding: 0 26px; border-right: 1px solid var(--line); }
.proof-grid div:first-child { padding-left: 0; }
.proof-grid div:last-child { border: 0; }
.proof-grid strong { font-size: 18px; }
.proof-grid span { color: var(--muted); font-size: 13px; }

.section { padding-block: 120px; }
.section-head { max-width: 780px; margin-bottom: 48px; }
.section h2 {
  margin: 15px 0 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08; letter-spacing: -.045em;
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card {
  min-height: 330px; padding: 28px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  position: relative; overflow: hidden;
}
.step-card::after {
  content: ""; position: absolute; width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(185,65,74,.12), transparent 70%);
  right: -35px; bottom: -35px;
}
.step-num { position: absolute; top: 24px; right: 24px; color: #5f5659; font-size: 13px; font-weight: 800; }
.step-icon {
  width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center;
  background: rgba(185,65,74,.13); color: var(--red-light); font-weight: 800;
  margin-bottom: 55px;
}
.step-card h3 { font-size: 23px; letter-spacing: -.03em; margin-bottom: 13px; }
.step-card p { color: var(--muted); font-size: 15px; line-height: 1.7; }

.benefits-section { padding-block: 120px; background: linear-gradient(to bottom, transparent, rgba(185,65,74,.045), transparent); }
.benefits-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 80px; align-items: center; }
.benefits-copy > p { max-width: 620px; margin-top: 24px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.check-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 14px; }
.check-list li { display: flex; align-items: center; gap: 12px; color: #d9d0d2; }
.check-list span { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: rgba(185,65,74,.14); color: var(--red-light); font-weight: 800; }

.insight-panel {
  min-height: 430px; padding: 28px; border-radius: 30px;
  border: 1px solid var(--line); background: linear-gradient(145deg, #201c20, #151316);
  box-shadow: var(--shadow);
}
.panel-top { display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; }
.panel-top strong { color: var(--text); }
.chart { height: 220px; display: flex; align-items: end; gap: 13px; padding: 30px 5px 24px; border-bottom: 1px solid var(--line); }
.chart span {
  flex: 1; min-height: 24px; border-radius: 7px 7px 2px 2px;
  background: linear-gradient(to top, var(--red-dark), var(--red-light));
  opacity: .76; transform-origin: bottom; animation: bars 1.2s ease both;
}
.chart span:nth-child(2) { animation-delay: .08s; }
.chart span:nth-child(3) { animation-delay: .16s; }
.chart span:nth-child(4) { animation-delay: .24s; }
.chart span:nth-child(5) { animation-delay: .32s; }
.chart span:nth-child(6) { animation-delay: .40s; }
.chart span:nth-child(7) { animation-delay: .48s; }
@keyframes bars { from { transform: scaleY(0); } to { transform: scaleY(1); } }

.insight-box { display: flex; gap: 13px; align-items: flex-start; padding-top: 24px; }
.pulse { width: 11px; height: 11px; border-radius: 50%; background: var(--red-light); margin-top: 6px; box-shadow: 0 0 0 7px rgba(185,65,74,.09); }
.insight-box div { display: flex; flex-direction: column; gap: 6px; }
.insight-box small { color: var(--muted); }
.insight-box strong { line-height: 1.45; }

.cta-section { padding-bottom: 120px; }
.cta-inner {
  min-height: 340px; padding: 56px;
  border: 1px solid rgba(212,90,99,.22); border-radius: 34px;
  background:
    radial-gradient(circle at 85% 30%, rgba(185,65,74,.2), transparent 28%),
    linear-gradient(145deg, #20191d, #131113);
  display: flex; align-items: center; justify-content: space-between; gap: 60px;
  overflow: hidden; position: relative;
}
.cta-inner::after {
  content: "C"; position: absolute; right: 6%; bottom: -55px;
  font-size: 250px; font-weight: 800; line-height: 1; color: rgba(255,255,255,.025);
}
.cta-inner h2 { font-size: clamp(36px, 4vw, 54px); position: relative; z-index: 2; }
.cta-actions { min-width: 230px; position: relative; z-index: 2; }
.main-cta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 20px; border-radius: 15px;
  background: linear-gradient(145deg, var(--red-light), var(--red-dark));
  font-weight: 800; box-shadow: 0 16px 35px rgba(127,41,49,.28);
  transition: transform .25s ease;
}
.main-cta:hover { transform: translateY(-3px); }
.cta-actions small { display: block; text-align: center; margin-top: 12px; color: var(--muted); }

.footer {
  min-height: 110px; display: grid; grid-template-columns: 1fr 1fr 1fr;
  align-items: center; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px;
}
.footer p { margin: 0; text-align: center; }
.footer-links { display: flex; justify-content: flex-end; gap: 18px; }

.reveal { opacity: 0; transform: translateY(24px); transition: .7s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 50px; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { margin-top: -20px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 50px; }
  .steps { grid-template-columns: 1fr; }
  .step-card { min-height: auto; }
  .proof-grid { grid-template-columns: 1fr; gap: 18px; }
  .proof-grid div { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 18px; }
  .proof-grid div:last-child { padding-bottom: 0; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer { grid-template-columns: 1fr; gap: 18px; padding-block: 30px; text-align: center; }
  .footer p { text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, 1180px); }
  .header { height: 70px; }
  .header-cta { display: none; }
  .hero { min-height: auto; padding: 48px 0 70px; gap: 30px; }
  h1 { font-size: 48px; }
  .hero-text { font-size: 16px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .store-button { justify-content: center; width: 100%; }
  .hero-visual { min-height: 530px; transform: scale(.88); margin-inline: -25px; }
  .phone { width: 330px; }
  .floating-card.top-card { right: -10px; }
  .floating-card.bottom-card { left: -14px; }
  .section, .benefits-section { padding-block: 82px; }
  .section h2 { font-size: 38px; }
  .step-card { padding: 24px; }
  .cta-section { padding-bottom: 70px; }
  .cta-inner { padding: 34px 24px; min-height: 390px; }
  .cta-actions { width: 100%; }
}

/* Preorder modal */
body.modal-open { overflow: hidden; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .22s ease, visibility .22s ease;
}
.modal.is-open { visibility: visible; opacity: 1; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 4, 6, .78);
  backdrop-filter: blur(10px);
}
.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: min(820px, calc(100vh - 40px));
  overflow-y: auto;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background: linear-gradient(155deg, #211c20, #121013 72%);
  box-shadow: 0 35px 100px rgba(0,0,0,.58);
  transform: translateY(18px) scale(.98);
  transition: transform .22s ease;
}
.modal.is-open .modal-dialog { transform: none; }
.modal-dialog-wide { width: min(780px, 100%); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.modal-back {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.modal-dialog h2 {
  margin: 12px 42px 14px 0;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.modal-lead { color: var(--muted); line-height: 1.7; }
.modal-note { margin: 18px 0 0; color: #80777a; font-size: 12px; line-height: 1.55; }
.scenario-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.scenario-card {
  min-height: 255px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.025);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.scenario-card:hover { transform: translateY(-4px); border-color: rgba(212,90,99,.5); background: rgba(185,65,74,.07); }
.scenario-card.featured { border-color: rgba(212,90,99,.38); background: linear-gradient(145deg, rgba(185,65,74,.13), rgba(255,255,255,.02)); }
.scenario-label { display: inline-block; margin-bottom: 26px; color: var(--red-light); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.scenario-card strong { display: block; font-size: 20px; line-height: 1.3; }
.scenario-card p { margin: 12px 0 22px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.scenario-action { display: block; margin-top: auto; color: #e2d9db; font-size: 13px; font-weight: 800; }
.scenario-price { display: block; margin: -8px 0 12px; color: var(--red-light); font-size: 25px; font-weight: 800; }
.preorder-form { display: grid; gap: 16px; margin-top: 24px; }
.preorder-form label:not(.consent) { display: grid; gap: 8px; }
.preorder-form label > span { color: #d9d0d2; font-size: 13px; font-weight: 700; }
.preorder-form input[type="email"],
.preorder-form input[type="tel"] {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  background: rgba(255,255,255,.035);
  color: var(--text);
  font: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.preorder-form input:focus { border-color: rgba(212,90,99,.62); box-shadow: 0 0 0 4px rgba(185,65,74,.09); }
.consent { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.consent input { margin-top: 4px; accent-color: var(--red); }
.consent span { color: var(--muted) !important; font-size: 12px !important; font-weight: 500 !important; line-height: 1.5; }
.form-error { min-height: 20px; margin: 0; color: #e6757d; font-size: 13px; }
.submit-preorder {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(145deg, var(--red-light), var(--red-dark));
  color: white;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}
.submit-preorder:hover { transform: translateY(-2px); }
.submit-preorder:disabled { cursor: wait; opacity: .72; transform: none; }
.submit-loader { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.35); border-top-color: white; border-radius: 50%; animation: spin .7s linear infinite; }
.submit-preorder.is-loading .submit-loader { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.success-dialog { text-align: center; }
.success-icon { width: 72px; height: 72px; display: grid; place-items: center; margin: 4px auto 22px; border-radius: 50%; background: rgba(185,65,74,.15); color: var(--red-light); font-size: 34px; font-weight: 800; box-shadow: 0 0 0 12px rgba(185,65,74,.05); }
.success-dialog h2 { margin-right: 0; }
.success-dialog .submit-preorder { width: 100%; margin-top: 24px; }

@media (max-width: 620px) {
  .modal { padding: 10px; }
  .modal-dialog { max-height: calc(100vh - 20px); padding: 26px 20px; border-radius: 22px; }
  .scenario-grid { grid-template-columns: 1fr; }
  .scenario-card { min-height: 220px; }
}
