/* ============================================
   FGC SIMPLIFIED — STYLESHEET
   Editorial luxury / federal authority
   ============================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Color */
  --bg: #0a0a0c;
  --bg-elev: #131316;
  --bg-card: #16161a;
  --bg-card-2: #1c1c21;
  --line: #26262d;
  --line-strong: #34343d;

  --text: #f4f1ea;
  --text-dim: #a8a59f;
  --text-mute: #6f6c66;

  --gold: #d4a84b;
  --gold-soft: #b89441;
  --gold-glow: rgba(212, 168, 75, 0.15);

  --red: #c4302b;
  --red-hot: #e23a34;
  --red-glow: rgba(196, 48, 43, 0.25);

  --blue: #1e3a8a;
  --blue-soft: #233a6b;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

  /* Spacing */
  --container: 1240px;
  --gutter: 24px;
  --section-y: 140px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hidden { display: none; }

/* ---------- UTILITY ---------- */
.gold { color: var(--gold); }
.gold-italic {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
}
.word-strike {
  position: relative;
  display: inline-block;
}
.word-strike::after {
  content: "";
  position: absolute;
  left: -3%;
  right: -3%;
  top: 55%;
  height: 3px;
  background: var(--red-hot);
  transform: rotate(-2deg);
  box-shadow: 0 0 20px var(--red-glow);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: 4px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn__arrow {
  transition: transform 0.3s var(--ease);
  display: inline-block;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 30px -8px var(--red-glow), inset 0 1px 0 rgba(255,255,255,0.1);
}
.btn--red:hover {
  background: var(--red-hot);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -10px rgba(196, 48, 43, 0.5);
}

.btn--gold {
  background: var(--gold);
  color: #1a1407;
  box-shadow: 0 8px 30px -8px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn--gold:hover {
  background: #e2b758;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -10px rgba(212, 168, 75, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

.btn--full { width: 100%; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 4px 0;
  padding-top: max(4px, env(safe-area-inset-top));
  transition: all 0.4s var(--ease);
  background: rgba(10, 10, 12, 0);
}
.nav.scrolled {
  padding: 4px 0;
  padding-top: max(4px, env(safe-area-inset-top));
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-img {
  height: 156px;
  width: auto;
  display: block;
  transition: height 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__logo:hover .nav__logo-img { opacity: 0.85; }
.nav.scrolled .nav__logo-img { height: 110px; }
/* legacy text-logo classes kept for compatibility */
.nav__logo-mark {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.nav__logo-divider {
  width: 1px;
  height: 18px;
  background: var(--line-strong);
}
.nav__logo-text {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  font-weight: 500;
}
.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 32px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav__links a:hover { color: var(--gold); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease);
}
.nav__cta:hover {
  background: var(--gold);
  color: #1a1407;
}

.nav__toggle {
  display: none;
  width: 28px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 200px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { opacity: 0.6; transform: translate(-50%, 0); }
  100% { opacity: 1; transform: translate(-50%, 30px); }
}

.hero__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: rgba(255,255,255,0.02);
  margin-bottom: 28px;
}
.dot {
  width: 6px; height: 6px;
  background: var(--red-hot);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red-hot);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero__headline {
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero__sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero__sub strong { color: var(--text); font-weight: 600; }

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
  color: var(--text-mute);
}
.hero__trust .check {
  color: var(--gold);
  font-weight: 700;
  margin-right: 6px;
}

/* Hero Visual / Card */
.hero__visual {
  position: relative;
}
.hero__card {
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6),
              0 0 0 1px rgba(212, 168, 75, 0.05),
              0 0 60px -20px var(--gold-glow);
  position: relative;
}
.hero__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.hero__card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.2);
}
.hero__card-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--line-strong);
}
.hero__card-dot--gold { background: var(--gold); }
.hero__card-label {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-mute);
  font-family: ui-monospace, monospace;
  letter-spacing: 0.05em;
}
.hero__card-body {
  padding: 24px;
}
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.stat-row:last-of-type { border-bottom: none; }
.stat-row__label { color: var(--text-dim); }
.stat-row__value {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  font-size: 16px;
}
.hero__card-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.counter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.counter span { color: var(--gold); }
.counter-label {
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text-mute);
  text-transform: uppercase;
  z-index: 1;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--text-mute), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--gold);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -40px; }
  100% { top: 40px; }
}

/* ---------- MARQUEE ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  background: var(--bg-elev);
}
.marquee__track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--text-dim);
  font-weight: 400;
}
.marquee__dot { color: var(--gold); font-size: 12px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- SECTION HEAD ---------- */
.section-head {
  margin-bottom: 70px;
  max-width: 720px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold);
}
.section-head__title {
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.section-head__sub {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ---------- PROBLEM ---------- */
.problem {
  padding: var(--section-y) 0;
  position: relative;
}
.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.problem__card {
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  position: relative;
  transition: all 0.4s var(--ease);
}
.problem__card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(196, 48, 43, 0.2);
}
.problem__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  font-weight: 500;
  color: var(--red-hot);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.problem__card h3 {
  font-size: 26px;
  margin-bottom: 14px;
  color: var(--text);
}
.problem__card p {
  font-size: 15.5px;
  color: var(--text-dim);
  line-height: 1.65;
}

.problem__verdict {
  text-align: center;
  padding: 60px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.problem__verdict p {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ---------- FLOW ---------- */
.flow {
  padding: var(--section-y) 0;
  background: var(--bg-elev);
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.flow::before {
  content: "";
  position: absolute;
  top: 30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.flow .container { position: relative; z-index: 1; }

.flow__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.flow__card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.flow__card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.flow__card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), 0 0 0 1px var(--gold-glow);
}
.flow__card:hover::before { transform: scaleX(1); }

.flow__letter {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 120px;
  line-height: 0.9;
  color: var(--gold);
  margin-bottom: 12px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-soft) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.flow__num {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 8px;
  font-weight: 600;
}
.flow__card h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--text);
}
.flow__card p {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.65;
}
.flow__cta { text-align: center; }

/* ---------- PROOF ---------- */
.proof {
  padding: var(--section-y) 0;
}
.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proof__card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px 30px;
  position: relative;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.proof__card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.proof__card--featured {
  background: linear-gradient(180deg, #1a1410 0%, var(--bg-card) 100%);
  border-color: var(--gold-soft);
  grid-row: span 2;
  grid-column: span 1;
}
.proof__card--featured .proof__amount-value {
  font-size: 56px;
}
.proof__card--quote {
  grid-column: span 2;
}

.proof__amount {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.proof__amount-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 8px;
}
.proof__amount-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.proof__amount-time {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
  font-family: var(--font-display);
}

.proof__quote {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 20px;
  flex-grow: 1;
}
.proof__quote--long {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
}

.proof__attr {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.proof__name {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 2px;
}
.proof__role {
  display: block;
  font-size: 12.5px;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}

/* ---------- OFFERS ---------- */
.offers {
  padding: var(--section-y) 0;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.offers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s var(--ease);
}
.offer-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.offer-card--featured {
  background: linear-gradient(180deg, #1f1810 0%, var(--bg-card) 100%);
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: 0 0 0 1px var(--gold-glow), 0 30px 60px -20px rgba(0,0,0,0.5);
}
.offer-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}
.offer-card__ribbon {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--gold);
  color: #1a1407;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0 0 4px 4px;
}
.offer-card__head {
  margin-bottom: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.offer-card__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 12px;
  font-weight: 600;
}
.offer-card__name {
  font-size: 24px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.offer-card__subhead {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.offer-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.offer-card__amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.offer-card__amount-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  color: var(--gold);
}
.offer-card__period {
  font-size: 14px;
  color: var(--text-dim);
}
.offer-card__desc {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 20px;
}
.offer-card__list {
  margin-bottom: 28px;
  flex-grow: 1;
}
.offer-card__list li {
  font-size: 14px;
  padding: 8px 0;
  padding-left: 22px;
  position: relative;
  color: var(--text);
  border-bottom: 1px dashed var(--line);
}
.offer-card__list li:last-child { border-bottom: none; }
.offer-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---------- ABOUT ---------- */
.about {
  padding: var(--section-y) 0;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.about__visual {
  position: relative;
}
.about__photo {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-2) 100%);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.about__photo::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  z-index: 2;
}
.about__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,12,0.4) 100%);
  z-index: 1;
  pointer-events: none;
}
.about__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.05) saturate(1.05);
  transition: transform 0.8s var(--ease);
}
.about__visual:hover .about__photo-img { transform: scale(1.03); }

.about__photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-mute);
}
.about__photo-placeholder span { font-size: 32px; color: var(--gold); }
.about__photo-placeholder small { font-size: 12px; margin-top: 8px; }

.about__badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--gold);
  color: #1a1407;
  padding: 24px 28px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6);
}
.about__badge-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
}
.about__badge-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
  line-height: 1.3;
}

.about__title {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 24px;
  margin-top: 18px;
  line-height: 1.05;
}
.about__content p {
  font-size: 17px;
  color: var(--text-dim);
  margin-bottom: 16px;
  line-height: 1.7;
}
.about__content p strong { color: var(--text); font-weight: 600; }
.about__content p em {
  color: var(--text-mute);
  font-style: italic;
  font-family: var(--font-display);
}
.about__close {
  font-family: var(--font-display);
  font-size: 20px !important;
  color: var(--text) !important;
  font-style: italic;
  margin-top: 24px !important;
  margin-bottom: 32px !important;
}

/* ---------- FAQ ---------- */
.faq {
  padding: var(--section-y) 0;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
}
.faq__list {
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold); }
.faq__icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.faq__item[open] .faq__icon {
  transform: rotate(45deg);
}
.faq__body {
  padding: 0 0 28px;
  animation: faqSlide 0.4s var(--ease);
}
.faq__body p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 700px;
}
@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- CTA FINAL ---------- */
.cta-final {
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.cta-final__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 60px 40px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.6);
}
.cta-final__inner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-final__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.cta-final__title {
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.cta-final__sub {
  font-size: 17px;
  color: var(--text-dim);
  margin-bottom: 32px;
  line-height: 1.6;
}
.cta-final__form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
}
.cta-final__input {
  flex: 1 1 240px;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.3s var(--ease);
}
.cta-final__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.cta-final__input::placeholder { color: var(--text-mute); }
.cta-final__fineprint {
  font-size: 12.5px;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 80px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__logo-img {
  height: 64px;
  width: auto;
  display: block;
}
.footer__tagline {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text);
  margin-bottom: 12px;
}
.footer__location {
  font-size: 13px;
  color: var(--text-mute);
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--text-dim);
  transition: all 0.3s var(--ease);
  background: var(--bg-card);
}
.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
  transform: translateY(-2px);
}
.footer__social-link svg {
  display: block;
}
.footer__col h4 {
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__col ul li {
  padding: 6px 0;
}
.footer__col ul li a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.2s var(--ease);
}
.footer__col ul li a:hover { color: var(--gold); }
.footer__bottom {
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--text-mute);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: var(--text-mute); transition: color 0.2s; }
.footer__legal a:hover { color: var(--gold); }

/* ---------- PRESS / AS FEATURED IN ---------- */
.press {
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.press__inner {
  text-align: center;
}
.press__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 32px;
  padding: 0 24px;
  position: relative;
}
.press__eyebrow::before,
.press__eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: var(--line-strong);
}
.press__eyebrow::before { right: 100%; }
.press__eyebrow::after { left: 100%; }

.press__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 56px;
}
.press__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 14px;
  font-family: var(--font-display);
  color: var(--text-dim);
  opacity: 0.7;
  filter: grayscale(1);
  transition: all 0.3s var(--ease);
  text-align: center;
  line-height: 1;
}
.press__logo:hover {
  opacity: 1;
  filter: grayscale(0);
  color: var(--gold);
  transform: translateY(-2px);
}
.press__logo-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.press__logo-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

/* ---------- I QUIT NUMBER ---------- */
.iquit {
  margin-top: 80px;
  margin-bottom: 60px;
  padding: 50px;
  background: linear-gradient(135deg, #1a1410 0%, var(--bg-card) 60%, #0f1525 100%);
  border: 1px solid var(--gold-soft);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.iquit::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.iquit__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.iquit__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
}
.iquit__title {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}
.iquit__copy {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 540px;
}
.iquit__copy strong { color: var(--text); font-weight: 600; }

.iquit__right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.iquit__stat {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line);
  padding: 18px 24px;
  border-radius: 4px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.3s var(--ease);
}
.iquit__stat:hover {
  border-color: var(--gold-soft);
  background: rgba(212, 168, 75, 0.05);
}
.iquit__stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
}
.iquit__stat-label {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: right;
}

/* ---------- WORKSHOP DATES ---------- */
.workshop {
  padding: var(--section-y) 0;
  background: var(--bg);
  position: relative;
}
.workshop__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}
.workshop__loading,
.workshop__empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-dim);
  font-size: 16px;
  font-style: italic;
  font-family: var(--font-display);
}
.workshop__empty .gold:hover { text-decoration: underline; }

.workshop-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 36px;
  position: relative;
  transition: all 0.4s var(--ease);
}
.workshop-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
}
.workshop-card--featured {
  background: linear-gradient(135deg, #1a1410 0%, var(--bg-card) 100%);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-glow), 0 20px 50px -20px rgba(0,0,0,0.4);
}
.workshop-card__ribbon {
  position: absolute;
  top: -1px;
  right: 28px;
  background: var(--gold);
  color: #1a1407;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0 0 4px 4px;
}

.workshop-card__head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.workshop-card__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.workshop-card__dates {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 6px;
}
.workshop-card__time {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  font-family: var(--font-display);
  font-style: italic;
}
.workshop-card__cohort {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.workshop-card__spots {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--text-dim);
}
.workshop-card__spots .workshop-card__vip {
  color: var(--gold);
  font-weight: 600;
}

.workshop-card__cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.workshop-card__cta-row .btn { flex: 1 1 200px; }

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  :root { --section-y: 100px; }
  .hero__container { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { max-width: 480px; margin: 0 auto; }
  .problem__grid,
  .flow__grid,
  .offers__grid { grid-template-columns: repeat(2, 1fr); }
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
  .proof__card--featured,
  .proof__card--quote { grid-column: span 2; grid-row: auto; }
  .about__grid { grid-template-columns: 1fr; gap: 60px; }
  .about__visual { max-width: 400px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .offer-card--featured { transform: none; }
  .offer-card--featured:hover { transform: translateY(-6px); }
  .iquit__inner { grid-template-columns: 1fr; gap: 40px; }
  .iquit { padding: 40px; }
  .press__logos { gap: 20px 36px; }

  /* Mobile nav kicks in at tablet too — prevents overflow banner on iPad/iPhone Pro Max */
  .nav__logo-img { height: 90px; }
  .nav.scrolled .nav__logo-img { height: 70px; }
  .nav__links {
    position: fixed;
    top: 100px;
    left: 0; right: 0;
    background: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 30px var(--gutter);
    gap: 20px;
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease);
    border-bottom: 1px solid var(--line);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__toggle.is-active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
  .nav__toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
}

@media (max-width: 768px) {
  :root { --section-y: 80px; }

  .hero { min-height: auto; padding: 140px 0 60px; }
  .hero__headline { font-size: 40px; }
  .hero__sub { font-size: 16px; }
  .hero__ctas .btn { width: 100%; }
  .hero__scroll-indicator { display: none; }

  .nav__logo-img { height: 70px; }
  .nav.scrolled .nav__logo-img { height: 56px; }
  .nav__links { top: 84px; }

  .problem__grid,
  .flow__grid,
  .offers__grid,
  .proof__grid { grid-template-columns: 1fr; }
  .proof__card--featured,
  .proof__card--quote { grid-column: auto; }

  .flow__letter { font-size: 90px; }

  .about__badge {
    bottom: -20px;
    right: 20px;
    padding: 18px 22px;
  }
  .about__badge-num { font-size: 36px; }

  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .cta-final__inner { padding: 40px 24px; }
  .cta-final__form { flex-direction: column; }
  .cta-final__input { flex: 1 1 100%; }

  .iquit { padding: 32px 24px; }
  .iquit__stat-num { font-size: 28px; }
  .iquit__stat-label { font-size: 11px; }

  .workshop-card { padding: 24px 22px; }
  .workshop-card__head { grid-template-columns: 1fr; gap: 18px; }
  .workshop-card__dates { font-size: 26px; }
  .workshop-card__cta-row .btn { flex: 1 1 100%; }

  .press { padding: 40px 0; }
  .press__logos { gap: 18px 28px; }
  .press__logo-text { font-size: 18px; }
  .press__logo-sub { font-size: 10px; }
  .press__eyebrow::before,
  .press__eyebrow::after { width: 30px; }
}

@media (max-width: 480px) {
  .section-head { margin-bottom: 50px; }
  .marquee__track { font-size: 14px; gap: 30px; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
