:root {
  --pink: #df0979;
  --pink-hover: #c4086a;
  --pink-soft: #ffe6f3;
  --navy: #242f66;
  --ink: #151515;
  --muted: #505050;
  --muted-2: #767676;
  --line: #e8e8e8;
  --bg: #f7f7f7;
  --white: #ffffff;
  --max: 1120px;
  --font: "Montserrat", system-ui, sans-serif;
  --nav-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ─── Nav ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.nav-logo img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
  margin-right: 1rem;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 1.25rem;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--pink-hover);
  transform: translateY(-1px);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1040 0%, var(--navy) 42%, #3a1a5c 100%);
  color: var(--white);
  min-height: min(78vh, 640px);
  display: grid;
  align-items: end;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(90, 0, 50, 0.72) 0%, rgba(120, 0, 70, 0.45) 42%, rgba(160, 6, 90, 0.22) 100%),
    linear-gradient(180deg, rgba(80, 0, 45, 0.2) 0%, transparent 45%, rgba(80, 0, 45, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(2.75rem, 6vw, 4.5rem);
  animation: rise 0.7s ease both;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(223, 9, 121, 0.22);
  border: 1px solid rgba(223, 9, 121, 0.45);
  color: #ffb7db;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero h1 {
  max-width: 14ch;
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: normal;
  color: #ff7ab8;
}

.hero-lead {
  margin-top: 1rem;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(223, 9, 121, 0.35);
}

.btn-primary:hover {
  background: var(--pink-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
  min-height: 56px;
  padding: 0 1.85rem;
  font-size: 1rem;
}

/* ─── Proof ─── */
.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-item {
  background: var(--white);
  padding: 1.35rem 1rem;
  text-align: center;
}

.proof-item strong {
  display: block;
  color: var(--pink);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.proof-item span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ─── Sections ─── */
.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 2.5rem);
}

.section-head {
  max-width: 38rem;
  margin-bottom: 1.75rem;
}

.section-head h2 {
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.section-head p {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
}

/* ─── Steps ─── */
.steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.4rem 1.25rem 1.5rem;
  animation: rise 0.65s ease both;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.step:hover {
  transform: translateY(-3px);
  border-color: rgba(223, 9, 121, 0.25);
  box-shadow: 0 14px 30px rgba(223, 9, 121, 0.1);
}

.step:nth-child(2) { animation-delay: 0.08s; }
.step:nth-child(3) { animation-delay: 0.16s; }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.step p {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Value section */
.value-section {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.value-grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 900px) {
  .value-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }
}

.value-copy h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.value-copy > p {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 500;
  max-width: 38ch;
}

.value-list {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  display: grid;
  gap: 0.7rem;
}

.value-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
}

.value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: inset 0 0 0 3px #ffe6f3;
}

.value-visual {
  border-radius: 28px;
  overflow: hidden;
  background: #df0979;
  box-shadow: 0 22px 50px rgba(223, 9, 121, 0.22);
}

.value-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* Showcase */
.showcase {
  padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.25rem, 4vw, 2.5rem);
  background: var(--white);
  border-block: 1px solid var(--line);
}

.showcase-track {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .showcase-track {
    grid-template-columns: repeat(3, 1fr);
  }
}

.showcase-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(21, 21, 21, 0.08);
}

.showcase-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: #ffe6f3;
}

.showcase-card h3 {
  margin: 1rem 1rem 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.showcase-card p {
  margin: 0 1rem 1.15rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

/* Split band */
.split-band {
  padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.25rem, 4vw, 2.5rem);
}

.split-band-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  background: linear-gradient(135deg, #1a1040 0%, var(--navy) 55%, #3a1a5c 100%);
  color: var(--white);
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  overflow: hidden;
}

@media (min-width: 900px) {
  .split-band-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.split-band-copy .eyebrow {
  color: #ffb7db;
}

.split-band-copy h2 {
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.split-band-copy p {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 500;
  margin-bottom: 1.35rem;
  max-width: 36ch;
}

.split-band-media {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.split-band-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* Social proof */
.social-proof {
  padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.25rem, 4vw, 2.5rem) clamp(1rem, 3vw, 1.5rem);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.social-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .social-grid {
    grid-template-columns: 1fr 1fr;
  }

  .social-grid img:last-child {
    grid-column: 1 / -1;
  }
}

.social-grid img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--bg);
}

.benefit-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* ─── Banner strip (legacy) ─── */
.banner-strip {
  padding: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(2.5rem, 5vw, 3.5rem);
}

.banner-strip-inner {
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  background: #df0979;
  box-shadow: 0 18px 40px rgba(223, 9, 121, 0.18);
  animation: rise 0.7s ease both;
}

.banner-strip-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* ─── Benefits ─── */
.benefits-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem 1.15rem;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--pink-soft);
  color: var(--pink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.benefit h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.benefit p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

/* ─── CTA block ─── */
.footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 2.25rem clamp(1.25rem, 4vw, 2.5rem) 2.75rem;
  text-align: center;
}

.footer img {
  height: 26px;
  width: auto;
  margin: 0 auto 0.7rem;
}

.footer p {
  color: var(--muted-2);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 auto;
}

.cta-block {
  margin: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(2.75rem, 6vw, 4rem);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 40%),
    linear-gradient(135deg, var(--pink) 0%, #a0065a 100%);
  color: var(--white);
  border-radius: 28px;
  padding: clamp(2.2rem, 5vw, 3.2rem);
  text-align: center;
  box-shadow: 0 20px 50px rgba(223, 9, 121, 0.28);
}

.cta-block h2 {
  font-size: clamp(1.55rem, 3.5vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  max-width: 18ch;
  margin: 0 auto;
}

.cta-block p {
  margin: 0.85rem auto 1.5rem;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.cta-block .btn-primary {
  background: var(--white);
  color: var(--pink);
  box-shadow: none;
}

.cta-block .btn-primary:hover {
  background: #fff0f7;
}

/* ─── Footer ─── */
.footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 2.25rem clamp(1.25rem, 4vw, 2.5rem) 2.75rem;
  text-align: center;
}

.footer img {
  height: 26px;
  width: auto;
  margin: 0 auto 0.7rem;
}

.footer p {
  color: var(--muted-2);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 auto;
}

/* ─── Modal ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 1.25rem;
  background: rgba(21, 21, 21, 0.55);
  backdrop-filter: blur(4px);
}

.modal-overlay.is-open {
  display: grid;
}

.modal {
  width: min(100%, 430px);
  background: var(--white);
  border-radius: 28px;
  padding: 1.65rem 1.4rem 1.35rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.modal::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #a0065a, var(--pink), #ff6bb5);
}

.modal-overlay.is-open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1;
  z-index: 2;
}

.modal-close:hover {
  background: var(--bg);
  color: var(--ink);
}

.modal-head {
  margin-bottom: 0.35rem;
}

.modal-icon {
  width: 64px;
  height: 64px;
  margin: 0.25rem auto 1rem;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
  display: grid;
  place-items: center;
}

.modal h2 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.55rem;
}

.modal-head p,
#verify-text {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.modal-form {
  display: grid;
  gap: 0.85rem;
  text-align: left;
  margin-bottom: 0.25rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.field input {
  width: 100%;
  height: 48px;
  padding: 0 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input::placeholder {
  color: #a3a3a3;
}

.field input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(223, 9, 121, 0.15);
}

.field input.is-invalid {
  border-color: #d32f2f;
}

.field-error {
  margin: 0 !important;
  color: #d32f2f !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  text-align: left;
}

.modal-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.modal .btn-primary {
  width: 100%;
}

.modal .btn-ghost {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  border: 1.5px solid var(--pink);
  color: var(--pink);
  font-weight: 700;
}

.modal .btn-ghost:hover {
  background: var(--pink-soft);
}

.modal-note {
  margin-top: 0.95rem !important;
  margin-bottom: 0 !important;
  font-size: 0.78rem !important;
  color: var(--muted-2) !important;
  text-align: center;
}

/* Loading */
.modal-loading {
  padding: 0.35rem 0 0.5rem;
  animation: rise 0.35s ease both;
}

.modal-loading[hidden],
.modal-result[hidden],
.modal-install[hidden],
.modal-head[hidden],
.modal-form[hidden] {
  display: none !important;
}

.loading-ring {
  width: 56px;
  height: 56px;
  margin: 0.35rem auto 1.15rem;
  border-radius: 50%;
  border: 4px solid #ffe6f3;
  border-top-color: var(--pink);
  background: transparent;
  box-shadow: none;
  animation: spin 0.75s linear infinite;
}

.loading-ring span {
  display: none;
}

.loading-kicker {
  margin: 0 0 0.35rem !important;
  color: var(--pink) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.loading-title {
  margin: 0 0 0.45rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.loading-text {
  margin: 0 auto 1.15rem !important;
  max-width: 30ch;
  color: var(--muted) !important;
  font-size: 0.92rem !important;
  font-weight: 500 !important;
}

.loading-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #f1e4ec;
  overflow: hidden;
  margin-bottom: 1rem;
}

.loading-bar i {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #a0065a, var(--pink), #ff6bb5);
  transition: width 0.55s ease;
}

.loading-hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff5fa, #ffe6f3);
  border: 1px solid rgba(223, 9, 121, 0.12);
}

.loading-hint span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.loading-hint strong {
  color: var(--pink);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.modal.is-loading .modal-close,
.modal.is-loading .modal-head,
.modal.is-loading .modal-icon,
.modal.is-loading .modal-form,
.modal.is-loading .modal-result,
.modal.is-loading .modal-install,
.modal.is-result .modal-head,
.modal.is-result .modal-icon,
.modal.is-result .modal-form,
.modal.is-result .modal-loading,
.modal.is-result .modal-install,
.modal.is-install .modal-head,
.modal.is-install .modal-icon,
.modal.is-install .modal-form,
.modal.is-install .modal-loading,
.modal.is-install .modal-result {
  display: none !important;
}

/* Result */
.modal-result {
  display: grid;
  justify-items: center;
  text-align: center;
  animation: rise 0.4s ease both;
}

.result-icon {
  width: 64px;
  height: 64px;
  margin: 0.15rem auto 0.9rem;
  border-radius: 50%;
  background: #e8f8ef;
  color: #0f8a45;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 8px rgba(15, 138, 69, 0.08);
}

.result-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #e8f8ef;
  color: #0f8a45;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.result-eyebrow {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
}

.result-cash {
  margin: 0.2rem 0 0.15rem !important;
  color: var(--pink) !important;
  font-size: clamp(2.4rem, 9vw, 3.1rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em;
  line-height: 1 !important;
}

.result-cash span {
  font-size: 0.55em;
}

.result-cash-words {
  margin: 0 0 1rem !important;
  color: var(--muted-2) !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  max-width: 28ch;
}

.result-card {
  width: 100%;
  display: grid;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.result-card > div {
  background: #faf7f9;
  border: 1px solid #f0e6ec;
  border-radius: 16px;
  padding: 1rem 0.9rem;
  text-align: center;
}

.result-card span {
  display: block;
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.result-card strong {
  color: var(--ink);
  font-size: clamp(1.55rem, 5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.result-note {
  margin: 0 0 1rem !important;
  color: var(--muted) !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
}

.result-note strong {
  color: var(--pink);
  font-weight: 800;
}

.modal-result .modal-actions {
  width: 100%;
}

/* Install */
.modal-install {
  display: grid;
  justify-items: center;
  text-align: center;
  animation: rise 0.4s ease both;
}

.install-icon {
  width: 64px;
  height: 64px;
  margin: 0.15rem auto 0.9rem;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 8px rgba(223, 9, 121, 0.08);
}

.install-title {
  margin: 0.35rem 0 0.55rem;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.install-text {
  margin: 0 0 0.95rem !important;
  color: var(--muted) !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  max-width: 32ch;
}

.install-text strong {
  color: var(--pink);
  font-weight: 800;
}

.install-list {
  width: 100%;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  background: #faf7f9;
  border: 1px solid #f0e6ec;
  text-align: left;
}

.install-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.install-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: inset 0 0 0 3px #ffe6f3;
}

.install-list strong {
  color: var(--pink);
  font-weight: 800;
}

.modal-install .modal-actions {
  width: 100%;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .proof {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 560px;
  }

  .hero-media img {
    object-position: 70% center;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(90, 0, 50, 0.45) 0%, rgba(120, 0, 70, 0.5) 45%, rgba(80, 0, 45, 0.7) 100%);
  }

  .nav-cta {
    display: none;
  }
}

body.modal-open {
  overflow: hidden;
}
