:root {
  --ink: #120915;
  --paper: #fff7fb;
  --muted: #745f78;
  --line: rgba(31, 12, 35, .12);
  --hot: #ff4f8b;
  --hot-2: #ff8a5c;
  --cool: #28d6d1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-shell {
  display: flex;
  flex-direction: column;
}

.seo-first {
  order: 8;
}

.screen-one {
  order: 1;
  min-height: calc(100svh - 64px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 30%, rgba(255, 79, 139, .24), transparent 34%),
    radial-gradient(circle at 15% 82%, rgba(40, 214, 209, .18), transparent 30%),
    linear-gradient(135deg, #170b19 0%, #2d1430 46%, #17191d 100%);
  color: white;
}

.section-order-2 {
  order: 2;
}

.section-order-3 {
  order: 3;
}

.section-order-4 {
  order: 4;
}

.section-order-5 {
  order: 5;
}

.section-order-6 {
  order: 6;
}

.section-order-7 {
  order: 7;
}

.nav-glass {
  min-height: 64px;
  backdrop-filter: blur(16px);
  background: rgba(255, 247, 251, .86);
  border-bottom: 1px solid var(--line);
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: white;
  background: linear-gradient(135deg, var(--hot), var(--cool));
  font-weight: 900;
}

.hero-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

.btn-hot {
  color: #fff;
  background: linear-gradient(135deg, var(--hot), var(--hot-2));
  border: 0;
  box-shadow: 0 16px 34px rgba(255, 79, 139, .28);
}

.btn-hot:hover,
.btn-hot:focus {
  color: #fff;
  filter: brightness(1.04);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .9);
  border-radius: 999px;
  padding: .45rem .75rem;
  font-size: .875rem;
}

.soft-band {
  background: #fff;
  border-block: 1px solid var(--line);
}

.tile {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  padding: 1.25rem;
}

.quote-card {
  height: 100%;
  border: 1px solid rgba(255, 79, 139, .18);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fff4f8);
  padding: 1.25rem;
}

.price-card {
  height: 100%;
  border: 1px solid rgba(255, 79, 139, .25);
  border-radius: 8px;
  background: #fff;
  padding: 1.5rem;
}

.price-card.featured {
  border-color: rgba(255, 79, 139, .72);
  box-shadow: 0 18px 55px rgba(255, 79, 139, .14);
}

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

.sticky-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1040;
  transform: translateY(150%);
  transition: transform .22s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.legal-main {
  max-width: 860px;
}

.legal-main h1,
.legal-main h2 {
  color: var(--ink);
}

.redirect-screen {
  min-height: 100svh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 79, 139, .26), transparent 36%),
    linear-gradient(135deg, #140816, #2c1530 55%, #0f191c);
  color: white;
}

@media (max-width: 767.98px) {
  .screen-one {
    min-height: auto;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .hero-img {
    aspect-ratio: 16 / 10;
    border-radius: 18px;
  }

  .display-3 {
    font-size: clamp(2.1rem, 13vw, 3.25rem);
  }
}
