/* ---------- Tokens ---------- */
:root {
  --cream: #FFFDF9;
  --cream-2: #F9F5F1;
  --ink: #0C0C22;
  --ink-soft: rgba(12, 12, 34, 0.6);
  --ink-line: rgba(12, 12, 34, 0.08);
  --pink: #FFA8FF;
  --pink-strong: #FF7CE5;
  --lilac: #D6C0FF;
  --r-pill: 999px;
  --r-card: 32px;
  --r-md: 22px;
  --shadow-card: 0 30px 80px -25px rgba(12, 12, 34, 0.45);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-script: "Caveat", cursive;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
ul { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; padding: 0; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3 { margin: 0; }

/* ---------- Reusable ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 500;
  text-transform: uppercase;
}
.eyebrow-pill {
  background: rgba(12,12,34,0.05);
  padding: 8px 14px;
  border-radius: var(--r-pill);
}
.eyebrow-on-dark {
  background: rgba(255,253,249,0.08);
  border: 1px solid rgba(255,253,249,0.18);
  color: var(--cream);
  backdrop-filter: blur(8px);
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  display: inline-block; background: var(--pink-strong);
}
.dot-pink { background: var(--pink-strong); box-shadow: 0 0 10px var(--pink-strong); }

.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 26px;
  border-radius: var(--r-pill);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform .18s ease;
}
.cta:hover { transform: translateY(-1px); }
.cta-dark { background: var(--ink); color: var(--cream); }
.cta-light { background: var(--cream); color: var(--ink); }
.cta-arrow {
  width: 28px; height: 28px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,253,249,0.14);
  font-size: 14px;
  line-height: 1;
}
.cta-light .cta-arrow { background: rgba(12,12,34,0.07); }

/* ---------- Top nav ---------- */
.nav {
  position: fixed;
  top: 16px; right: 16px; left: 16px;
  z-index: 60;
  display: flex; justify-content: space-between; align-items: center;
  pointer-events: none;
}
.nav > * { pointer-events: auto; }
.nav-brand img { height: 30px; width: auto; }
.nav-brand {
  background: rgba(255,253,249,0.7);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(12,12,34,0.06);
}
.nav-menu-btn {
  width: 44px; height: 44px;
  background: var(--ink); color: var(--cream);
  border-radius: 50%;
  position: relative;
}
.nav-menu-btn span {
  position: absolute; left: 14px;
  width: 16px; height: 1.5px;
  background: var(--cream);
}
.nav-menu-btn span:nth-child(1) { top: 18px; }
.nav-menu-btn span:nth-child(2) { top: 25px; }

/* ---------- Overlay menu ---------- */
.overlay {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 70;
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.overlay.open { opacity: 1; pointer-events: auto; }
.overlay-list {
  display: grid; gap: 18px; text-align: center;
}
.overlay-list a {
  font-family: var(--font);
  font-size: clamp(40px, 8vw, 84px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.overlay-list a:hover { color: var(--pink-strong); }
.overlay-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: var(--ink); color: var(--cream);
  border-radius: 50%; font-size: 22px;
}
.overlay-foot {
  position: absolute;
  bottom: 56px;
  display: flex; align-items: center; gap: 14px;
}
.overlay-mark img { width: 28px; height: 28px; }

/* ---------- Hero / Header ---------- */
.header-section {
  padding: 76px 12px 0;
}
.header-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 980px) {
  .header-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
    min-height: 620px;
  }
}

.header-card {
  border-radius: var(--r-card);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.header-card-left {
  background:
    radial-gradient(90% 70% at 30% 20%, rgba(255,255,255,0.25), transparent 65%),
    linear-gradient(160deg, #FFB8FF 0%, #FFA8FF 60%, #F096F0 100%);
  display: grid;
  align-content: center;
  gap: 22px;
  text-align: center;
  padding: 64px 24px;
  min-height: 360px;
}
@media (min-width: 980px) {
  .header-card-left { text-align: left; padding: 64px 56px; gap: 26px; }
}
.header-badge {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(12,12,34,0.08);
  color: var(--ink);
  margin: 0 auto;
}
@media (min-width: 980px) {
  .header-badge { margin: 0; }
}
.header-headline {
  font-size: clamp(44px, 7.6vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: var(--ink);
  display: flex; flex-direction: column; gap: 0;
}
.header-headline-top { display: block; }
.header-rotator {
  display: inline-block;
  position: relative;
  height: 1em;
}
.rot-spacer { visibility: hidden; display: inline-block; }
.rot-word {
  position: absolute; left: 0; top: 0;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .35s ease, transform .45s cubic-bezier(.4,.2,.2,1);
}
.rot-word.is-active { opacity: 1; transform: none; }
.rot-word.is-leaving { opacity: 0; transform: translateY(-28px); }
.header-sub {
  color: var(--ink);
  opacity: 0.75;
  max-width: 460px;
  font-size: clamp(15px, 1.4vw, 17px);
  margin: 0 auto;
}
@media (min-width: 980px) { .header-sub { margin: 0; } }

.header-card-right {
  padding: 0;
  background: #1c1c2e;
  min-height: 70vh;
  max-height: 760px;
  aspect-ratio: 4/5;
}
@media (min-width: 980px) { .header-card-right { aspect-ratio: auto; } }

.header-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.header-stat {
  position: absolute;
  background: rgba(255,253,249,0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.header-stat-top { top: 18px; right: 18px; }
.header-stat-top .stat-value { font-weight: 600; }
.header-stat-top .stat-label { color: var(--ink-soft); }
.header-stat-bottom {
  bottom: 18px; left: 18px;
  background: var(--ink);
  color: var(--cream);
}

/* ---------- Social proof marquee ---------- */
.social-proof {
  margin: 24px 0 6px;
  padding: 6px 0;
}
.sp-marquee { overflow: hidden; }
.sp-track {
  display: inline-flex; gap: 32px; align-items: center;
  white-space: nowrap;
  animation: scroll 50s linear infinite;
  padding: 18px 0;
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.sp-item { color: var(--ink); }
.sp-sep { color: var(--pink-strong); font-size: 14px; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- EMPATHY (sound familiar) ---------- */
.mission-empathy {
  margin: 12px;
  border-radius: var(--r-card);
  background: linear-gradient(180deg, #0C0C22 0%, #14102B 100%);
  color: var(--cream);
  padding: clamp(56px, 9vw, 110px) 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.empathy-glow {
  position: absolute;
  width: 70%; height: 80%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,124,229,0.45), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  top: -10%; right: -10%;
}
.empathy-glow-2 {
  top: auto; right: auto;
  bottom: -20%; left: -10%;
  background: radial-gradient(closest-side, rgba(214,192,255,0.35), transparent 70%);
}
.empathy-inner { position: relative; max-width: 760px; margin: 0 auto; display: grid; gap: 28px; justify-items: center; }
.empathy-title {
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0;
}
.empathy-title .muted-line {
  display: block;
  color: rgba(255,253,249,0.55);
}
.empathy-inner .eyebrow {
  background: rgba(255,253,249,0.08);
  border: 1px solid rgba(255,253,249,0.16);
  color: var(--cream);
  padding: 8px 14px;
}

/* ---------- FEATURES (From forgetting…) ---------- */
.features {
  padding: clamp(72px, 10vw, 140px) 12px 60px;
}
.features-inner {
  max-width: 1180px; margin: 0 auto;
}
.features-title {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 0 0 36px;
}
.features-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 980px) {
  .features-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
    align-items: stretch;
  }
}

.features-visual {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #1c1c2e;
}
@media (min-width: 980px) {
  .features-visual { aspect-ratio: auto; min-height: 100%; }
}
.features-visual-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .55s ease, transform .9s ease;
}
.features-visual-img.is-active { opacity: 1; transform: scale(1); }

.pills-list {
  display: grid; gap: 10px;
  align-content: start;
}
.pill-item {
  background: var(--cream);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-pill);
  overflow: hidden;
  transition: background .25s ease, border-color .25s ease, border-radius .25s ease;
}
.pill-item.is-open {
  background: var(--ink);
  border-color: transparent;
  border-radius: var(--r-md);
}
.pill-button {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  transition: color .25s ease;
}
.pill-item.is-open .pill-button { color: var(--cream); }
.pill-icon {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: rgba(12,12,34,0.04);
  transition: background .25s ease;
}
.pill-item.is-open .pill-icon { background: rgba(255,253,249,0.08); }
.pill-toggle {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(12,12,34,0.05);
  font-size: 18px;
  line-height: 1;
  color: var(--ink);
  transition: transform .3s ease, background .25s ease, color .25s ease;
}
.pill-item.is-open .pill-toggle {
  transform: rotate(45deg);
  background: rgba(255,253,249,0.12);
  color: var(--cream);
}
.pill-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.pill-content > p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
  color: var(--cream);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.pill-item.is-open .pill-content { grid-template-rows: 1fr; }
.pill-item.is-open .pill-content > p { padding: 4px 22px 22px; }

/* ---------- Values marquee ---------- */
.marquee-strip {
  margin: 8px 0;
  padding: 14px 0;
  border-block: 1px solid var(--ink-line);
  overflow: hidden;
}
.ms-track {
  display: inline-flex; gap: 28px; align-items: center;
  white-space: nowrap;
  animation: scroll 60s linear infinite;
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.ms-item { color: var(--ink); }
.ms-sep { color: var(--pink-strong); font-size: 14px; }

/* ---------- Testimonials ---------- */
.testimonials {
  margin: 24px 12px;
  border-radius: var(--r-card);
  padding: clamp(64px, 10vw, 120px) 24px;
  background:
    radial-gradient(60% 70% at 0% 50%, rgba(255,168,255,0.45), transparent 65%),
    radial-gradient(50% 70% at 100% 60%, rgba(214,192,255,0.4), transparent 65%),
    var(--cream);
  position: relative;
  overflow: hidden;
}
.t-glow {
  position: absolute;
  width: 60%; height: 80%;
  border-radius: 50%;
  filter: blur(40px);
  background: rgba(255,168,255,0.4);
  pointer-events: none;
  left: -10%; top: -10%;
}
.t-glow-alt { left: auto; right: -10%; top: auto; bottom: -10%; background: rgba(214,192,255,0.4); }

.t-stage {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 28px;
  justify-items: center;
}
.t-eyebrow {
  background: rgba(12,12,34,0.06);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  letter-spacing: 0.16em;
}
.t-slides {
  position: relative;
  width: 100%;
  min-height: 200px;
}
.t-slide {
  position: absolute; inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s ease, transform .55s ease;
  pointer-events: none;
  display: grid;
  gap: 24px;
  justify-items: center;
}
.t-slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.t-quote {
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.018em;
  margin: 0;
  max-width: 680px;
}
.t-tag {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--cream);
  padding: 6px 16px 6px 6px;
  border-radius: var(--r-pill);
  border: 1px solid var(--ink-line);
}
.t-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--lilac));
}
.t-avatar-2 { background: linear-gradient(135deg, #ffd2a3, #ff9b7a); }
.t-avatar-3 { background: linear-gradient(135deg, #b1f0d8, #6ec4a8); }
.t-avatar-4 { background: linear-gradient(135deg, #ffd66b, #ff9b6b); }
.t-avatar-5 { background: linear-gradient(135deg, #c1c8ff, #6e80c8); }
.t-avatar-6 { background: linear-gradient(135deg, #ffadc7, #d29bff); }
.t-avatar-7 { background: linear-gradient(135deg, #c8f3a8, #79c97e); }
.t-avatar-8 { background: linear-gradient(135deg, #a8d4ff, #6c93ff); }
.t-tag-text { display: flex; flex-direction: column; text-align: left; line-height: 1.15; }
.t-tag-text strong { font-weight: 600; font-size: 14px; }
.t-tag-text span { font-size: 12px; color: var(--ink-soft); }

.t-controls {
  display: flex; align-items: center; gap: 16px;
}
.t-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--ink-line);
  display: grid; place-items: center;
  color: var(--ink);
}
.t-arrow:hover { background: #fff; }
.t-dots { display: inline-flex; gap: 6px; }
.t-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(12,12,34,0.18);
  transition: background .2s ease, width .25s ease;
}
.t-dots button.is-active { background: var(--ink); width: 22px; border-radius: 4px; }

/* ---------- Feature carousel (What attent does) ---------- */
.fc-section {
  margin: 12px;
  border-radius: var(--r-card);
  background:
    radial-gradient(50% 60% at 100% 0%, rgba(122, 60, 200, 0.28), transparent 65%),
    radial-gradient(60% 80% at 0% 100%, rgba(255, 124, 229, 0.18), transparent 65%),
    linear-gradient(180deg, #0c0c22 0%, #15102e 100%);
  color: var(--cream);
  padding: clamp(64px, 9vw, 120px) 24px;
  overflow: hidden;
  position: relative;
}
.fc-heading { max-width: 720px; margin: 0 auto 56px; text-align: center; display: grid; gap: 20px; justify-items: center; }
.fc-title {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 500;
}
.fc-sub {
  color: rgba(255,253,249,0.72);
  font-size: clamp(15px, 1.4vw, 17px);
  max-width: 560px;
}

.fc-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 980px) {
  .fc-shell { grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
}

.fc-left {
  position: relative;
  height: 320px;
  overflow: hidden;
}
@media (min-width: 980px) { .fc-left { height: 460px; } }
.fc-fade {
  position: absolute; inset: 0 0 auto 0;
  height: 80px; pointer-events: none; z-index: 2;
  background: linear-gradient(180deg, #0e0d22, transparent);
}
.fc-fade-bottom {
  inset: auto 0 0 0;
  background: linear-gradient(0deg, #0e0d22, transparent);
}
.fc-chip-stage {
  position: relative;
  display: grid;
  align-content: center;
  height: 100%;
  gap: 14px;
}
.fc-chip {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,253,249,0.16);
  color: rgba(255,253,249,0.55);
  font-weight: 500;
  font-size: 16px;
  width: fit-content;
  transition: opacity .35s ease, transform .35s ease, color .35s ease, background .35s ease, border-color .35s ease;
}
.fc-chip.is-active {
  background: rgba(255,253,249,0.06);
  color: var(--cream);
  border-color: rgba(255,253,249,0.28);
  transform: translateX(8px);
}

.fc-right {
  height: 460px;
  position: relative;
}
@media (max-width: 979px) { .fc-right { height: 480px; } }
.fc-card-stage { position: relative; width: 100%; height: 100%; }
.fc-card {
  position: absolute; inset: 0;
  border-radius: 28px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 22px;
  color: var(--cream);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity .55s ease, transform .65s cubic-bezier(.4,.2,.2,1);
}
.fc-card.is-active { opacity: 1; transform: none; }
.fc-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(12,12,34,0.9), rgba(12,12,34,0.4) 50%, transparent 100%);
}
.fc-card > * { position: relative; }
.fc-tag {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  background: linear-gradient(120deg, rgba(255,124,229,0.45), rgba(214,192,255,0.45));
  border: 1px solid rgba(255,253,249,0.25);
  border-radius: var(--r-pill);
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 500;
  text-transform: uppercase;
}
.fc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cream); }
.fc-card-bottom {
  display: grid; gap: 14px; max-width: 360px;
}
.fc-card-tag {
  display: inline-flex; width: fit-content;
  background: linear-gradient(120deg, rgba(255,124,229,0.55), rgba(214,192,255,0.55));
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 500;
  text-transform: uppercase;
}
.fc-card p {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.35;
  font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq {
  padding: clamp(72px, 10vw, 140px) 12px;
  position: relative;
  overflow: hidden;
}
.faq::before {
  content: "";
  position: absolute;
  top: 80px; right: -10%;
  width: 60%; height: 60%;
  background: radial-gradient(closest-side, rgba(255,168,255,0.18), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.faq-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  display: grid;
  gap: 18px;
  justify-items: start;
}
.faq-title {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin-top: 6px;
}
.faq-sub { color: var(--ink); opacity: 0.8; }
.faq-sub a { text-decoration: underline; text-underline-offset: 3px; }
.faq-list {
  margin-top: 36px;
  width: 100%;
  display: grid; gap: 10px;
}
.faq-item {
  background: var(--cream);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  text-align: left;
  font-size: 17px;
  font-weight: 500;
}
.faq-caret {
  font-size: 20px;
  opacity: .5;
  transition: transform .25s ease;
}
.faq-item.is-open .faq-caret { transform: rotate(180deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq-a > p {
  overflow: hidden;
  margin: 0;
  padding: 0 26px;
  color: var(--ink);
  opacity: 0.78;
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-item.is-open .faq-a > p { padding: 0 26px 22px; }

/* ---------- Footer (closing CTA + bottom links) ---------- */
.footer {
  margin: 12px;
  border-radius: var(--r-card);
  background: linear-gradient(180deg, #14102B 0%, #0C0C22 50%, #2C1647 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 130px) 24px 24px;
}
.footer-glow {
  position: absolute;
  width: 80%; height: 80%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,124,229,0.35), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  top: -15%; right: -15%;
}
.footer-glow-2 {
  top: auto; right: auto;
  bottom: -25%; left: -10%;
  background: radial-gradient(closest-side, rgba(124,92,255,0.35), transparent 70%);
}
.footer-cta {
  position: relative;
  text-align: center;
  display: grid; gap: 22px; justify-items: center;
  max-width: 720px;
  margin: 0 auto;
}
.footer-mark img { width: 56px; height: 56px; }
.footer-title {
  font-size: clamp(32px, 5.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 500;
}
.footer-phone {
  width: clamp(220px, 50vw, 320px);
  margin: 8px auto 6px;
}
.footer-phone img { width: 100%; height: auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5)); }
.footer-sub { color: rgba(255,253,249,0.75); max-width: 540px; margin: 0 auto; }
.footer-disclaimer { font-size: 13px; color: rgba(255,253,249,0.5); margin: 0; }

.footer-wordmark {
  position: relative;
  margin-top: 60px;
  text-align: center;
}
.footer-wordmark img {
  display: inline-block;
  width: clamp(280px, 90%, 920px);
  height: auto;
  margin: 0 auto;
}

.footer-links {
  position: relative;
  margin-top: 48px;
  max-width: 1180px;
  margin-inline: auto;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
@media (min-width: 720px) {
  .footer-cols { grid-template-columns: repeat(2, 220px); justify-content: start; }
}
.footer-col-head {
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: rgba(255,253,249,0.55);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.footer-links ul { display: grid; gap: 10px; }
.footer-links a:hover { color: var(--pink-strong); }
.footer-meta {
  border-top: 1px solid rgba(255,253,249,0.1);
  padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  font-size: 12px; color: rgba(255,253,249,0.55);
  letter-spacing: 0.06em;
}
.footer-dot { color: rgba(255,253,249,0.4); font-size: 8px; }
.footer-cookies { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Reveal (lightweight) ---------- */
.reveal { opacity: 1; }
