:root {
  --navy: #03021d;
  --navy-2: #09062b;
  --panel: rgba(255, 255, 255, 0.105);
  --panel-strong: rgba(255, 255, 255, 0.15);
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.26);
  --white: #ffffff;
  --muted: rgba(241, 244, 255, 0.68);
  --soft: rgba(241, 244, 255, 0.84);
  --pink: #f72886;
  --pink-2: #ff5fab;
  --purple: #9b5cff;
  --blue: #6a7bff;
  --green: #7ca24c;
  --gold: #f1b94d;
  --radius: 8px;
  --shadow-pink: 0 0 34px rgba(247, 40, 134, 0.35);
}

@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(116, 67, 255, 0.26), transparent 30%),
    linear-gradient(180deg, rgba(3, 2, 29, 0.2), rgba(3, 2, 29, 0.95)),
    var(--navy);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  min-height: 100vh;
}

body::before {
  background:
    linear-gradient(62deg, rgba(7, 5, 35, 0.82) 0%, rgba(7, 5, 35, 0.58) 24%, rgba(7, 5, 35, 0.18) 48%, rgba(7, 5, 35, 0) 62%),
    linear-gradient(180deg, rgba(3, 2, 29, 0.08), rgba(3, 2, 29, 0.46) 58%, rgba(3, 2, 29, 0.9)),
    url("assets/sect_02_bg.png") center top / cover no-repeat;
  content: "";
  inset: 0;
  opacity: 0.92;
  pointer-events: none;
  position: fixed;
  z-index: -2;
}

body::after {
  animation: ambient-drift 16s ease-in-out infinite alternate;
  background:
    radial-gradient(circle at 18% 76%, rgba(247, 40, 134, 0.18), transparent 18%),
    radial-gradient(circle at 34% 28%, rgba(106, 123, 255, 0.14), transparent 20%),
    radial-gradient(circle at 76% 18%, rgba(155, 92, 255, 0.16), transparent 22%),
    radial-gradient(circle at 82% 72%, rgba(247, 40, 134, 0.11), transparent 24%);
  background-size: 112% 112%;
  content: "";
  filter: blur(22px);
  inset: -4%;
  opacity: 0.72;
  pointer-events: none;
  position: fixed;
  transform-origin: 52% 46%;
  will-change: transform, opacity;
  z-index: -1;
}

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

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

.confetti-canvas {
  inset: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  position: fixed;
  z-index: 80;
}

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

h1,
h2,
h3 {
  font-family: Poppins, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page-shell {
  margin: 0 auto;
  max-width: 1520px;
  min-height: 100vh;
  padding: 22px clamp(18px, 4vw, 72px) 32px;
  position: relative;
}

.coming-header {
  align-items: center;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  background: rgba(255, 255, 255, 0.105);
  border-radius: 22px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 255px 1fr 190px;
  margin: 0 auto;
  max-width: 1240px;
  min-height: 82px;
  overflow: hidden;
  padding: 14px 26px;
  position: sticky;
  top: 18px;
  z-index: 30;
}

.coming-header::before {
  background: conic-gradient(from var(--border-angle),
    transparent 0deg,
    transparent 50deg,
    rgba(247, 40, 134, 0.42) 100deg,
    rgba(155, 92, 255, 0.86) 150deg,
    rgba(238, 230, 255, 1) 180deg,
    rgba(155, 92, 255, 0.86) 210deg,
    rgba(247, 40, 134, 0.42) 260deg,
    transparent 310deg,
    transparent 360deg
  );
  content: "";
  inset: -2px;
  border-radius: 24px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  padding: 2px;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.coming-header:hover::before,
.coming-header:focus-within::before,
.coming-header.is-open::before {
  animation: border-spin 3s linear infinite;
  opacity: 1;
}

.coming-header:hover,
.coming-header:focus-within,
.coming-header.is-open {
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.24),
    0 0 28px rgba(247, 40, 134, 0.12),
    inset 0 0 0 1px rgba(255, 180, 236, 0.28);
}

.coming-header::after {
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  background: rgba(21, 16, 56, 0.84);
  border-radius: 21px;
  content: "";
  inset: 1px;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.coming-header > * {
  position: relative;
  z-index: 2;
}

.logo,
.footer-logo {
  display: inline-flex;
}

.logo img {
  height: auto;
  width: 205px;
}

.menu-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  display: none;
  height: 46px;
  justify-content: center;
  padding: 10px;
  width: 46px;
}

.menu-toggle span {
  background: var(--white);
  border-radius: 999px;
  display: block;
  height: 2px;
  margin: 4px 0;
  width: 22px;
}

.header-nav {
  align-items: center;
  display: flex;
  gap: clamp(22px, 4vw, 56px);
  justify-content: center;
}

.header-nav a,
.phone-link {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  font-weight: 800;
  transition: color 180ms ease;
}

.header-nav a:hover,
.phone-link:hover {
  color: var(--white);
}

.header-nav span {
  color: var(--pink-2);
  font-size: 16px;
  margin-left: 4px;
}

.phone-stack {
  display: grid;
  gap: 3px;
  justify-items: end;
}

.phone-primary {
  color: rgba(247, 40, 134, 0.76);
  font-size: 17px;
  font-weight: 900;
}

.phone-local {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.hero {
  align-items: center;
  display: grid;
  justify-items: center;
  margin: 0 auto;
  min-height: 420px;
  padding: 62px 0 34px;
  text-align: center;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.28em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

h1 {
  font-size: 60px;
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 28px;
  max-width: 690px;
}

h1 em {
  color: #ffb4ec;
  display: inline-block;
  font-family: Poppins, Inter, sans-serif;
  font-style: italic;
  font-weight: 400;
}

.lede {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  margin: 0 auto 32px;
  max-width: 460px;
}

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  gap: 10px;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover,
.product-card:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-2));
  box-shadow: 0 14px 34px rgba(247, 40, 134, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.btn-primary:hover {
  box-shadow: 0 18px 46px rgba(247, 40, 134, 0.48);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: #292842;
}

.btn-secondary:hover {
  background: var(--white);
}

.hero-cta {
  min-width: min(430px, 100%);
}

.product-section {
  margin: 0 auto;
  max-width: 1270px;
  padding: 6px 0 34px;
  position: relative;
}

.section-heading {
  margin-bottom: 32px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.05;
  margin-bottom: 0;
}

.section-heading h2::first-letter {
  color: var(--white);
}

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

.product-card {
  --card-glow: rgba(247, 40, 134, 0.85);
  --card-glow-soft: rgba(247, 40, 134, 0.16);
  background: rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  min-width: 0;
  overflow: hidden;
  padding: 1px;
  position: relative;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  box-shadow: 0 0 34px var(--card-glow-soft), 0 30px 70px rgba(0, 0, 0, 0.38);
  overflow: visible;
}

.product-card::before {
  background: conic-gradient(from var(--border-angle),
    transparent 0deg,
    transparent 50deg,
    var(--card-glow) 100deg,
    rgba(255, 255, 255, 0.86) 150deg,
    rgba(255, 255, 255, 1) 180deg,
    rgba(255, 255, 255, 0.86) 210deg,
    var(--card-glow) 260deg,
    transparent 310deg,
    transparent 360deg
  );
  content: "";
  border-radius: 16px;
  inset: -2px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  padding: 2px;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.4s ease;
  z-index: 8;
}

.product-card:hover::before {
  animation: border-spin 3s linear infinite;
  opacity: 1;
}

.product-card a {
  background: rgba(13, 10, 47, 0.96);
  border-radius: 13px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.product-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.product-card-pink {
  --card-glow: rgba(247, 40, 134, 0.92);
  --card-glow-soft: rgba(247, 40, 134, 0.28);
  background: rgba(247, 40, 134, 0.7);
  box-shadow: 0 0 28px rgba(247, 40, 134, 0.2), 0 24px 60px rgba(0, 0, 0, 0.28);
}

.product-card-gold {
  --card-glow: rgba(241, 185, 77, 0.92);
  --card-glow-soft: rgba(241, 185, 77, 0.24);
  background: rgba(241, 185, 77, 0.78);
}

.product-card-green {
  --card-glow: rgba(124, 162, 76, 0.95);
  --card-glow-soft: rgba(124, 162, 76, 0.24);
  background: rgba(124, 162, 76, 0.8);
}

.product-copy {
  background: rgba(13, 10, 47, 0.94);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  min-height: 86px;
  padding: 18px 18px 16px;
}

.product-copy h3 {
  font-size: clamp(19px, 1.5vw, 25px);
  line-height: 1.1;
  margin: 0;
}

.product-copy p {
  color: var(--soft);
  font-size: clamp(15px, 1.2vw, 20px);
  font-weight: 600;
  line-height: 1.22;
  margin: 4px 0 0;
}

.product-card span {
  background: rgba(255, 255, 255, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  padding: 14px 18px;
  text-align: center;
}

.benefit-row {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 46px auto 0;
  max-width: 900px;
}

.benefit {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.benefit svg {
  fill: none;
  height: 38px;
  stroke: var(--pink-2);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 38px;
}

.benefit span {
  font-size: clamp(16px, 1.7vw, 23px);
  font-weight: 900;
  line-height: 1.15;
}

.conversion-panel {
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  background:
    radial-gradient(circle at 16% 20%, rgba(155, 92, 255, 0.16), transparent 30%),
    radial-gradient(circle at 86% 62%, rgba(247, 40, 134, 0.12), transparent 30%),
    rgba(15, 10, 48, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  margin: 68px auto 32px;
  max-width: 1240px;
  overflow: hidden;
}

.help-card,
.signup-card {
  min-width: 0;
  padding: clamp(28px, 3vw, 44px);
}

.help-card {
  border-right: 1px solid var(--line);
}

.help-card p {
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.help-card p strong {
  color: #b978ff;
}

.help-card h2,
.signup-card h2 {
  font-size: clamp(31px, 3.2vw, 45px);
  line-height: 1.06;
  margin-bottom: 8px;
}

.help-card > span {
  color: var(--soft);
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 28px;
}

.button-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.signup-card {
  display: grid;
  gap: 14px;
}

.google-button {
  align-items: center;
  background: var(--white);
  border-radius: 999px;
  color: #17152b;
  display: flex;
  font-weight: 900;
  gap: 14px;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
}

.google-button span {
  color: #4285f4;
  font-size: 19px;
  font-weight: 900;
}

.signup-card p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.signup-card p a {
  text-decoration: underline;
}

.coming-footer {
  align-items: center;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  background: rgba(21, 16, 56, 0.58);
  border-radius: 18px;
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 180px 1fr auto;
  margin: 0 auto;
  max-width: 1240px;
  overflow: hidden;
  padding: 22px 26px;
  position: relative;
  transition: box-shadow 0.4s ease;
}

.coming-footer::before {
  background: conic-gradient(from var(--border-angle),
    transparent 0deg,
    transparent 50deg,
    rgba(247, 40, 134, 0.42) 100deg,
    rgba(155, 92, 255, 0.86) 150deg,
    rgba(238, 230, 255, 1) 180deg,
    rgba(155, 92, 255, 0.86) 210deg,
    rgba(247, 40, 134, 0.42) 260deg,
    transparent 310deg,
    transparent 360deg
  );
  border-radius: 20px;
  content: "";
  inset: -2px;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  padding: 2px;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.coming-footer:hover::before,
.coming-footer:focus-within::before {
  animation: border-spin 3s linear infinite;
  opacity: 1;
}

.coming-footer:hover,
.coming-footer:focus-within {
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.18),
    0 0 28px rgba(247, 40, 134, 0.12),
    inset 0 0 0 1px rgba(255, 180, 236, 0.28);
}

.coming-footer > * {
  position: relative;
  z-index: 1;
}

.coming-footer img {
  width: 170px;
}

.footer-phones {
  display: grid;
  gap: 4px;
}

.coming-footer a {
  color: var(--white);
  font-weight: 800;
}

.coming-footer nav {
  display: flex;
  gap: 18px;
}

.coming-footer nav a:last-child {
  color: var(--pink-2);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes border-spin {
  to {
    --border-angle: 360deg;
  }
}

@keyframes ambient-drift {
  0% {
    opacity: 0.62;
    transform: translate3d(-2.2%, 1.2%, 0) scale(1.01) rotate(-0.6deg);
  }

  34% {
    opacity: 0.76;
    transform: translate3d(1.4%, -1.8%, 0) scale(1.055) rotate(0.45deg);
  }

  68% {
    opacity: 0.7;
    transform: translate3d(2.4%, 1.1%, 0) scale(1.025) rotate(0.9deg);
  }

  100% {
    opacity: 0.8;
    transform: translate3d(-0.6%, -2.4%, 0) scale(1.075) rotate(-0.3deg);
  }
}

@media (max-width: 1180px) {
  .coming-header {
    grid-template-columns: 220px 1fr;
  }

  .phone-stack {
    grid-column: 2;
    justify-self: end;
  }

  .header-nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }

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

}

@media (max-width: 820px) {
  body::before {
    background:
      linear-gradient(62deg, rgba(7, 5, 35, 0.78) 0%, rgba(7, 5, 35, 0.5) 36%, rgba(7, 5, 35, 0.08) 64%),
      linear-gradient(180deg, rgba(3, 2, 29, 0.2), rgba(3, 2, 29, 0.7)),
      url("assets/sect_02_bg.png") center top / auto 900px repeat-y;
  }

  .page-shell {
    padding: 16px 18px 28px;
  }

  .coming-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    padding: 12px 14px;
    top: 12px;
  }

  .logo img {
    width: 178px;
  }

  .menu-toggle {
    display: grid;
  }

  .header-nav,
  .phone-stack {
    display: none;
    grid-column: 1 / -1;
    justify-items: start;
  }

  .coming-header.is-open .header-nav {
    align-items: stretch;
    display: grid;
    gap: 14px;
    justify-content: stretch;
    padding-top: 10px;
  }

  .coming-header.is-open .phone-stack {
    display: grid;
    padding-top: 4px;
  }

  .header-nav a {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 13px;
  }

  .hero {
    min-height: 0;
    padding: 82px 0 38px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 72px);
  }

  .hero-cta,
  .btn {
    width: 100%;
  }

  .product-grid,
  .benefit-row,
  .conversion-panel,
  .coming-footer {
    grid-template-columns: 1fr;
  }

  .product-section {
    padding-bottom: 20px;
  }

  .benefit-row {
    justify-items: start;
    margin-top: 34px;
    max-width: 360px;
  }

  .benefit {
    justify-content: flex-start;
  }

  .conversion-panel {
    margin-top: 44px;
  }

  .help-card {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .coming-footer {
    justify-items: start;
  }

  .coming-footer nav {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 520px) {
  .product-grid {
    gap: 18px;
  }

  .product-copy {
    min-height: auto;
  }

  .help-card,
  .signup-card {
    padding: 24px 18px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .coming-header::before,
  .coming-footer::before,
  body::after,
  .product-card::before {
    animation: none;
  }

  .btn,
  .product-card {
    transition: none;
  }
}
