:root {
  --ink: #7c3655;
  --muted: #8b6f7b;
  --line: #f1dfe7;
  --paper: #ffffff;
  --soft: #fff7fa;
  --blue: #9bd8d2;
  --blue-deep: #6f9f98;
  --rose: #d96f98;
  --coral: #e88b7b;
  --violet: #b889c9;
  --plum: #5a2b40;
  --shadow: 0 20px 60px rgba(124, 54, 85, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Be Vietnam Pro", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}

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

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

.mobile-only {
  display: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 112px;
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

nav a {
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
}

.section,
.section-band {
  padding: clamp(64px, 9vw, 116px) clamp(18px, 4vw, 48px);
}

.section > *,
.section-band > * {
  max-width: var(--max);
  margin-inline: auto;
}

.section-band {
  background: var(--soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: center;
  min-height: calc(100vh - 73px);
  gap: clamp(32px, 5vw, 78px);
  padding-top: clamp(36px, 5vw, 56px);
  padding-bottom: 0;
  overflow: hidden;
}

.hero-copy,
.hero-visual {
  min-width: 0;
  width: 100%;
  max-width: none;
  margin: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.35vw, 4.15rem);
  line-height: 1.12;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 4vw, 3.65rem);
  line-height: 1.16;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.34;
}

.hero-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 18px;
}

.button,
.product-card button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.product-card button:hover {
  transform: translateY(-2px);
}

.primary {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 14px 32px rgba(124, 54, 85, 0.22);
}

.pulse-cta {
  position: relative;
  overflow: visible;
  isolation: isolate;
  animation: cta-breathe 2.4s ease-in-out infinite;
}

.pulse-cta::before {
  position: absolute;
  inset: -7px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background: rgba(217, 111, 152, 0.28);
  opacity: 0;
  transform: scale(0.96);
  animation: cta-ring 2.4s ease-out infinite;
}

.pulse-cta::after {
  position: absolute;
  inset: 2px auto 2px -45%;
  width: 42%;
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: skewX(-16deg);
  animation: cta-shine 3.6s ease-in-out infinite;
}

.secondary {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
}

.hero-metrics div {
  min-height: 60px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-metrics strong {
  display: block;
  color: var(--blue-deep);
  font-size: 1.22rem;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.floating-cta {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 30;
  display: grid;
  min-width: 218px;
  gap: 2px;
  padding: 14px 18px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(217, 111, 152, 0.97), rgba(124, 54, 85, 0.95)),
    var(--rose);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(217, 111, 152, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

body.cta-visible .floating-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-cta span {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.1;
}

.floating-cta small {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
}

.floating-cta:hover {
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  min-height: 500px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 8% auto auto -8%;
  z-index: -1;
  width: 82%;
  height: 72%;
  content: "";
  background: linear-gradient(135deg, rgba(255, 232, 240, 0.72), rgba(155, 216, 210, 0.28));
  border-radius: var(--radius);
  transform: rotate(-4deg);
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: min(100%, 660px);
  height: min(48vw, 540px);
  min-height: 500px;
  object-fit: contain;
  object-position: center;
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 28px 76px rgba(124, 54, 85, 0.14);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
  padding: 0 clamp(18px, 4vw, 48px);
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.proof-strip div {
  padding: 26px clamp(16px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(28px, 5vw, 54px);
  text-align: center;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.value-grid article,
.bonus-list div,
.timeline div {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.value-grid span,
.timeline span {
  display: inline-flex;
  min-width: 42px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.value-grid p,
.timeline p,
.bonus-list p,
.product-card p,
.guarantee p,
.consult-copy p,
.site-footer p {
  color: var(--muted);
}

@keyframes cta-breathe {
  0%,
  100% {
    box-shadow: 0 14px 32px rgba(124, 54, 85, 0.22);
  }

  50% {
    box-shadow: 0 18px 42px rgba(217, 111, 152, 0.34);
  }
}

@keyframes cta-ring {
  0% {
    opacity: 0.5;
    transform: scale(0.96);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

@keyframes cta-shine {
  0%,
  58% {
    transform: translateX(0) skewX(-16deg);
    opacity: 0;
  }

  68% {
    opacity: 0.75;
  }

  86%,
  100% {
    transform: translateX(360%) skewX(-16deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .pulse-cta,
  .pulse-cta::before,
  .pulse-cta::after {
    animation: none;
  }
}

.mechanism {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: linear-gradient(90deg, #fff 0%, #fff 44%, #fff5f8 44%, #fff5f8 100%);
}

.mechanism-media,
.mechanism-copy {
  max-width: none;
  margin: 0;
}

.mechanism-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mechanism-list {
  display: grid;
  gap: 16px;
}

.mechanism-list div {
  padding: 22px;
  background: var(--paper);
  border-left: 5px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(47, 183, 223, 0.08);
}

.mechanism-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-deep);
  font-size: 1.08rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  min-height: 490px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(124, 54, 85, 0.07);
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
  background: var(--soft);
}

.product-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-type {
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card button {
  width: 100%;
  margin-top: auto;
  color: var(--paper);
}

.product-card.blue .product-type,
.product-card.blue h3 {
  color: var(--blue-deep);
}

.product-card.blue button {
  background: var(--blue-deep);
}

.product-card.rose .product-type,
.product-card.rose h3 {
  color: var(--rose);
}

.product-card.rose button {
  background: var(--rose);
}

.product-card.coral .product-type,
.product-card.coral h3 {
  color: var(--coral);
}

.product-card.coral button {
  background: var(--coral);
}

.product-card.violet .product-type,
.product-card.violet h3 {
  color: var(--violet);
}

.product-card.violet button {
  background: var(--violet);
}

.product-card.plum {
  grid-column: span 2;
  min-height: 360px;
  flex-direction: row;
  background: var(--plum);
  color: var(--paper);
}

.product-card.plum img {
  width: 52%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.product-card.plum p {
  color: rgba(255, 255, 255, 0.74);
}

.product-card.plum button {
  background: var(--paper);
  color: var(--ink);
}

.roadmap {
  background:
    linear-gradient(180deg, rgba(255, 247, 250, 0.96), rgba(255, 235, 243, 0.82)),
    var(--soft);
  color: var(--ink);
}

.roadmap .section-heading {
  margin-bottom: clamp(24px, 4vw, 44px);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline div {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(217, 111, 152, 0.18);
  box-shadow: 0 18px 48px rgba(124, 54, 85, 0.08);
}

.timeline span {
  color: var(--paper);
  background: linear-gradient(135deg, var(--rose), var(--coral));
  box-shadow: 0 10px 24px rgba(217, 111, 152, 0.22);
}

.timeline p {
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

figure {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(124, 54, 85, 0.07);
}

figure img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

figcaption {
  padding: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.bonus {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.bonus-copy,
.bonus-list {
  max-width: none;
  margin: 0;
}

.bonus-list {
  display: grid;
  gap: 14px;
}

.bonus-list div {
  position: relative;
  padding-left: 30px;
}

.bonus-list div::before {
  position: absolute;
  top: 31px;
  left: 14px;
  width: 6px;
  height: calc(100% - 60px);
  content: "";
  background: var(--blue);
  border-radius: 999px;
}

.guarantee-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(20px, 4vw, 52px);
  padding: clamp(28px, 5vw, 56px);
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(217, 111, 152, 0.22), transparent 45%),
    var(--plum);
  border-radius: var(--radius);
}

.guarantee-card p {
  color: rgba(255, 255, 255, 0.78);
}

.consult {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(217, 111, 152, 0.11), transparent 36%),
    var(--soft);
}

.consult-copy,
.consult-form {
  max-width: none;
  margin: 0;
}

.consult-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

input:focus,
select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(217, 111, 152, 0.16);
}

.full {
  width: 100%;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 42px 20px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 116px;
}

.site-footer p {
  max-width: 760px;
  margin-bottom: 0;
}

.fine-print {
  font-size: 0.82rem;
}

@media (max-width: 1040px) {
  .hero,
  .mechanism,
  .bonus,
  .consult,
  .guarantee-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy,
  .hero-visual,
  .mechanism-media,
  .mechanism-copy,
  .bonus-copy,
  .bonus-list,
  .consult-copy,
  .consult-form {
    max-width: var(--max);
    margin-inline: auto;
  }

  .value-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  figure img {
    height: 340px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .brand img {
    width: 92px;
  }

  nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 14px;
    font-size: 0.82rem;
  }

  .nav-cta {
    padding: 8px 12px;
  }

  h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.25rem);
    line-height: 1.16;
  }

  h2 {
    font-size: clamp(1.72rem, 9vw, 2.6rem);
    line-height: 1.18;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-lead {
    max-width: 340px;
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .mobile-only {
    display: initial;
  }

  .hero-metrics,
  .proof-strip,
  .value-grid,
  .timeline,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .roadmap {
    padding-bottom: 112px;
  }

  .timeline {
    gap: 12px;
  }

  .timeline div {
    padding: 18px;
  }

  .timeline span {
    min-width: 0;
    height: 28px;
    margin-bottom: 12px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

  .timeline h3 {
    margin-bottom: 8px;
    font-size: 1.04rem;
  }

  .timeline p {
    font-size: 0.92rem;
    line-height: 1.52;
  }

  .proof-strip {
    padding: 0;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-photo {
    width: min(calc(100vw - 56px), 660px);
    height: auto;
    margin-inline: auto;
    min-height: 0;
  }

  .product-card.plum {
    grid-column: auto;
    flex-direction: column;
  }

  .product-card.plum img {
    width: 100%;
    height: 220px;
  }

  figure img {
    height: 240px;
  }

  .floating-cta {
    right: 14px;
    bottom: 14px;
    min-width: 188px;
    padding: 12px 15px;
  }
}
