:root {
  --bg: #fff8eb;
  --bg-alt: #f4efe3;
  --ink: #20244d;
  --muted: #5f678f;
  --line: rgba(32, 36, 77, 0.12);
  --blue: #5d74bf;
  --blue-deep: #314184;
  --orange: #ffb01c;
  --pink: #ff4ba3;
  --mint: #55d6c1;
  --card: rgba(255, 255, 255, 0.72);
  --card-strong: rgba(255, 255, 255, 0.9);
  --shadow: 0 24px 70px rgba(43, 52, 107, 0.17);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 176, 28, 0.28), transparent 30%),
    radial-gradient(circle at top right, rgba(93, 116, 191, 0.25), transparent 35%),
    linear-gradient(180deg, #f7f0df 0%, #fff8eb 35%, #f0f5ff 100%);
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.page-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding-bottom: 48px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 251, 241, 0.8);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 40px rgba(50, 65, 132, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(49, 65, 132, 0.22);
}

.brand span {
  display: grid;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand em {
  color: var(--muted);
  font-size: 0.88rem;
  font-style: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(93, 116, 191, 0.12);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(93, 116, 191, 0.12);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  padding: 72px 0 44px;
}

.hero-copy h1,
.section-heading h2,
.band-copy h2,
.legal-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.7rem);
  max-width: 11ch;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lede {
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 60ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.hero-contact {
  margin: -4px 0 22px;
  color: var(--muted);
  font-weight: 600;
}

.hero-contact a,
.legal-content a,
.support-card a,
.footer-contact a {
  color: var(--blue-deep);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fffef9;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  box-shadow: 0 16px 28px rgba(49, 65, 132, 0.25);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(49, 65, 132, 0.12);
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 0 0 4px rgba(255, 176, 28, 0.16);
}

.hero-art {
  position: relative;
}

.phone-frame {
  position: relative;
  max-width: 520px;
  margin-left: auto;
  padding: 18px;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(232, 238, 255, 0.82)),
    linear-gradient(135deg, rgba(255, 176, 28, 0.24), rgba(93, 116, 191, 0.24));
  box-shadow: var(--shadow);
}

.phone-glow {
  position: absolute;
  inset: auto 12% -18% 12%;
  height: 34%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 116, 191, 0.3), transparent 68%);
  filter: blur(24px);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 22px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(180deg, #6a80ca 0%, #7ec5ff 100%);
}

.screen-top,
.screen-bottom {
  position: relative;
  z-index: 2;
}

.screen-top {
  display: flex;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue-deep);
  font-size: 0.85rem;
  font-weight: 800;
}

.pill-accent {
  background: rgba(255, 176, 28, 0.95);
  color: #533300;
}

.sticker-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
  margin: 22px 0 26px;
}

.vault-icon {
  width: min(74%, 320px);
  filter: drop-shadow(0 28px 45px rgba(23, 36, 96, 0.28));
}

.mini-sticker {
  position: absolute;
  width: 66px;
  height: 66px;
  border-radius: 24px;
  border: 6px solid #fffef9;
  box-shadow: 0 16px 24px rgba(37, 42, 95, 0.18);
}

.mini-sticker.star {
  top: 42px;
  left: 18px;
  background: linear-gradient(135deg, #ffd34a, #ff9f16);
  clip-path: polygon(50% 0%, 61% 36%, 98% 36%, 68% 58%, 79% 95%, 50% 72%, 21% 95%, 32% 58%, 2% 36%, 39% 36%);
}

.mini-sticker.heart {
  top: 36px;
  right: 24px;
  background: linear-gradient(135deg, #ff8bd3, #ff318b);
  clip-path: path("M33 56 C8 41 1 26 1 14 C1 4 9 -2 18 1 C24 3 28 8 33 13 C38 8 42 3 48 1 C57 -2 65 4 65 14 C65 26 58 41 33 56 Z");
}

.mini-sticker.gem {
  bottom: 52px;
  left: 38px;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #78f5e2, #25b7ef);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.metric-card,
.metric-grid > div,
.feature-card,
.band-card,
.link-card,
.support-card {
  border: 1px solid rgba(32, 36, 77, 0.1);
  border-radius: var(--radius-lg);
  background: var(--card);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 32px rgba(50, 65, 132, 0.08);
}

.metric-card {
  padding: 18px;
  margin-bottom: 14px;
}

.metric-card strong,
.metric-grid strong,
.feature-card h3,
.band-card strong,
.link-card strong,
.support-card h2 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.metric-card span,
.metric-grid span,
.feature-card p,
.band-card span,
.link-card span,
.support-card p {
  color: var(--muted);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.metric-grid > div {
  padding: 16px;
}

.section {
  padding: 56px 0;
}

.section-grid {
  display: grid;
  gap: 28px;
}

.section-heading h2,
.band-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  max-width: 11ch;
}

.feature-grid,
.link-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.link-card,
.support-card {
  padding: 22px;
}

.band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: start;
}

.band-copy,
.band-points {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(242, 246, 255, 0.74));
  border: 1px solid rgba(32, 36, 77, 0.1);
  box-shadow: var(--shadow);
}

.band-points {
  display: grid;
  gap: 14px;
}

.band-card {
  padding: 18px;
  background: var(--card-strong);
}

.link-card {
  transition: transform 180ms ease, background-color 180ms ease;
}

.link-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.9);
}

.legal-page {
  padding: 48px 0 16px;
}

.legal-hero {
  padding: 18px 0 26px;
}

.legal-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.legal-content {
  max-width: 760px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.legal-content h2,
.legal-content h3 {
  margin-top: 0;
  color: var(--blue-deep);
}

.legal-content h2:not(:first-child),
.legal-content h3 {
  margin-top: 30px;
}

.legal-content ul {
  padding-left: 18px;
}

.support-grid {
  margin-bottom: 22px;
}

.site-footer {
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 42px 0 8px;
  color: var(--muted);
}

.footer-contact {
  margin: 0;
  font-weight: 700;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-meta {
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero,
  .band {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .section-heading h2,
  .band-copy h2 {
    max-width: none;
  }

  .phone-frame {
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max));
  }

  .site-header {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 6px;
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  .hero {
    padding-top: 44px;
  }

  .phone-screen {
    min-height: 560px;
  }

  .feature-grid,
  .link-grid,
  .support-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .legal-content,
  .band-copy,
  .band-points {
    padding: 22px;
  }
}
