:root {
  color-scheme: dark;
  --header-height: 5.5rem;
  --bg: #050118;
  --bg-soft: #0d0424;
  --navy: #000135;
  --card: #14072f;
  --card-soft: rgba(25, 10, 58, 0.78);
  --card-strong: rgba(36, 12, 78, 0.92);
  --stroke: rgba(141, 95, 211, 0.42);
  --stroke-strong: rgba(81, 249, 245, 0.32);
  --text: #fff7ff;
  --muted: #d8c8f2;
  --muted-soft: rgba(216, 200, 242, 0.76);
  --accent: #51f9f5;
  --accent-strong: #8d5fd3;
  --pink: #ff61b9;
  --violet: #896ad5;
  --shadow: 0 24px 80px rgba(0, 1, 53, 0.48);
  --section-pad-x: clamp(1rem, 5vw, 4rem);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: var(--header-height);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 97, 185, 0.24), transparent 32rem),
    radial-gradient(circle at 84% 4%, rgba(81, 249, 245, 0.18), transparent 30rem),
    radial-gradient(circle at 72% 72%, rgba(137, 106, 213, 0.22), transparent 36rem),
    linear-gradient(145deg, #020014 0%, #12052d 48%, #03011a 100%);
  background-size: cover;
}

a {
  color: inherit;
}

a,
button,
img {
  -webkit-user-drag: none;
}

button,
.button,
.nav-cta,
.site-header,
.site-header *,
.phone-card,
.phone-card * {
  -webkit-user-select: none;
  user-select: none;
}

img {
  user-select: none;
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--section-pad-x);
  background: rgba(5, 1, 24, 0.72);
  border-bottom: 1px solid rgba(141, 95, 211, 0.22);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-logo {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.8rem;
  box-shadow: 0 0 0 1px rgba(81, 249, 245, 0.2);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.nav a,
.nav-cta,
.footer-links a {
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  font: inherit;
  padding: 0.65rem 0.85rem;
  text-decoration: none;
}

.nav a:hover,
.nav-cta:hover,
.footer-links a:hover {
  color: var(--text);
  background: rgba(141, 95, 211, 0.16);
}

.nav-cta {
  cursor: pointer;
  color: #06011c;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent) 0%, var(--pink) 100%);
  box-shadow: 0 12px 28px rgba(81, 249, 245, 0.12);
}

.nav-cta:hover {
  color: #06011c;
  background: linear-gradient(135deg, var(--accent) 0%, var(--pink) 100%);
  box-shadow: 0 16px 34px rgba(255, 97, 185, 0.22);
  transform: translateY(-1px);
}

.hero,
.section,
.legal-page,
.trust-strip,
.site-footer {
  position: relative;
}

.hero,
.section,
.site-footer {
  padding-left: var(--section-pad-x);
  padding-right: var(--section-pad-x);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(22rem, 0.88fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-top: clamp(3.25rem, 8vw, 5.5rem);
  padding-bottom: 3.25rem;
}

.hero-copy {
  max-width: 44rem;
  animation: rise-in 720ms ease-out both;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 8vw, 6.45rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
}

p,
li,
summary {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text,
.legal-lead {
  max-width: 40rem;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.hero-pills,
.legal-summary,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-pills {
  margin-top: 1.35rem;
}

.hero-pills span,
.preview-badge,
.legal-summary-card,
.trust-strip div {
  border: 1px solid rgba(81, 249, 245, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-pills span {
  padding: 0.6rem 0.85rem;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-weight: 800;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
}

.button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -65%;
  width: 55%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  opacity: 0;
}

.button:hover::after {
  opacity: 1;
  animation: button-shine 620ms ease-out;
}

.button.primary {
  color: #06011c;
  background: linear-gradient(135deg, var(--accent) 0%, var(--pink) 100%);
  box-shadow: 0 16px 38px rgba(255, 97, 185, 0.24);
}

.phone-card,
.feature-card,
.store-card,
.spotlight-card,
.split,
.legal-card,
.faq-item {
  border: 1px solid var(--stroke);
  border-radius: 2rem;
  background: var(--card-soft);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.18);
}

.phone-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 97, 185, 0.24), transparent 14rem),
    radial-gradient(circle at 18% 88%, rgba(81, 249, 245, 0.14), transparent 13rem),
    linear-gradient(160deg, rgba(36, 12, 78, 0.95), rgba(0, 1, 53, 0.9));
  box-shadow: var(--shadow);
  animation: rise-in 800ms 140ms ease-out both;
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(81, 249, 245, 0.06), transparent 32%);
  pointer-events: none;
}

.phone-card::after {
  content: "";
  position: absolute;
  inset: auto -8% -26% 18%;
  height: 14rem;
  border-radius: 999px;
  background: rgba(255, 97, 185, 0.16);
  filter: blur(30px);
  transform: rotate(-12deg);
}

.phone-top,
.time-card,
.mini-grid,
.preview-panel {
  position: relative;
  z-index: 1;
}

.phone-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 900;
}

.preview-logo {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 1rem;
  box-shadow: 0 0 0 1px rgba(81, 249, 245, 0.22);
}

.preview-brand {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.preview-brand small,
.streak-label,
.time-meta-label,
.legal-summary-card small,
.streak-bottom small {
  color: var(--muted-soft);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.preview-badge {
  margin-left: auto;
  padding: 0.5rem 0.75rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
}

.time-card {
  border-radius: 2rem;
  min-height: 11.8rem;
  padding: 1.3rem 1.4rem 1.35rem;
  background: rgba(0, 1, 53, 0.52);
  border: 1px solid rgba(81, 249, 245, 0.22);
  box-shadow: inset 0 0 32px rgba(81, 249, 245, 0.04);
}

.time-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.time-meta-detail {
  padding: 0.38rem 0.66rem;
  border-radius: 999px;
  background: rgba(81, 249, 245, 0.12);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}

.time {
  display: inline-block;
  color: var(--accent);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.95;
  text-shadow: 0 0 24px rgba(81, 249, 245, 0.2);
}

.ampm {
  margin-left: 0.25rem;
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 800;
}

.time-card p {
  margin: 0.8rem 0 0;
}

.preview-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.preview-panel-row {
  padding: 0.9rem 1rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.05);
}

.preview-panel-row span {
  display: block;
  color: var(--muted-soft);
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}

.preview-panel-row strong,
.streak-bottom strong,
.streak-count {
  color: var(--text);
  font-size: 0.98rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 0.95rem;
}

.mini-grid button {
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 0.6rem;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  text-align: center;
  font-weight: 800;
  background: rgba(141, 95, 211, 0.18);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.mini-grid button.is-active {
  color: #06011c;
  background: linear-gradient(135deg, var(--accent) 0%, var(--pink) 100%);
  transform: translateY(-1px);
}

.mini-grid button:hover {
  color: var(--text);
  background: rgba(81, 249, 245, 0.14);
  box-shadow: inset 0 0 0 2px rgba(81, 249, 245, 0.5);
  transform: translateY(-1px);
}

.mini-grid button.is-active:hover {
  color: #06011c;
  background: linear-gradient(135deg, var(--accent) 0%, var(--pink) 100%);
  box-shadow: 0 12px 28px rgba(255, 97, 185, 0.18);
  filter: brightness(1.06);
}

.section {
  padding-top: 2.8rem;
  padding-bottom: 2.8rem;
}

.section-shell::before,
.faq-section::before,
.legal-page::before {
  content: "";
  display: block;
  width: min(100%, 16rem);
  height: 1px;
  margin-bottom: 1.6rem;
  background: linear-gradient(90deg, rgba(81, 249, 245, 0.75), rgba(255, 97, 185, 0.18), transparent);
}

.section-intro {
  max-width: 46rem;
  margin-bottom: 1.5rem;
}

.store-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
}

.store-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card,
.store-card,
.spotlight-card,
.faq-item {
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.feature-card,
.store-card {
  padding: 1.45rem;
}

.feature-card h3::before,
.store-card h3::before,
.spotlight-copy h3::before {
  content: "";
  display: block;
  width: 2.3rem;
  height: 0.34rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--pink));
}

.feature-card:hover,
.store-card:hover,
.spotlight-card:hover,
.faq-item:hover {
  transform: translateY(-6px);
  border-color: rgba(81, 249, 245, 0.45);
  background: rgba(37, 13, 82, 0.82);
}

.feature-spotlight {
  background:
    radial-gradient(circle at 85% 50%, rgba(81, 249, 245, 0.08), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent);
}

.spotlight-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr);
  gap: 1rem;
}

.spotlight-card {
  padding: 1.55rem;
}

.bullet-list {
  padding-left: 1.2rem;
  margin-bottom: 0;
}

.bullet-list li + li {
  margin-top: 0.7rem;
}

.streak-mock {
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 97, 185, 0.18), transparent 12rem),
    linear-gradient(180deg, rgba(81, 249, 245, 0.06), rgba(0, 1, 53, 0.1));
}

.streak-top,
.streak-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.streak-top {
  align-items: baseline;
}

.streak-count {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  font-weight: 900;
}

.streak-bar {
  height: 0.95rem;
  margin: 1.4rem 0 1.1rem;
  padding: 0.14rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.streak-bar-fill {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--pink));
  box-shadow: 0 0 18px rgba(81, 249, 245, 0.24);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 1.5rem;
  margin: 0 var(--section-pad-x) 3rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.privacy-section {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas: "lead copy";
  gap: clamp(1.5rem, 4vw, 3rem);
}

.split-lead {
  grid-area: lead;
  max-width: 30rem;
  align-self: center;
}

.split-copy {
  grid-area: copy;
  max-width: 34rem;
  margin: 0;
  align-self: center;
  justify-self: end;
  font-size: 1.06rem;
}

.privacy-section .eyebrow {
  margin-bottom: 0.7rem;
}

.privacy-section h2 {
  max-width: 12ch;
  margin-bottom: 0;
}

.privacy-section.section-shell::before {
  display: none;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.3rem;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 1.3rem 1.2rem;
}

.closing-cta {
  padding-top: 0;
}

.closing-cta-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
  max-width: min(100%, 48rem);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.4rem);
}

.closing-cta-copy {
  width: 100%;
}

.closing-cta-copy h2 {
  margin-bottom: 0.7rem;
}

.closing-cta-copy p:last-child {
  margin-bottom: 0;
}

.closing-cta-button {
  min-width: 9.25rem;
  margin-top: 0.1rem;
}

.trust-strip {
  gap: 0.9rem;
  padding: 0  var(--section-pad-x) 2.3rem;
}

.trust-strip div {
  padding: 0.85rem 1rem;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
}

.legal-page {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) var(--section-pad-x) 3rem;
}

.legal-hero {
  margin-bottom: 1.6rem;
}

.legal-page h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.legal-summary {
  margin-top: 1.3rem;
}

.legal-summary-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 12rem;
  padding: 0.95rem 1rem;
}

.legal-summary-card strong {
  color: var(--text);
}

.legal-card {
  padding: clamp(1.35rem, 4vw, 2.4rem);
}

.legal-card h2 {
  margin-top: 2rem;
  margin-bottom: 0.55rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card a {
  color: var(--accent);
  font-weight: 800;
}

.legal-trust {
  padding-top: 0;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(141, 95, 211, 0.22);
}

.toast {
  position: fixed;
  right: clamp(1rem, 4vw, 2rem);
  bottom: 1.2rem;
  z-index: 20;
  max-width: min(28rem, calc(100vw - 2rem));
  padding: 1rem 1.15rem;
  border: 1px solid rgba(81, 249, 245, 0.35);
  border-radius: 1.3rem;
  color: var(--text);
  background: rgba(5, 1, 24, 0.92);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.motion-ready .feature-card,
.motion-ready .store-card,
.motion-ready .spotlight-card,
.motion-ready .split,
.motion-ready .legal-card,
.motion-ready .faq-item {
  opacity: 0;
  transform: translateY(18px);
}

.motion-ready .feature-card.is-visible,
.motion-ready .store-card.is-visible,
.motion-ready .spotlight-card.is-visible,
.motion-ready .split.is-visible,
.motion-ready .legal-card.is-visible,
.motion-ready .faq-item.is-visible {
  animation: rise-in 720ms ease-out both;
}

.motion-ready .feature-card:nth-child(2).is-visible,
.motion-ready .store-card:nth-child(2).is-visible,
.motion-ready .faq-item:nth-child(2).is-visible {
  animation-delay: 70ms;
}

.motion-ready .feature-card:nth-child(3).is-visible,
.motion-ready .store-card:nth-child(3).is-visible,
.motion-ready .faq-item:nth-child(3).is-visible {
  animation-delay: 140ms;
}

.motion-ready .feature-card:nth-child(4).is-visible,
.motion-ready .faq-item:nth-child(4).is-visible {
  animation-delay: 210ms;
}

.motion-ready .feature-card:nth-child(5).is-visible {
  animation-delay: 280ms;
}

.motion-ready .feature-card:nth-child(6).is-visible {
  animation-delay: 350ms;
}

.site-footer p {
  margin: 0.25rem 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.4rem;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes button-shine {
  0% {
    left: -65%;
  }
  100% {
    left: 125%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .hero,
  .spotlight-layout,
  .split,
  .store-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-layout,
  .store-grid,
  .feature-grid {
    gap: 1rem;
  }

  .privacy-section {
    grid-template-areas:
      "lead"
      "copy";
    gap: 1rem;
  }

  .split-lead,
  .split-copy {
    max-width: none;
    justify-self: stretch;
  }

  .privacy-section h2,
  .closing-cta-copy h2 {
    max-width: none;
  }

  .split-copy {
    font-size: 1rem;
  }
}


@media (max-width: 820px) {
  :root {
    --header-height: 7.25rem;
  }

  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav,
  .footer-links {
    justify-content: flex-start;
  }

  .time-card {
    min-height: 10.4rem;
  }

  .preview-panel,
  .streak-top,
  .streak-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .time-card {
    padding-top: 1.35rem;
  }

  .time {
    font-size: clamp(3.8rem, 18vw, 5.7rem);
  }

  .mini-grid,
  .preview-panel {
    grid-template-columns: 1fr;
  }

  .hero-pills,
  .legal-summary,
  .trust-strip {
    gap: 0.6rem;
  }
}
