:root {
  --bg: #fbf3f4;
  --card: #fffcfc;
  --ink: #2a2126;
  --dark: #21191e;
  --pink: #c97c87;
  --pink-dark: #9d4d59;
  --pink-light: #e3a3ac;
  --muted: #806d73;
  --line: #eed9db;
  --shadow: 0 18px 45px rgba(36, 31, 43, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font:
    400 16px/1.55 Inter,
    Arial,
    sans-serif;
}
.container {
  width: min(100% - 44px, 1060px);
  margin: auto;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: Montserrat, Arial, sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.hero {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 26%, #563843 0, transparent 33%),
    linear-gradient(155deg, #2a2126, var(--dark));
  color: #fff;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
}
.brand {
  position: relative;
  color: #fff;
  font:
    900 1.08rem/1 Montserrat,
    sans-serif;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.brand span {
  color: var(--pink-light);
}
.brand small {
  position: absolute;
  top: 18px;
  left: 1px;
  color: var(--pink);
  font-size: 0.42rem;
  letter-spacing: 0.38em;
}
.hero__content {
  padding: 55px 0 48px;
  text-align: center;
}
.eyebrow {
  margin-bottom: 13px;
  color: var(--pink);
  font:
    800 0.68rem/1 Montserrat,
    sans-serif;
  letter-spacing: 0.13em;
}
.eyebrow__highlight {
  display: inline-flex;
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--pink-dark);
  color: #fff;
}
.hero h1 {
  max-width: 680px;
  margin: 0 auto 18px;
  font-size: clamp(2.15rem, 9.6vw, 4.6rem);
}
.hero h1 span,
.for-you h2 span {
  color: var(--pink-light);
}
.hero__text {
  max-width: 540px;
  margin: 0 auto;
  color: #d9c7cc;
  font-size: 0.98rem;
}
.hero__text + .hero__text {
  margin-top: 10px;
}
.product-mockup {
  position: relative;
  width: min(100%, 560px);
  height: 350px;
  margin: 5px auto 28px;
}
.product-mockup > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
}
.product-mockup.has-image > img {
  opacity: 1;
}
.product-mockup.has-image .product-mockup__fallback {
  display: none;
}
.product-mockup__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: center;
}
.mockup-screen {
  z-index: 2;
  width: 205px;
  height: 134px;
  padding-top: 28px;
  border: 7px solid #111;
  border-bottom-width: 13px;
  border-radius: 10px 10px 3px;
  background: linear-gradient(145deg, #f1c0c6, #a15160);
  box-shadow: 0 18px 28px #0006;
  color: #fff;
  font:
    900 3rem/0.7 Montserrat,
    sans-serif;
}
.mockup-screen small {
  font-size: 0.55rem;
}
.mockup-phone,
.mockup-card {
  position: absolute;
  bottom: 7px;
  border: 5px solid #111;
  background: linear-gradient(160deg, #d8969e, #6d3643);
}
.mockup-phone {
  z-index: 3;
  right: 34px;
  width: 50px;
  height: 105px;
  border-radius: 9px;
}
.mockup-card {
  z-index: 1;
  left: 34px;
  width: 91px;
  height: 115px;
  border-radius: 7px;
  transform: rotate(-5deg);
}
.cta {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #dd919d, #a94f60);
  box-shadow: 0 14px 30px #9d4d5959;
  color: #fff;
  font:
    800 0.78rem/1.3 Montserrat,
    sans-serif;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s;
}
.cta:hover {
  transform: translateY(-2px);
}
.cta:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}
.reassurance {
  margin: 20px auto 0;
  padding: 12px;
  border: 1px solid #e3a3ac47;
  border-radius: 999px;
  color: var(--pink-light);
  font-size: 0.76rem;
}
.reassurance b {
  padding: 0 5px;
}
.for-you-section {
  padding: 64px 0;
}
.for-you {
  max-width: 1060px;
}
.for-you__header {
  margin-bottom: 31px;
  text-align: center;
}
.for-you h2 {
  margin: 0;
  font-size: clamp(1.95rem, 8vw, 3.4rem);
}
.for-you__grid {
  display: grid;
  gap: 15px;
}
.for-you-card {
  min-height: 178px;
  padding: 23px 21px;
  border: 1px solid #c97c872e;
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 12px 28px #241f2b0d;
  transition: 0.2s;
}
.for-you-card:hover {
  border-color: var(--pink);
  transform: translateY(-3px);
}
.for-you-card__icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 13px;
  background: #f5e2e5;
  color: var(--pink-dark);
  font-size: 1.5rem;
  font-weight: 700;
}
.for-you-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}
.for-you-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
footer {
  padding: 28px;
  background: var(--dark);
  color: #d7bdc3;
  font:
    700 0.7rem Montserrat,
    sans-serif;
  letter-spacing: 0.06em;
  text-align: center;
}
@media (min-width: 640px) {
  .for-you__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .hero {
    min-height: 720px;
  }
  .nav {
    padding-top: 26px;
  }
  .hero__content {
    padding-top: 102px;
  }
  .product-mockup {
    width: 760px;
    height: 475px;
  }
  .cta {
    width: auto;
    min-width: 350px;
  }
  .for-you-section {
    padding: 92px 0;
  }
  .for-you__header {
    margin-bottom: 42px;
  }
  .for-you__grid {
    gap: 22px;
  }
  .for-you-card {
    min-height: 205px;
    padding: 28px;
  }
  .for-you-card h3 {
    font-size: 1.25rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
