/* main-site-2 — TDM-adjacent layout (dark agency) + pink kawaii accents. Original. */

:root {
  --void: #050308;
  --bg: #0b0610;
  --bg2: #120a18;
  --card: #160f1f;
  --line: rgba(255, 77, 141, 0.22);
  --pink: #ff4d8d;
  --pink2: #ff7eb3;
  --pink-dim: #b8326a;
  --text: #f8f4fc;
  --muted: rgba(248, 244, 252, 0.62);
  --light-bg: #f3e8ff;
  --light-ink: #1a0b22;
  --max: 1180px;
  --font: "DM Sans", system-ui, sans-serif;
  --font-display: "Fredoka", "DM Sans", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--void);
}

img {
  max-width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  color: var(--pink-dim);
  padding: 10px 14px;
  font-weight: 700;
  border-radius: 8px;
  z-index: 2000;
}
.skip:focus {
  left: 10px;
}

.container {
  width: min(100% - 36px, var(--max));
  margin-inline: auto;
}

/* Top bar — dark sticky like TDM */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 3, 8, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.topbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.topbar__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 184, 107, 0.2), rgba(231, 111, 81, 0.12));
  border: 1px solid rgba(244, 162, 97, 0.45);
  box-shadow: 0 0 28px rgba(244, 162, 97, 0.35), 0 4px 14px rgba(0, 0, 0, 0.35);
}

.topbar__cat {
  display: block;
  width: 40px;
  height: 40px;
  transform-origin: 50% 80%;
  animation: logo-bob 5.5s ease-in-out infinite;
}

.topbar__logo-text {
  font-family: var(--font-display);
}

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 8px 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topbar__nav a:not(.btn) {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.topbar__nav a:not(.btn):hover {
  color: #fff;
}

.topbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: var(--card);
  cursor: pointer;
}
.topbar__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font);
  transition:
    transform 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out),
    background 0.22s var(--ease-out),
    border-color 0.22s var(--ease-out),
    filter 0.22s var(--ease-out),
    color 0.22s var(--ease-out);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn--hero {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn--light {
  background: #fff;
  color: #1a0b22;
  border-color: #fff;
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.12);
}
.btn--light:hover {
  box-shadow: 0 12px 40px rgba(255, 77, 141, 0.35);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--outline:hover {
  border-color: var(--pink2);
  color: var(--pink2);
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--pink {
  background: linear-gradient(135deg, var(--pink2), var(--pink));
  color: #fff;
  border: none;
  box-shadow: 0 10px 36px rgba(255, 77, 141, 0.45);
}
.btn--pink:hover {
  filter: brightness(1.05);
}

.btn--dark {
  background: var(--void);
  color: #fff;
  border-color: rgba(0, 0, 0, 0.35);
}

/* Hero dark full-bleed */
.hero-dark {
  position: relative;
  padding: clamp(36px, 6vw, 72px) 0 clamp(64px, 12vw, 120px);
  text-align: center;
  overflow: hidden;
}

.hero-dark__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(255, 77, 141, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 40%, rgba(183, 89, 255, 0.18), transparent 50%),
    linear-gradient(180deg, #0e0614 0%, var(--void) 55%);
  pointer-events: none;
  overflow: hidden;
}

.hero-dark__bg::after {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    radial-gradient(ellipse 65% 55% at 78% 32%, rgba(183, 89, 255, 0.28), transparent 58%),
    radial-gradient(ellipse 50% 45% at 18% 72%, rgba(255, 77, 141, 0.16), transparent 55%);
  opacity: 0.75;
  mix-blend-mode: screen;
  animation: hero-aurora 17s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-dark__inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.hero-dark__kicker {
  margin: 0 0 16px;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 600;
  color: var(--pink2);
  letter-spacing: 0.01em;
}

.hero-dark__title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-dark__lead {
  margin: 0 auto 32px;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-dark__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Press row — light band + grayscale fake logos */
.press-row {
  background: #e8dff5;
  color: var(--light-ink);
  padding: 36px 0 44px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.press-row__title {
  margin: 0 0 22px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
}

.press-row__logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
}

.fake-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 52px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b5a7a;
  filter: grayscale(1);
}

/* Generic bands */
.band {
  padding: clamp(56px, 8vw, 96px) 0;
}

.band--dark {
  background: linear-gradient(180deg, var(--bg) 0%, #08050c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.band--light {
  background: var(--light-bg);
  color: var(--light-ink);
}

.band__h2 {
  margin: 0 0 14px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 700;
}

.band__sub {
  margin: 0 auto 40px;
  max-width: 640px;
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
}

.band--light .band__sub {
  color: rgba(26, 11, 34, 0.7);
}

/* Compare two-column */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.compare-card {
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out);
}
.compare-card:hover {
  transform: translateY(-4px);
}
.compare-card--bad:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}
.compare-card--good:hover {
  border-color: rgba(255, 158, 198, 0.55);
  box-shadow: 0 22px 64px rgba(255, 77, 141, 0.22);
}

.compare-card--bad {
  background: rgba(255, 255, 255, 0.03);
}

.compare-card--good {
  background: linear-gradient(160deg, rgba(255, 77, 141, 0.18), rgba(22, 15, 31, 0.95));
  box-shadow: 0 20px 60px rgba(255, 77, 141, 0.15);
  border-color: rgba(255, 126, 179, 0.45);
}

.compare-card__label {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.compare-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.98rem;
}

.compare-card--good .compare-card__list li {
  color: rgba(255, 248, 252, 0.88);
}

.ico {
  flex: 0 0 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 2px;
}
.ico--bad {
  background: repeating-linear-gradient(-45deg, #7f1d1d, #7f1d1d 3px, #991b1b 3px, #991b1b 6px);
  box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.35);
}
.ico--good {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.35);
}

/* Zigzag section */
.band--zigzag {
  background: #0d0814;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.zigzag__title {
  margin: 0 0 10px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
}

.zigzag__sub {
  margin: 0 0 48px;
  text-align: center;
  color: var(--muted);
}

.zigzag__track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.zigzag-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.32s var(--ease-out),
    border-color 0.32s var(--ease-out),
    box-shadow 0.32s var(--ease-out),
    background 0.32s var(--ease-out);
}
.zigzag-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 126, 179, 0.28);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 77, 141, 0.08);
}

.zigzag-card__n {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink2), var(--pink));
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 8px 28px rgba(255, 77, 141, 0.35);
}

.zigzag-card__body h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.2;
}

.zigzag-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.zigzag__arrows {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.arrow-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.28s var(--ease-spring),
    border-color 0.22s var(--ease-out),
    color 0.22s var(--ease-out),
    background 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out);
}
.arrow-btn:hover {
  border-color: var(--pink2);
  color: var(--pink2);
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(255, 77, 141, 0.2);
}
.arrow-btn:active {
  transform: scale(0.96);
}

.zigzag__cta {
  text-align: center;
  margin-top: 32px;
}

/* Services */
.band--services {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 77, 141, 0.12), transparent 60%), var(--bg2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.services-head {
  margin: 0 0 40px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.svc {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px 16px;
  min-height: 100%;
  transition:
    transform 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    background 0.3s var(--ease-out);
}
.svc:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 126, 179, 0.22);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.svc__icon {
  font-size: 1.4rem;
  margin-bottom: 10px;
  opacity: 0.9;
}

.svc h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
}

.svc p {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.svc__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pink2);
  text-decoration: none;
}
.svc__link:hover {
  text-decoration: underline;
}

/* How */
.how {
  text-align: center;
}

.how__eyebrow {
  margin: 0 0 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--pink-dim);
}

.how__title {
  margin: 0 0 40px;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}

.how-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 16px 40px rgba(107, 90, 122, 0.12);
}

.how-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffe4f0, #ffc8e6);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--pink-dim);
  margin-bottom: 14px;
}

.how-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.how-card p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(26, 11, 34, 0.72);
}

/* Weekly pay band (replaces calculator) */
.band--weekly {
  background: linear-gradient(180deg, #0a0610 0%, #120818 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.weekly {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.weekly__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.weekly__bullets {
  margin: 0;
  padding: 0 0 0 1.1em;
  color: var(--muted);
  font-size: 1.02rem;
}
.weekly__bullets li {
  margin-bottom: 14px;
}
.weekly__bullets li:last-child {
  margin-bottom: 0;
}

.weekly__panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.weekly__panel-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--pink2);
}

.weekly__p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}
.weekly__p:last-of-type {
  margin-bottom: 0;
}

.weekly__cta {
  margin-top: 22px;
}

.weekly__fine {
  margin: 14px 0 0;
  font-size: 0.75rem;
  color: rgba(248, 244, 252, 0.45);
  line-height: 1.45;
}

/* Proof screenshots */
.band--proof {
  background: linear-gradient(180deg, #0f0818 0%, #0b0610 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.proof__title {
  margin: 0 0 12px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
}

.proof__sub {
  margin: 0 auto 32px;
  max-width: 720px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.proof-card {
  margin: 0;
}

.proof-card__link {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  line-height: 0;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.28s var(--ease-out),
    border-color 0.28s var(--ease-out);
}
.proof-card__link:hover {
  border-color: rgba(255, 126, 179, 0.55);
  box-shadow: 0 20px 56px rgba(255, 77, 141, 0.2);
  transform: translateY(-4px);
}

.proof-card__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.proof-card__cap {
  margin: 10px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
  text-align: center;
}

/* Meet grid */
.meet__title {
  margin: 0 0 10px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
}

.meet__sub {
  margin: 0 0 28px;
  text-align: center;
  color: var(--muted);
}

.meet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.meet-role {
  padding: 20px 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    background 0.3s var(--ease-out);
}
.meet-role:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 126, 179, 0.35);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.meet-role__glyph {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 10px;
  opacity: 0.95;
}

.meet-role__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.meet-role__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.meet__cta {
  text-align: center;
  margin-top: 32px;
}

/* Testimonials */
.band--testi {
  background: #efe6f8;
  color: var(--light-ink);
}

.testi__h2 {
  margin: 0 0 28px;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.testi__case {
  max-width: 720px;
  margin: 0 auto 24px;
  padding: 24px 22px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.testi__case-title {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.testi__case-text {
  margin: 0 0 10px;
  color: rgba(26, 11, 34, 0.75);
  font-size: 0.98rem;
}

.testi__case-meta {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pink-dim);
}

.testi__tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.testi__tab {
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
}
.testi__tab.is-active {
  border-color: var(--pink);
  color: var(--pink-dim);
  box-shadow: 0 6px 20px rgba(255, 77, 141, 0.2);
}

.testi__quote {
  margin: 0 auto;
  max-width: 720px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  line-height: 1.55;
  text-align: center;
  color: rgba(26, 11, 34, 0.88);
}

/* Stats donuts */
.band--stats {
  background: var(--void);
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px 8px;
}

.stat-wrap {
  text-align: center;
  padding-bottom: 8px;
}

.stat-donut {
  --p: 0;
  aspect-ratio: 1;
  max-width: 120px;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(var(--pink) calc(var(--p) * 3.6deg), rgba(255, 255, 255, 0.08) 0);
  display: grid;
  place-items: center;
  position: relative;
}
.stat-donut::after {
  content: attr(data-donut) "%";
  position: relative;
  z-index: 1;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background: var(--bg2);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  color: #fff;
}

.stat-donut__lbl {
  display: block;
  margin-top: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1.25;
}

/* Refer */
.band--refer {
  background: linear-gradient(135deg, #ff7eb3, #ff4d8d);
  color: #1a0b22;
  text-align: center;
}

.refer h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.refer p {
  margin: 0 auto 22px;
  max-width: 520px;
  font-weight: 600;
}

/* Blog */
.band--blog {
  background: #f8f4fc;
  color: var(--light-ink);
}

.blog-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.blog-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.blog-head__all {
  font-weight: 700;
  color: var(--pink-dim);
  text-decoration: none;
}
.blog-head__all:hover {
  text-decoration: underline;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 24px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out);
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 77, 141, 0.18);
  box-shadow: 0 16px 40px rgba(26, 11, 34, 0.1);
}

.blog-card__ph {
  height: 140px;
  background: linear-gradient(120deg, #ffe4f0, #e9d5ff);
}

.blog-card h3 {
  margin: 14px 16px 6px;
  font-size: 1rem;
}

.blog-card p {
  margin: 0 16px 16px;
  font-size: 0.88rem;
  color: rgba(26, 11, 34, 0.65);
}

/* FAQ */
.faq-mini h2 {
  margin: 0 0 20px;
  font-family: var(--font-display);
}

.faq-mini details {
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-mini summary {
  font-weight: 700;
  cursor: pointer;
}

.faq-mini p {
  margin: 10px 0 0;
  color: rgba(26, 11, 34, 0.75);
}

/* Apply */
.apply-block {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.apply-block h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
}

.apply-block p {
  margin: 0 0 22px;
  color: var(--muted);
}

.apply-block__or {
  margin: 18px 0 0;
  font-size: 0.95rem;
}

.apply-block__mailto {
  color: var(--pink2);
  font-weight: 700;
  text-decoration: none;
}
.apply-block__mailto:hover {
  text-decoration: underline;
}

.apply-block__or-note {
  color: var(--muted);
  font-weight: 500;
}

.apply-block__fine {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Apply popup (short form) */
.apply-pop {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.apply-pop.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.apply-pop__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 1, 6, 0.72);
  backdrop-filter: blur(6px);
}

.apply-pop__dialog {
  position: relative;
  width: min(100%, 440px);
  max-height: min(92vh, 720px);
  overflow: auto;
  border-radius: 20px;
  padding: 28px 24px 24px;
  background: linear-gradient(165deg, #1a0f24 0%, #120818 100%);
  border: 1px solid rgba(255, 77, 141, 0.35);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transform: scale(0.94) translateY(22px);
  opacity: 0;
  transition:
    transform 0.42s var(--ease-spring),
    opacity 0.32s var(--ease-out);
}
.apply-pop.is-open .apply-pop__dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.apply-pop__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.apply-pop__close:hover {
  background: rgba(255, 77, 141, 0.35);
}

.apply-pop__head {
  margin-bottom: 20px;
  padding-right: 36px;
}

.apply-pop__kicker {
  margin: 0 0 6px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink2);
}

.apply-pop__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
}

.apply-pop__meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.apply-pop__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.apply-pop__field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.88);
}

.apply-pop__field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
}
.apply-pop__field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.apply-pop__field input:focus {
  outline: 2px solid rgba(255, 126, 179, 0.65);
  outline-offset: 2px;
  border-color: rgba(255, 126, 179, 0.45);
}

.apply-pop__hint {
  margin: 6px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.apply-pop__honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.apply-pop__submit {
  width: 100%;
  margin-top: 6px;
  padding: 14px 20px;
}

.apply-pop__fine {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}

#lang-gate-modal {
  z-index: 620;
}

#signup-nudge-modal {
  z-index: 610;
}

#apply-modal {
  z-index: 600;
}

.apply-pop__dialog--gate {
  width: min(100%, 400px);
}

.apply-pop__head--center {
  text-align: center;
  padding-right: 0;
}

.lang-gate__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lang-gate__btn {
  width: 100%;
  justify-content: center;
}

.apply-pop__dialog--nudge {
  width: min(100%, 420px);
  padding-bottom: 22px;
}

.signup-nudge__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.signup-nudge__primary,
.signup-nudge__secondary {
  width: 100%;
  justify-content: center;
}

body.is-modal-open {
  overflow: hidden;
}

/* Footer */
.foot {
  background: #020105;
  padding: 48px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.foot__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}

.foot__brand {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.foot__tag {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.foot__h {
  margin: 0 0 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pink2);
}

.foot ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.foot a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.foot a:hover {
  color: var(--pink2);
}

.foot li {
  margin-bottom: 8px;
}

.foot__social {
  display: flex;
  gap: 12px;
}

.foot__copy {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 48px;
  }
}

@media (max-width: 860px) {
  .topbar__burger {
    display: flex;
  }
  .topbar__nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 62px;
    z-index: 99;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 20px 22px;
    background: rgba(5, 3, 8, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  }
  .topbar__nav.is-open {
    display: flex;
  }
  .topbar__apply {
    text-align: center;
    margin-top: 8px;
  }
  .compare-grid {
    grid-template-columns: 1fr;
  }
  .zigzag__track {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .weekly {
    grid-template-columns: 1fr;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .meet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .how__grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .foot__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .foot__grid {
    grid-template-columns: 1fr;
  }
}

/* Scroll reveal (IntersectionObserver + hero stagger in script.js) */
@keyframes hero-aurora {
  0% {
    opacity: 0.52;
    transform: scale(1) translate(0, 0);
  }
  100% {
    opacity: 0.94;
    transform: scale(1.06) translate(-2.5%, 2.5%);
  }
}

@keyframes logo-bob {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  40% {
    transform: translateY(-2.5px) rotate(-1.8deg);
  }
  65% {
    transform: translateY(-1px) rotate(1.2deg);
  }
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition:
    opacity 0.72s var(--ease-out),
    transform 0.78s var(--ease-out);
}

.reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.press-row__logos li.reveal:nth-child(1) {
  transition-delay: 0.02s;
}
.press-row__logos li.reveal:nth-child(2) {
  transition-delay: 0.06s;
}
.press-row__logos li.reveal:nth-child(3) {
  transition-delay: 0.1s;
}
.press-row__logos li.reveal:nth-child(4) {
  transition-delay: 0.14s;
}
.press-row__logos li.reveal:nth-child(5) {
  transition-delay: 0.18s;
}
.press-row__logos li.reveal:nth-child(6) {
  transition-delay: 0.22s;
}
.press-row__logos li.reveal:nth-child(7) {
  transition-delay: 0.26s;
}
.press-row__logos li.reveal:nth-child(8) {
  transition-delay: 0.3s;
}

.zigzag__track .zigzag-card.reveal:nth-child(1) {
  transition-delay: 0.04s;
}
.zigzag__track .zigzag-card.reveal:nth-child(2) {
  transition-delay: 0.1s;
}
.zigzag__track .zigzag-card.reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.zigzag__track .zigzag-card.reveal:nth-child(4) {
  transition-delay: 0.22s;
}

.services-grid .svc.reveal:nth-child(1) {
  transition-delay: 0.02s;
}
.services-grid .svc.reveal:nth-child(2) {
  transition-delay: 0.06s;
}
.services-grid .svc.reveal:nth-child(3) {
  transition-delay: 0.1s;
}
.services-grid .svc.reveal:nth-child(4) {
  transition-delay: 0.14s;
}
.services-grid .svc.reveal:nth-child(5) {
  transition-delay: 0.18s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-dark__bg::after {
    animation: none !important;
    opacity: 0.78;
    transform: none;
  }

  .topbar__cat {
    animation: none !important;
  }

  .reveal,
  .reveal.is-revealed {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .apply-pop__dialog {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  .btn:hover,
  .btn:active {
    transform: none;
  }

  .arrow-btn:hover,
  .arrow-btn:active {
    transform: none;
  }

  .zigzag-card:hover,
  .svc:hover,
  .compare-card:hover,
  .meet-role:hover,
  .blog-card:hover,
  .proof-card__link:hover {
    transform: none;
  }
}
