:root {
  --plum: #301030;
  --plum-dark: #200b20;
  --teal: #18a0a8;
  --teal-dark: #11848a;
  --coral: #e01868;
  --coral-dark: #c81058;
  --blush: #fff3f7;
  --ink: #301030;
  --muted: #675867;
  --line: rgba(48, 16, 48, 0.12);
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(48, 16, 48, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family:
    "DM Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.section-pad {
  padding: 120px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fefefe;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(48, 16, 48, 0.06);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 160px;
}
.brand-logo {
  width: 160px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}
.main-nav a {
  color: #5a4a5a;
  transition: color 0.2s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--plum);
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--plum);
  margin: 5px 0;
  border-radius: 5px;
}

.hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--plum);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?auto=format&fit=crop&w=1900&q=86");
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(32, 11, 32, 0.92) 0%,
      rgba(48, 16, 48, 0.73) 43%,
      rgba(48, 16, 48, 0.22) 100%
    ),
    linear-gradient(0deg, rgba(32, 11, 32, 0.28), rgba(32, 11, 32, 0.18));
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  padding-top: 120px;
}
.hero-copy {
  color: #fff;
  max-width: 650px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.84);
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(24, 160, 168, 0.14);
}
.hero h1 {
  margin: 22px 0 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.98;
}
.hero h1 span {
  color: #f57fae;
}
.hero-text {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 16px 34px rgba(24, 160, 168, 0.24);
}
.btn-primary:hover {
  background: var(--teal-dark);
}
.btn-light {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}
.btn-light:hover {
  background: rgba(255, 255, 255, 0.18);
}
.btn-outline {
  border-color: rgba(24, 160, 168, 0.25);
  color: var(--plum);
  background: #fff;
}
.btn-white {
  background: #fff;
  color: var(--plum);
}
.hero-note {
  margin-top: 22px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.63);
}
.hero-card {
  justify-self: end;
  width: min(390px, 100%);
  min-height: 470px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.22);
  padding: 18px;
  color: white;
}
.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
}
.mini-pill {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  padding: 7px 10px;
  border-radius: 999px;
}
.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.75);
}
.status-dot i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #71e07d;
  box-shadow: 0 0 0 5px rgba(113, 224, 125, 0.13);
}
.hero-card-body {
  position: relative;
  min-height: 412px;
  margin-top: 18px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 25%,
      rgba(255, 255, 255, 0.17),
      transparent 35%
    ),
    linear-gradient(160deg, rgba(24, 160, 168, 0.22), rgba(48, 16, 48, 0.36));
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 44px;
  text-align: center;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}
.orbit-1 {
  width: 290px;
  height: 290px;
  top: 54px;
  left: calc(50% - 145px);
}
.orbit-2 {
  width: 220px;
  height: 220px;
  top: 89px;
  left: calc(50% - 110px);
}
.heart-mark {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #e93b80, #c81058);
  color: white;
  font-size: 54px;
  box-shadow: 0 24px 46px rgba(200, 16, 88, 0.28);
}
.profile-bubble {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--plum);
  font-weight: 800;
  border: 5px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}
.bubble-1 {
  left: 34px;
  top: 90px;
}
.bubble-2 {
  right: 32px;
  top: 150px;
}
.bubble-3 {
  left: 76px;
  top: 242px;
}
.hero-card-body p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.25;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-scroll span {
  color: #fff;
  margin-left: 6px;
}

.intro {
  background: #fff;
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 80px;
}
.section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  color: var(--coral-dark);
}
.intro-content {
  max-width: 840px;
}
h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--plum);
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0;
}
h2 span {
  color: var(--coral);
}
.intro-content p {
  max-width: 760px;
  font-size: 18px;
  color: #584858;
  margin: 30px 0 0;
  line-height: 1.8;
}
.intro-content .muted {
  color: var(--muted);
  font-size: 15px;
}
.text-link {
  display: inline-flex;
  gap: 9px;
  margin-top: 28px;
  color: var(--plum);
  font-weight: 700;
  font-size: 14px;
}
.text-link span {
  color: var(--coral);
}

.statement {
  background: var(--blush);
  padding: 105px 0;
}
.statement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.statement p {
  margin: 0;
  color: var(--plum);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(38px, 5.3vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 800;
}
.statement p span {
  color: var(--coral);
}
.statement-mark {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--plum);
  color: white;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 50px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.features {
  background: #fff;
}
.section-heading {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 62px;
}
.section-heading p {
  max-width: 670px;
  margin: 22px 0 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fffafb);
  min-height: 255px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(224, 24, 104, 0.28);
}
.feature-number {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 11px;
  color: #b5a9b6;
  font-weight: 800;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(24, 160, 168, 0.11);
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  font-size: 24px;
  margin-bottom: 24px;
}
.feature-card h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--plum);
  font-size: 22px;
  letter-spacing: -0.02em;
}
.feature-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

.trust-section {
  background: #200b20;
  color: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.trust-photo {
  min-height: 620px;
  border-radius: 32px;
  background-image:
    linear-gradient(180deg, rgba(24, 160, 168, 0.08), rgba(32, 11, 32, 0.32)),
    url("https://images.unsplash.com/photo-1522673607200-164d1b6ce486?q=80&w=1400&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.28);
}
.trust-copy .section-label {
  color: #f47fae;
}
.trust-copy h2 {
  color: #fff;
  margin-top: 12px;
}
.trust-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.8;
  max-width: 560px;
}
.trust-list {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}
.trust-list div {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
}
.trust-list strong {
  color: #fff;
  font-size: 14px;
}
.trust-list span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.brand-disclosure {
  padding: 80px 0;
  background: #fff;
}
.disclosure-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: 30px;
  background: var(--blush);
  border: 1px solid rgba(224, 24, 104, 0.16);
}
.disclosure-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--plum);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 800;
}
.disclosure-card h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin: 9px 0 10px;
}
.disclosure-card p {
  margin: 0;
  color: #625463;
  line-height: 1.7;
  font-size: 14px;
}
.disclosure-small {
  margin-top: 8px !important;
  font-size: 12px !important;
  color: #817582 !important;
}

.cta {
  padding-top: 40px;
}
.cta-box {
  padding: 58px;
  border-radius: 30px;
  background: linear-gradient(135deg, #301030, #4a174a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta-box .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}
.cta-box h2 {
  color: #fff;
  margin-top: 11px;
  font-size: clamp(35px, 4vw, 54px);
}
.cta-box p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  margin-top: 50px;
  background: #180c18;
  color: rgba(255, 255, 255, 0.68);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding: 58px 0 44px;
}
.footer-brand {
  max-width: 260px;
}
.footer-logo {
  width: 155px;
  background: #fff;
  border-radius: 9px;
  padding: 6px;
}
.footer-brand p {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.52);
}
.footer-links {
  display: flex;
  gap: 90px;
}
.footer-links div {
  display: grid;
  gap: 9px;
  min-width: 150px;
}
.footer-links span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 800;
  margin-bottom: 6px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
}
.footer-links a:hover {
  color: #fff;
}
.footer-bottom {
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom strong {
  color: rgba(255, 255, 255, 0.8);
}

.legal-hero {
  padding: 190px 0 90px;
  background: var(--blush);
}
.legal-hero h1 {
  margin: 20px 0 15px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--plum);
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.legal-hero h1 span {
  color: var(--coral);
}
.legal-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.legal-content {
  background: #fff;
}
.legal-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 90px;
}
.legal-side {
  position: sticky;
  top: 120px;
  align-self: start;
  display: grid;
  gap: 10px;
}
.legal-side a {
  font-size: 13px;
  color: var(--muted);
}
.legal-side a:hover {
  color: var(--plum);
}
.legal-main {
  max-width: 760px;
}
.legal-block {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.legal-kicker {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.legal-block h2 {
  font-size: clamp(30px, 4vw, 46px);
}
.legal-block p {
  color: #5f5662;
  font-size: 16px;
  line-height: 1.85;
}
.legal-callout {
  margin-top: 24px;
  padding: 22px;
  border-radius: 20px;
  background: var(--blush);
  border: 1px solid rgba(240, 90, 114, 0.15);
  color: #574d59;
  line-height: 1.9;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}

@media (max-width: 980px) {
  .hero-inner,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-bottom: 90px;
  }
  .hero-inner {
    padding-top: 150px;
  }
  .hero-card {
    justify-self: start;
    width: min(430px, 100%);
  }
  .intro-grid,
  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-photo {
    min-height: 500px;
  }
  .disclosure-card {
    grid-template-columns: auto 1fr;
  }
  .disclosure-card .btn {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .section-pad {
    padding: 88px 0;
  }
  .nav-wrap {
    min-height: 74px;
  }
  .brand-logo {
    width: 135px;
    height: 48px;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 20px 40px rgba(50, 16, 52, 0.08);
    border-radius: 20px;
  }
  .main-nav.open {
    display: grid;
  }
  .main-nav a {
    padding: 11px 10px;
  }
  .hero h1 {
    font-size: clamp(45px, 13vw, 68px);
  }
  .hero-text {
    font-size: 16px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .btn {
    width: 100%;
  }
  .hero-card {
    min-height: 410px;
  }
  .hero-card-body {
    min-height: 350px;
  }
  .heart-mark {
    top: 122px;
  }
  .orbit-1 {
    width: 250px;
    height: 250px;
    top: 45px;
    left: calc(50% - 125px);
  }
  .orbit-2 {
    width: 190px;
    height: 190px;
    top: 75px;
    left: calc(50% - 95px);
  }
  .hero-card-body p {
    font-size: 21px;
  }
  .statement-inner {
    align-items: flex-start;
  }
  .statement-mark {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    gap: 35px;
  }
  .trust-photo {
    min-height: 430px;
  }
  .trust-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .disclosure-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .disclosure-card .btn {
    grid-column: 1;
  }
  .cta-box {
    padding: 34px 26px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-top,
  .footer-bottom {
    flex-direction: column;
  }
  .footer-links {
    gap: 38px;
    flex-wrap: wrap;
  }
  .legal-hero {
    padding: 150px 0 70px;
  }
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .legal-side {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
}
