/* ═══════════════════════════════════════════════════
   BECKER v1 — ACTING FOR DANCERS — REDESIGN
   Premium cinematic dark-mode — purple/gold accents
   ═══════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-deep: #0A0A0C;
  --bg-surface: #111114;
  --bg-elevated: #18181C;
  --bg-hover: #1F1F24;

  --text-primary: #EDEDED;
  --text-secondary: #7A7A82;
  --text-tertiary: #3E3E45;

  --purple: hsl(260, 100%, 73%);
  --purple-dim: hsl(260, 60%, 40%);
  --purple-glow: hsl(260, 100%, 73% / 0.15);
  --purple-glow-strong: hsl(260, 100%, 73% / 0.3);
  --lavender: hsl(280, 80%, 82%);
  --gold: #D4A853;
  --gold-dim: hsl(38, 50%, 35%);
  --gold-glow: hsl(43, 70%, 55% / 0.12);

  --font-display: 'Anton', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.22, 0.68, 0, 1.04);
  --ease-cinematic: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --spring-snappy: linear(0, 0.2459, 0.6526, 0.9468, 1.0764, 1.0915, 1.0585, 1.0219, 0.9993, 0.9914, 0.9921, 0.9957, 0.9988, 1.0004, 1);
  --spring-snappy-dur: 450ms;

  --page-max: 1400px;
  --page-pad: clamp(1.5rem, 5vw, 4rem);
}

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-deep);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}
:focus:not(:focus-visible) { outline: none; }

/* ─── REVEAL ANIMATION BASE ──────────────────── */
.reveal-up {
  opacity: 1;
  transform: translateY(0);
}

.js-motion .reveal-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease,
              transform var(--spring-snappy-dur) var(--spring-snappy);
  transition-delay: var(--delay, 0s);
}

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

/* ─── LABELS ─────────────────────────────────── */
.afd-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.afd-label--purple { color: var(--purple); }
.afd-label--gold { color: var(--gold); }

/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */
.afd-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}

.afd-header.is-scrolled {
  background: hsl(240 5% 5% / 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  border-bottom: 1px solid hsl(0 0% 100% / 0.04);
}

.afd-header__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.afd-header__brand {
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-primary);
  transition: color 0.3s ease;
}
.afd-header__brand:hover { color: var(--purple); }

.afd-header__nav {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.afd-header__nav a {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.afd-header__nav a:hover { color: var(--text-primary); }

.afd-header__cta-link {
  background: linear-gradient(135deg, hsl(260, 80%, 60%) 0%, hsl(280, 70%, 50%) 100%);
  color: #fff !important;
  padding: 0.45rem 1.25rem;
  border-radius: 10px;
  font-size: 0.625rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}
.afd-header__cta-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px hsl(260, 80%, 60% / 0.3);
}

.afd-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1002;
  -webkit-tap-highlight-color: transparent;
}
.afd-header__burger span {
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ═══════════════════════════════════════════════════
   ATMOSPHERE
   ═══════════════════════════════════════════════════ */
.afd-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.afd-atmosphere__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

.afd-atmosphere__orb--1 {
  width: 600px; height: 600px;
  top: -10%; right: -5%;
  background: hsl(260, 80%, 50% / 0.08);
}

.afd-atmosphere__orb--2 {
  width: 500px; height: 500px;
  bottom: 10%; left: -8%;
  background: hsl(38, 70%, 52% / 0.06);
}

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.afd-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.afd-hero__video-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  will-change: opacity, clip-path;
}

.afd-hero__video-bg iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  transform: scale(1.15);
  pointer-events: none;
}

.afd-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    hsl(0, 0%, 0% / 0.55) 0%,
    hsl(260, 40%, 8% / 0.65) 50%,
    hsl(0, 0%, 0% / 0.8) 100%);
  z-index: 1;
}

.afd-hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at center, transparent 30%, hsl(0, 0%, 0% / 0.5) 100%);
}

.afd-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--page-pad);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform;
  transition: transform 0.18s ease;
}

.afd-hero__partnership {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: hsl(0, 0%, 100% / 0.45);
  margin-bottom: 1.5rem;
}

.afd-hero__rule {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--purple) 70%, transparent 100%);
  margin: 0 auto 2.5rem;
  opacity: 0.5;
}

.afd-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 15vw, 10.5rem);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 0.82;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow:
    0 2px 40px hsl(260, 80%, 70% / 0.2),
    0 0 80px hsl(0, 0%, 100% / 0.06);
  margin-bottom: 2rem;
}

.afd-hero__title-line {
  display: block;
  will-change: transform, opacity, filter;
  transition: transform 0.18s ease;
}

/* "FOR" set smaller and tracked wide for typographic contrast */
.afd-hero__title-line:nth-child(2) {
  font-size: 0.38em;
  letter-spacing: 0.45em;
  line-height: 2.2;
  color: var(--purple);
  text-shadow: 0 0 24px hsl(260, 80%, 70% / 0.35);
}

.afd-hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: hsl(0, 0%, 100% / 0.8);
  letter-spacing: 0.02em;
  line-height: 1.55;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.afd-hero__tagline span {
  display: block;
}

.afd-hero__tagline span:first-child {
  font-size: 1.08em;
  color: hsl(0, 0%, 100% / 0.92);
  margin-bottom: 0.2em;
}

.afd-hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
}

.afd-hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--purple) 0%, transparent 100%);
  animation: afd-scroll-pulse 2s ease-in-out infinite;
}

@keyframes afd-scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ═══════════════════════════════════════════════════
   SHARED
   ═══════════════════════════════════════════════════ */
.afd-section {
  position: relative;
  z-index: 1;
}

.afd-section__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: clamp(5rem, 10vh, 8rem) var(--page-pad);
}

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.afd-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.9rem 2.25rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  will-change: transform;
  transition: transform 0.18s ease,
              box-shadow 0.18s ease,
              background 0.3s ease;
}

.afd-btn--primary {
  background: linear-gradient(135deg, hsl(260, 80%, 60%) 0%, hsl(280, 70%, 50%) 100%);
  color: #fff;
  box-shadow: 0 6px 24px hsl(260, 80%, 60% / 0.34), 0 0 0 1px hsl(255 100% 100% / 0.04) inset;
}
.afd-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px hsl(260, 80%, 60% / 0.45);
}

.afd-btn--card {
  background: linear-gradient(135deg, hsl(260, 80%, 60%) 0%, hsl(280, 70%, 50%) 100%);
  color: #fff;
  width: 100%;
  text-align: center;
  box-shadow: 0 6px 20px hsl(260, 80%, 60% / 0.26), 0 0 0 1px hsl(255 100% 100% / 0.04) inset;
}
.afd-btn--card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px hsl(260, 80%, 60% / 0.45);
}

.afd-btn--gold {
  background: linear-gradient(135deg, #D4A853 0%, #B8892E 100%);
  color: #000;
  font-weight: 700;
  width: 100%;
  text-align: center;
  box-shadow: 0 6px 24px hsl(43, 70%, 55% / 0.34), 0 0 0 1px hsl(255 100% 100% / 0.04) inset;
}
.afd-btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px hsl(43, 70%, 55% / 0.5);
}

.afd-btn--outline {
  background: transparent;
  color: var(--purple);
  border: 1px solid hsl(260, 60%, 55% / 0.5);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-out-expo);
}
.afd-btn--outline:hover {
  background: hsl(260, 60%, 55% / 0.1);
  border-color: var(--purple);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════
   B. EMPATHY
   ═══════════════════════════════════════════════════ */
.afd-empathy {
  background: transparent;
}

.afd-empathy__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.afd-empathy__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 3rem;
}

.afd-empathy__body {
  font-family: var(--font-serif);
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  line-height: 1.9;
  color: hsl(0, 0%, 82%);
  columns: 1;
}

/* Editorial drop cap on opening paragraph */
.afd-empathy__body p:first-child::first-letter {
  font-family: var(--font-serif);
  font-size: 3.5em;
  float: left;
  line-height: 0.8;
  margin: 0.06em 0.12em 0 0;
  color: var(--purple);
  font-weight: 600;
}

.afd-empathy__body p + p {
  margin-top: 1.25rem;
}

/* Pull-quote treatment on the truth paragraph */
.afd-empathy__body p:nth-child(3) {
  font-style: italic;
  color: var(--text-primary);
  border-left: 2px solid var(--purple-dim);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.afd-empathy__cta {
  margin-top: 3rem;
  text-align: center;
}

.afd-empathy__cta-note {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════
   C. AUTHORITY
   ═══════════════════════════════════════════════════ */
.afd-authority {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-surface) 50%, var(--bg-deep) 100%);
}

.afd-authority__split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.afd-authority__media-col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: sticky;
  top: 6rem;
}

.afd-authority__portrait {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid hsl(260, 60%, 50% / 0.2);
  box-shadow:
    0 30px 60px hsl(0, 0%, 0% / 0.5),
    0 0 0 1px hsl(260, 60%, 60% / 0.08);
}

/* Cinematic film-grain overlay on portrait */
.afd-authority__portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, hsl(0, 0%, 0% / 0.35) 100%);
  pointer-events: none;
}

.afd-authority__portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9);
}

.afd-authority__portrait-glow {
  position: absolute;
  inset: -2px;
  border-radius: 8px;
  background: linear-gradient(135deg, hsl(260, 80%, 60% / 0.12), transparent 50%);
  pointer-events: none;
}

.afd-authority__reel {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid hsl(0, 0%, 100% / 0.06);
  box-shadow: 0 8px 40px hsl(0, 0%, 0% / 0.4);
}

.afd-authority__reel::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

.afd-authority__reel iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.afd-authority__name {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

/* Decorative rule under name */
.afd-authority__name::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), transparent);
  margin-top: 1rem;
  margin-bottom: 1.75rem;
}

.afd-authority__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.0625rem, 1.7vw, 1.1875rem);
  font-style: italic;
  line-height: 1.75;
  color: hsl(0, 0%, 88%);
  border-left: 2px solid var(--purple-dim);
  padding-left: 1.75rem;
  margin-bottom: 2.5rem;
}

.afd-authority__quote em {
  color: var(--purple);
  font-style: italic;
}

.afd-authority__bio {
  font-family: var(--font-serif);
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  line-height: 1.8;
  color: hsl(0, 0%, 75%);
}

.afd-authority__bio p + p {
  margin-top: 1.25rem;
}

.afd-authority__bio strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Paul Endorsement — cinematic card */
.afd-authority__endorsement {
  margin-top: clamp(5rem, 10vh, 7rem);
}

.afd-authority__endorsement-inner {
  display: flex;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
  background: linear-gradient(135deg, hsl(240, 8%, 10%) 0%, hsl(260, 12%, 12%) 100%);
  border: 1px solid hsl(260, 40%, 40% / 0.18);
  border-radius: 16px;
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}

/* Subtle cinematic gradient wash */
.afd-authority__endorsement-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, hsl(260, 80%, 55% / 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.afd-authority__paul-img {
  width: clamp(180px, 22vw, 280px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  flex-shrink: 0;
  filter: contrast(1.05) saturate(0.85);
  box-shadow: 0 16px 40px hsl(0, 0%, 0% / 0.5);
}

.afd-authority__endorsement-text {
  position: relative;
}

.afd-authority__endorsement-text blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  font-style: italic;
  line-height: 1.75;
  color: hsl(0, 0%, 90%);
  margin-bottom: 1.5rem;
}

/* Large decorative opening quote mark */
.afd-authority__endorsement-text blockquote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 0.5;
  color: var(--purple-dim);
  margin-bottom: 0.75rem;
  opacity: 0.6;
}

.afd-authority__endorsement-text cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   D. PROOF — 3D Poster Showcase
   ═══════════════════════════════════════════════════ */
.afd-proof {
  background: var(--bg-deep);
  overflow: hidden;
}

.afd-proof__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.afd-proof__sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.1875rem);
  font-style: italic;
  color: hsl(0, 0%, 58%);
  margin-bottom: 4rem;
}

.afd-proof__stage {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  perspective: 1800px;
  padding: 4rem 0 2rem;
  min-height: 380px;
}

.afd-proof__poster {
  position: relative;
  width: clamp(130px, 15vw, 210px);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, hsl(240 10% 18%), hsl(240 8% 10%));
  border: 1px solid hsl(260 60% 60% / 0.1);
  box-shadow:
    0 24px 60px hsl(0 0% 0% / 0.5),
    0 0 0 1px hsl(260 60% 60% / 0.06);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.6s var(--ease-out-expo),
              box-shadow 0.6s ease;
  cursor: default;
}

/* Sculptural stagger — dramatic Y + rotation spread, vary scale for depth */
.afd-proof__poster:nth-child(1) { transform: translateY(-20px) rotateY(10deg) rotateX(4deg) scale(0.92); }
.afd-proof__poster:nth-child(2) { transform: translateY(-55px) rotateY(5deg) rotateX(2deg) scale(0.97); }
.afd-proof__poster:nth-child(3) { transform: translateY(-75px) rotateY(-1deg) scale(1.03); z-index: 2; }
.afd-proof__poster:nth-child(4) { transform: translateY(-50px) rotateY(-4deg) rotateX(2deg) scale(0.97); }
.afd-proof__poster:nth-child(5) { transform: translateY(-15px) rotateY(-8deg) rotateX(4deg) scale(0.92); }
.afd-proof__poster:nth-child(6) { transform: translateY(10px) rotateY(-12deg) rotateX(5deg) scale(0.88); }

.afd-proof__poster:hover {
  z-index: 10;
  box-shadow:
    0 40px 80px hsl(260 80% 50% / 0.2),
    0 0 50px hsl(260 80% 60% / 0.12),
    0 0 0 1px hsl(260 60% 60% / 0.25);
}

.afd-proof__poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.afd-proof__poster:hover img {
  transform: scale(1.06);
}

.afd-proof__poster span {
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  z-index: 2;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 2px 8px hsl(0 0% 0% / 1);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s var(--ease-out-expo);
}

.afd-proof__poster:hover span {
  opacity: 1;
  transform: translateY(0);
}

.afd-proof__poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, hsl(0 0% 0% / 0.7));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.afd-proof__poster:hover::after {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════
   EMPATHY
   ═══════════════════════════════════════════════════ */
.afd-empathy {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0f0f13 100%);
}

.afd-empathy__inner {
  max-width: 920px;
}

.afd-empathy__heading {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.afd-empathy__body {
  display: grid;
  gap: 1rem;
  max-width: 52rem;
}

.afd-empathy__body p {
  color: #EDEDED;
  line-height: 1.85;
  font-size: 1.02rem;
}

.afd-empathy__body p:first-child {
  font-size: 1.12rem;
  max-width: 48rem;
}

.afd-empathy__cta-note {
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
}

/* ═══════════════════════════════════════════════════
   AUTHORITY
   ═══════════════════════════════════════════════════ */
.afd-authority {
  background: linear-gradient(180deg, #0f0f13 0%, var(--bg-surface) 55%, var(--bg-deep) 100%);
}

.afd-authority__split {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.afd-authority__media-col {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 110px;
}

.afd-authority__portrait, .afd-authority__reel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid hsl(0 0% 100% / 0.08);
  box-shadow: 0 25px 80px hsl(0 0% 0% / 0.35);
}

.afd-authority__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.afd-authority__portrait-glow {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 25%, hsl(260 100% 65% / 0.18));
  pointer-events: none;
}

.afd-authority__reel::before { content: ""; display:block; padding-top:56.25%; }
.afd-authority__reel iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }

.afd-authority__reel-audio-toggle {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid hsl(0 0% 100% / 0.16);
  background: hsl(0 0% 0% / 0.34);
  backdrop-filter: blur(14px);
  color: #fff;
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  min-height: 44px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.afd-authority__reel-audio-toggle:hover {
  transform: translateY(-1px);
  background: hsl(0 0% 0% / 0.46);
  border-color: hsl(0 0% 100% / 0.24);
}

.afd-authority__reel-audio-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.afd-authority__name {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.25rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.afd-authority__quote {
  font-size: 1.06rem;
  line-height: 1.8;
  color: hsl(0 0% 92%);
  padding-left: 1.25rem;
  border-left: 1px solid hsl(43 70% 55% / 0.45);
  margin-bottom: 1.5rem;
}

.afd-authority__bio {
  display: grid;
  gap: 1rem;
}

.afd-authority__bio-subhead {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.75rem 0 0.35rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid hsl(43 70% 55% / 0.12);
}

.afd-authority__bio-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1rem;
  color: hsl(0 0% 82%);
}

.afd-authority__bio-list li,
.afd-authority__bio p { color: hsl(0 0% 82%); line-height: 1.85; }

.afd-authority__credits { margin-top: 2rem; }
.afd-authority__credits-rule { height:1px; background:linear-gradient(90deg,hsl(43 70% 55% / 0.55), transparent 80%); margin: 0.9rem 0 1.1rem; }

.afd-proof__stage--inline {
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:0.8rem;
  align-items:stretch;
  padding-bottom:0.5rem;
}

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

.afd-proof__poster {
  position: relative;
  width: 100%;
  min-width: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid hsl(260 60% 60% / 0.18);
  box-shadow: 0 18px 42px hsl(0 0% 0% / 0.28);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.afd-proof__poster:nth-child(odd) { transform: translateY(14px) rotateY(-8deg) rotateX(3deg); }
.afd-proof__poster:nth-child(even) { transform: translateY(-6px) rotateY(8deg) rotateX(-2deg); }
.afd-proof__poster img { width:100%; aspect-ratio: 2 / 3; object-fit: cover; }
.afd-proof__poster span { position:absolute; left:0.7rem; right:0.7rem; bottom:0.7rem; z-index:1; color:#fff; font-size:0.68rem; text-transform:uppercase; letter-spacing:0.12em; text-shadow:0 6px 16px rgba(0,0,0,0.85); }
.afd-proof__poster::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.72)); }

/* Paul endorsement — standalone section overrides */
.afd-paul-endorsement {
  background: linear-gradient(180deg, var(--bg-deep) 0%, hsl(240, 6%, 9%) 50%, var(--bg-deep) 100%);
}

.afd-paul-endorsement__label {
  text-align: center;
  margin-bottom: 1.75rem;
}

.afd-paul-endorsement .afd-authority__endorsement {
  margin-top: 0;
}

.afd-authority__endorsement-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 20px;
  background: linear-gradient(135deg, hsl(240 8% 12% / 0.95), hsl(240 8% 9% / 0.9));
  border: 1px solid hsl(43 70% 55% / 0.15);
  box-shadow: 0 24px 64px hsl(0 0% 0% / 0.3);
  position: relative;
  overflow: hidden;
}

.afd-authority__endorsement-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 50%, hsl(43 70% 55% / 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.afd-authority__paul-img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.04) saturate(0.88);
  box-shadow: 0 12px 36px hsl(0 0% 0% / 0.4);
}

.afd-authority__endorsement-text {
  position: relative;
}

.afd-authority__endorsement-text blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: hsl(0 0% 90%);
  margin-bottom: 1.25rem;
}

.afd-authority__endorsement-text blockquote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 0.5;
  color: var(--gold-dim);
  margin-bottom: 0.75rem;
  opacity: 0.5;
}

.afd-authority__endorsement-text cite {
  display: block;
  margin-top: 1rem;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}

.afd-authority__paul-role {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════ */
.afd-testimonials {
  background: linear-gradient(180deg, var(--bg-deep) 0%, hsl(240 5% 9%) 50%, var(--bg-deep) 100%);
}

.afd-testimonials__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 3.5rem;
}

.afd-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.afd-testimonial-card {
  background: var(--bg-elevated);
  border: 1px solid hsl(260, 40%, 40% / 0.15);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease,
              box-shadow 0.22s ease,
              border-color 0.22s ease;
}

.afd-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px hsl(260, 60%, 50% / 0.12);
  border-color: hsl(260, 40%, 50% / 0.3);
}

.afd-testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid hsl(0, 0%, 100% / 0.05);
}

.afd-testimonial-card__header img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid hsl(260, 60%, 50% / 0.3);
}

.afd-testimonial-card__header h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.afd-testimonial-card__header a {
  font-size: 0.75rem;
  color: var(--purple);
  opacity: 0.7;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.afd-testimonial-card__header a:hover { color: var(--lavender); opacity: 1; }

.afd-testimonial-card p {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: hsl(0, 0%, 75%);
  font-style: italic;
  flex: 1;
}

.afd-testimonial-card p strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   E. PRICING — Hormozi-style
   ═══════════════════════════════════════════════════ */
.afd-pricing {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-deep) 40%, var(--bg-surface) 100%);
  overflow: hidden;
}

.afd-pricing__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.afd-pricing__glow--1 {
  width: 350px; height: 350px;
  top: 10%; left: 5%;
  background: hsl(260, 80%, 60% / 0.1);
}

.afd-pricing__glow--2 {
  width: 400px; height: 400px;
  bottom: 10%; right: 5%;
  background: hsl(260, 80%, 60% / 0.12);
}

.afd-pricing__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.afd-pricing__sub {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-style: italic;
  text-align: center;
  color: hsl(0 0% 65%);
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.afd-pricing__category {
  text-align: center;
  margin: 0 auto 1.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
}

.afd-pricing__category::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dim), transparent);
  margin: 0.6rem auto 0;
  opacity: 0.5;
}

.afd-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.afd-pricing__grid--pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin-bottom: 2.75rem;
}

.afd-price-card {
  position: relative;
  min-width: 0;
  min-height: 100%;
  background: hsl(240, 5%, 10% / 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid hsl(260, 40%, 50% / 0.25);
  border-radius: 18px;
  padding: 2.35rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease,
              box-shadow 0.18s ease,
              border-color 0.18s ease;
  transform-style: preserve-3d;
  will-change: transform;
  overflow: visible;
}

.afd-price-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, hsl(260 100% 75% / 0.42), hsl(43 80% 60% / 0.34), transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.afd-price-card:hover {
  box-shadow: 0 8px 32px hsl(260, 60%, 50% / 0.15);
  border-color: hsl(260, 40%, 55% / 0.4);
}

.afd-price-card:hover::before {
  opacity: 1;
}

/* POPULAR — unmistakable focal card */
.afd-price-card--popular {
  border-color: hsl(260, 70%, 60% / 0.7);
  background: linear-gradient(180deg, hsl(260, 30%, 14%) 0%, hsl(260, 20%, 10%) 100%);
  box-shadow:
    0 18px 56px hsl(260, 70%, 50% / 0.32),
    0 0 120px hsl(260, 80%, 60% / 0.16),
    0 0 180px hsl(260, 80%, 60% / 0.08);
  transform: translateY(-14px) scale(1.03);
  padding: 3.4rem 2rem 2.9rem;
  z-index: 2;
}

.afd-price-card--popular .afd-price-card__price {
  font-size: 3.5rem;
  color: #fff;
  text-shadow: 0 0 30px hsl(260, 80%, 70% / 0.3);
}

.afd-price-card--popular .afd-price-card__per {
  font-size: 0.8125rem;
  color: var(--purple);
  font-weight: 500;
  font-style: normal;
}

.afd-price-card--popular h3 {
  font-size: 1.4rem;
}

.afd-price-card--popular .afd-btn--card {
  background: linear-gradient(135deg, hsl(260, 80%, 60%) 0%, hsl(280, 70%, 50%) 100%);
  font-size: 0.9375rem;
  padding: 1rem 2rem;
  box-shadow: 0 6px 24px hsl(260, 80%, 55% / 0.35);
}

.afd-price-card--popular::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 50% 0%, hsl(260, 80%, 60% / 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, hsl(260, 80%, 60% / 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Animated subtle glow pulse on popular card */
@keyframes afd-popular-glow-border {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.afd-price-card--popular::before {
  opacity: 0.8;
  animation: afd-popular-glow-border 4s ease-in-out infinite;
}

.afd-price-card--elite {
  border-color: hsl(43, 70%, 55% / 0.5);
  box-shadow: 0 4px 24px hsl(43, 70%, 55% / 0.15);
}

.afd-price-card--elite:hover {
  box-shadow: 0 8px 40px hsl(43, 70%, 55% / 0.25);
  border-color: hsl(43, 70%, 55% / 0.6);
}

.afd-price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1.25rem;
  border-radius: 20px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, hsl(260, 80%, 60%) 0%, hsl(280, 70%, 50%) 100%);
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 4px 16px hsl(260, 80%, 55% / 0.4);
  z-index: 4;
}

.afd-price-card__badge--gold {
  background: linear-gradient(135deg, #D4A853, #B8892E);
  color: #000;
}

.afd-price-card__kind,
.afd-price-card__type {
  display: inline-block;
  align-self: center;
  margin: 0 auto 0.9rem;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  border: 1px solid hsl(0 0% 100% / 0.08);
  background: hsl(0 0% 100% / 0.03);
  color: hsl(0 0% 88%);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.afd-price-card__type--sub {
  border-color: hsl(260 80% 70% / 0.24);
  background: hsl(260 80% 60% / 0.08);
}

.afd-price-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 0.25rem;
}

.afd-price-card__meta {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 1.25rem;
}

.afd-price-card__price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 0.25rem;
}

.afd-price-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.afd-price-card__per {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-style: italic;
  text-align: center;
  margin-bottom: 0.5rem;
}

.afd-price-card ul {
  list-style: none;
  margin: 1rem 0 1.5rem;
  flex-grow: 1;
}

.afd-price-card ul li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.5rem;
  font-size: 0.8125rem;
  color: hsl(0, 0%, 82%);
  line-height: 1.5;
}

.afd-price-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
}

.afd-price-card--elite ul li::before {
  color: var(--gold);
}

.afd-price-card__value {
  font-size: 0.7rem;
  color: var(--purple);
  opacity: 0.7;
}

.afd-price-card--elite .afd-price-card__value {
  color: var(--gold);
}

.afd-price-card__fine {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-style: italic;
  text-align: center;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid hsl(0 0% 100% / 0.04);
}

.afd-pricing__proof {
  text-align: center;
  font-size: 1rem;
  color: hsl(260, 60%, 70% / 0.7);
  margin-top: 2.5rem;
}

/* ═══════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════ */
.afd-faq {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-surface) 50%, var(--bg-surface) 100%);
}

.afd-faq__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 3.5rem;
}

.afd-faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.afd-faq__item {
  border-bottom: 1px solid hsl(0, 0%, 100% / 0.06);
}

.afd-faq__item summary {
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.3s ease;
  min-height: 44px;
}

.afd-faq__item summary::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--purple));
  box-shadow: 0 0 0 4px hsl(0 0% 100% / 0.03);
  flex-shrink: 0;
}

.afd-faq__item summary strong {
  font-weight: 600;
  letter-spacing: 0.01em;
  flex: 1;
}

.afd-faq__item summary:hover { color: var(--purple); }

.afd-faq__item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.afd-faq__item[open] summary::after { content: '\2212'; }
.afd-faq__item summary::-webkit-details-marker { display: none; }

.afd-faq__item p {
  padding: 0 0 1.5rem 1.75rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: hsl(0, 0%, 70%);
}

.afd-faq__cta {
  margin: 2rem auto 0;
  max-width: 800px;
  padding: 1.25rem 1.4rem;
  border: 1px solid hsl(0 0% 100% / 0.06);
  border-radius: 18px;
  background: linear-gradient(135deg, hsl(240 8% 12%), hsl(260 16% 12%));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.afd-faq__cta p {
  padding: 0;
  margin: 0;
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════ */
.afd-final-cta {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
  overflow: hidden;
}

.afd-final-cta__glow {
  position: absolute;
  width: 500px; height: 500px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: hsl(260, 80%, 55% / 0.08);
  filter: blur(100px);
  pointer-events: none;
}

.afd-final-cta__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.afd-final-cta__body {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.8;
  color: hsl(0, 0%, 78%);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.afd-final-cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.afd-final-cta__note {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.afd-footer {
  padding: clamp(3rem, 6vh, 5rem) 0 2rem;
  border-top: 1px solid hsl(0 0% 100% / 0.04);
  background: var(--bg-deep);
}

.afd-footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.afd-footer__brand { text-align: center; }

.afd-footer__wordmark {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.35rem;
}

.afd-footer__tagline {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.afd-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.afd-footer__nav a {
  font-size: 0.6875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}
.afd-footer__nav a:hover { color: var(--text-primary); }

.afd-footer__contact-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.afd-footer__email {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}
.afd-footer__email:hover { color: var(--purple); }

.afd-footer__divider {
  color: var(--text-tertiary);
  font-size: 0.75rem;
}

.afd-footer__support-note {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-style: italic;
  text-align: center;
}

.afd-footer__bottom {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid hsl(0 0% 100% / 0.03);
  width: 100%;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .afd-pricing__grid,
  .afd-pricing__grid--pair {
    grid-template-columns: repeat(2, 1fr);
  }
  .afd-price-card--popular {
    transform: translateY(-8px) scale(1.015);
  }
  .afd-testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .afd-proof__stage {
    flex-wrap: wrap;
    min-height: auto;
    align-items: center;
  }
  .afd-proof__poster {
    width: clamp(100px, 20vw, 160px);
  }
  .afd-proof__poster:nth-child(n) {
    transform: rotateY(0) rotateX(0) scale(1);
  }
}

@media (max-width: 768px) {
  .afd-header__nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 var(--page-pad);
    gap: 0;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.35s ease,
                padding 0.35s ease;
  }
  .afd-header__nav.is-open {
    max-height: 400px;
    opacity: 1;
    padding: 1.5rem var(--page-pad);
    gap: 0.25rem;
    background: hsl(240 5% 5% / 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid hsl(0 0% 100% / 0.05);
  }
  .afd-header__nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
  }
  .afd-header__burger { display: flex; }

  .afd-authority__split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .afd-authority__media-col {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }
  .afd-authority__endorsement-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.25rem;
    padding: 1.5rem;
  }
  .afd-authority__paul-img {
    max-width: 220px;
    max-height: 300px;
    margin: 0 auto;
    aspect-ratio: 3 / 4;
  }

  .afd-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .afd-pricing__grid,
  .afd-pricing__grid--pair {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 1.5rem;
  }
  .afd-price-card--popular {
    transform: scale(1);
  }

  .afd-proof__stage {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1.5rem 0;
    min-height: auto;
    align-items: center;
  }
  .afd-proof__poster {
    width: calc(33% - 0.5rem);
  }
  /* Reset sculptural transforms on mobile */
  .afd-proof__poster:nth-child(n) {
    transform: none;
  }

  .afd-footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .afd-footer__nav a { min-height: 44px; display: flex; align-items: center; }
  .afd-footer__contact-line { flex-direction: column; gap: 0.5rem; }
}

@media (max-width: 480px) {
  .afd-proof__poster {
    width: calc(50% - 0.5rem);
  }
}

/* ─── REDUCED MOTION ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-up {
    opacity: 1 !important;
    transform: none !important;
  }
  .afd-atmosphere__orb {
    animation: none !important;
  }
}

@keyframes afd-popular-glow {
  0%,100% { box-shadow: 0 18px 64px hsl(260, 60%, 50% / 0.24), 0 0 36px hsl(43 70% 55% / 0.12); }
  50% { box-shadow: 0 24px 80px hsl(260, 75%, 60% / 0.34), 0 0 52px hsl(43 70% 55% / 0.18); }
}

@media (max-width: 980px) {
  .afd-authority__split, .afd-authority__endorsement-inner { grid-template-columns: 1fr; }
  .afd-authority__media-col { position: relative; top: auto; }
  .afd-authority__paul-img { max-width: 320px; margin: 0 auto; }
  .afd-authority__endorsement-inner { text-align: center; }
  .afd-pricing__grid { grid-template-columns: 1fr; max-width: 420px; }
  .afd-price-card--popular { transform: none; }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  .afd-section__inner,
  .afd-header__inner,
  .afd-hero__content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .afd-hero {
    min-height: auto;
    padding-top: 6.5rem;
    padding-bottom: 2.5rem;
  }

  .afd-hero__content {
    width: 100%;
    gap: 0;
  }

  .afd-hero__partnership {
    margin-bottom: 0.9rem;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .afd-hero__rule {
    margin: 0 auto 1rem;
    width: min(72%, 280px);
  }

  .afd-hero__title {
    font-size: clamp(2.7rem, 10.2vw, 4.15rem);
    line-height: 0.88;
    margin-bottom: 1rem;
  }

  .afd-hero__title-line:nth-child(2) {
    letter-spacing: 0.22em;
    line-height: 1.65;
  }

  .afd-hero__tagline {
    max-width: 100%;
    margin-bottom: 1.4rem;
    font-size: 1rem;
    line-height: 1.45;
  }

  .afd-authority__split {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .afd-section__inner {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .afd-empathy__heading,
  .afd-testimonials__heading,
  .afd-pricing__heading {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }

  .afd-empathy__body p:first-child::first-letter {
    float: none;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
    color: inherit;
    font-weight: inherit;
  }

  .afd-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .afd-pricing__grid,
  .afd-pricing__grid--pair {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 1.5rem;
    gap: 1.25rem;
  }

  .afd-proof__stage {
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 0.35rem 0 0;
    min-height: auto;
    align-items: center;
  }

  .afd-authority__credits,
  .afd-testimonials,
  .afd-paul-endorsement,
  .afd-pricing {
    margin-top: 0;
  }

  .afd-testimonials .afd-section__inner,
  .afd-paul-endorsement .afd-section__inner,
  .afd-pricing .afd-section__inner {
    padding-top: 2.75rem;
  }
}

@media (max-width: 480px) {
  .afd-proof__poster {
    width: calc(50% - 0.5rem);
  }

  .afd-section__inner,
  .afd-header__inner,
  .afd-hero__content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .afd-hero {
    padding-top: 5.8rem;
    padding-bottom: 2rem;
  }

  .afd-hero__overlay {
    background: linear-gradient(180deg,
      hsl(0, 0%, 0% / 0.84) 0%,
      hsl(260, 40%, 8% / 0.82) 48%,
      hsl(0, 0%, 0% / 0.92) 100%);
  }

  .afd-hero__title {
    font-size: clamp(2.35rem, 9.8vw, 3.5rem);
  }

  .afd-hero__tagline {
    font-size: 0.95rem;
  }
}

  .afd-testimonials .afd-section__inner,
  .afd-paul-endorsement .afd-section__inner,
  .afd-pricing .afd-section__inner {
    padding-top: 2.75rem;
  }
}
 2.75rem;
  }
}
