/* ============================================================
   EAM LANDING PAGE — STYLES
   Dark masculine editorial design. Alternating dark/light sections.
   ============================================================ */

@font-face {
  font-family: 'Bebas Neue';
  src: url('/fonts/bebas-neue-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Archivo';
  src: url('/fonts/archivo-variable.woff2') format('woff2-variations');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --gold: #dec085;
  --gold-dim: rgba(222, 192, 133, 0.55);
  --bordeaux: #2d0000;
  --bordeaux-light: #4a0f0f;
  --near-black: #0d0505;
  --white: #ffffff;
  --grey: #d6d0ca;
  --slate: #12151b;
  --ink: #1c1210;
  --ink-soft: #4a3a36;

  --font-head: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1120px;
  --gap: clamp(1.25rem, 4vw, 2.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  background: var(--near-black);
  color: var(--grey);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: clamp(1.25rem, 5vw, 2.5rem);
  padding-right: clamp(1.25rem, 5vw, 2.5rem);
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 0.5em;
  font-weight: 400;
}

h1 { font-size: clamp(2.6rem, 9vw, 4.6rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(2rem, 6vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 4vw, 1.9rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.section-dark p, .section-dark li { color: var(--grey); }
.section-light p, .section-light li { color: var(--ink-soft); }

.lede {
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 300;
}

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9em;
}

.section-light .label { color: var(--bordeaux); }

strong, b { font-weight: 500; }

a { color: inherit; }

/* ---------- Section shells ---------- */

section {
  position: relative;
  padding: clamp(3.5rem, 9vw, 6.5rem) 0;
}

.section-dark {
  background: radial-gradient(ellipse 120% 80% at 50% 0%, var(--bordeaux) 0%, var(--near-black) 62%);
  color: var(--grey);
}

.section-dark.deep {
  background: radial-gradient(ellipse 120% 80% at 50% 100%, var(--bordeaux) 0%, var(--near-black) 65%);
}

.section-light {
  background: #f7f4f0;
  color: var(--ink);
}

.section-light h1, .section-light h2, .section-light h3 {
  color: var(--bordeaux);
}

.section-dark h1, .section-dark h2, .section-dark h3 {
  color: var(--white);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(2rem, 6vw, 3.5rem);
}

.section-head.left {
  text-align: left;
  margin-left: 0;
}

.rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 1.5em auto;
}

.section-head.left .rule { margin-left: 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 1.05em 2.1em;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--near-black);
  box-shadow: 0 8px 24px -8px rgba(222, 192, 133, 0.55);
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(222, 192, 133, 0.65);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
}

.section-light .btn-outline {
  color: var(--bordeaux);
  border-color: rgba(45, 0, 0, 0.35);
}

.btn-wrap {
  text-align: center;
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
}

.qualifier {
  display: block;
  margin-top: 0.9em;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--gold-dim);
}

.section-light .qualifier {
  color: var(--ink-soft);
}

/* ---------- Header ---------- */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 1.5rem clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header img {
  width: 34px;
  height: auto;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: clamp(6rem, 18vw, 8rem);
  padding-bottom: 3.5rem;
  background-color: var(--near-black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 0;
}

.hero-bg.desktop { display: none; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,5,5,0.55) 0%, rgba(13,5,5,0.72) 45%, var(--near-black) 96%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.hero .lede {
  max-width: 620px;
  margin: 0 auto 2rem;
  color: var(--grey);
}

.vsl-slot {
  position: relative;
  width: min(280px, 62vw);
  aspect-ratio: 9 / 16;
  margin: 0 auto 2rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(222, 192, 133, 0.35);
  box-shadow: 0 20px 50px -15px rgba(0,0,0,0.7);
}

.vsl-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.vsl-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(13,5,5,0.55);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
}

.vsl-play svg { width: 18px; height: 18px; fill: var(--gold); margin-left: 3px; }

/* ---------- Trust bar ---------- */

.trust-bar {
  padding: clamp(2rem, 5vw, 2.75rem) 0;
  background: var(--slate);
}

.trust-as-seen {
  display: flex;
  justify-content: center;
}

.trust-as-seen img {
  width: auto;
  max-width: 100%;
}

.trust-as-seen img.desktop { display: none; }

@media (min-width: 640px) {
  .trust-as-seen img.mobile { display: none; }
  .trust-as-seen img.desktop { display: block; }
}

/* ---------- Pain list ---------- */

.pain-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 3.5rem);
  align-items: center;
}

.pain-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.pain-list li {
  padding-left: 1.6rem;
  position: relative;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--grey);
}

.pain-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.pain-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.pain-media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(222,192,133,0.2);
}

.pain-media img.no-border {
  border: none;
}

/* ---------- Enemy section ---------- */

.enemy-quote {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  color: var(--white);
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.enemy-quote .gold { color: var(--gold); }

.enemy-line {
  text-align: center;
  max-width: 640px;
  margin: 2rem auto 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
}

.enemy-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 480px;
  margin: 2.5rem auto 0;
}

.enemy-images.single {
  grid-template-columns: 1fr;
  max-width: 280px;
}

.enemy-images img {
  border-radius: 8px;
  border: 1px solid rgba(222,192,133,0.2);
  width: 100%;
  height: auto;
}

/* ---------- Mechanism ---------- */

.mech-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 3.5rem);
  align-items: center;
}

.mech-grid img {
  border-radius: 10px;
  border: 1px solid rgba(45,0,0,0.12);
}

.mech-box {
  background: var(--white);
  border: 1px solid rgba(45,0,0,0.12);
  border-radius: 10px;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  margin-top: 1.75rem;
}

.mech-box p {
  font-size: 1.05rem;
  color: var(--ink);
}

.mech-box p:first-child { font-weight: 500; }

/* ---------- Transformation list ---------- */

.transform-list {
  list-style: none;
  margin: 2.25rem auto 0;
  padding: 0;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.transform-list li {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 3.4vw, 1.5rem);
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--white);
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(222,192,133,0.15);
}

.transform-list li:last-child { border-bottom: none; }

.transform-list .arrow { color: var(--gold); margin: 0 0.35em; }

.setup-line {
  text-align: center;
  max-width: 640px;
  margin: 2.5rem auto 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
}

.eam-meta {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 3rem);
  flex-wrap: wrap;
  margin-top: 2.5rem;
  text-align: center;
}

.eam-meta div {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  font-weight: 600;
}

/* ---------- Weeks ---------- */

.weeks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .weeks-grid { grid-template-columns: 1fr 1fr; }
}

.week-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(222,192,133,0.16);
  border-radius: 10px;
  padding: clamp(1.5rem, 4vw, 2rem);
  overflow: hidden;
}

.week-num {
  position: absolute;
  top: -0.3em;
  right: 0.15em;
  font-family: var(--font-head);
  font-size: clamp(5rem, 14vw, 7rem);
  color: var(--white);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
}

.week-label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5em;
}

.week-card h3 {
  position: relative;
  margin-bottom: 0.3em;
}

.week-sub {
  font-style: italic;
  color: var(--gold-dim);
  font-size: 0.95rem;
  margin-bottom: 0.8em;
}

.week-card p {
  position: relative;
  font-size: 0.96rem;
}

.week-reset {
  position: relative;
  margin-top: 1.1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(222,192,133,0.15);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
}

.week-reset span { color: var(--gold); }

/* ---------- Answer key / Zala ---------- */

.zala-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 6vw, 3.5rem);
  align-items: center;
}

.zala-photo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
}

.zala-photo {
  border-radius: 10px;
  border: 1px solid rgba(222,192,133,0.25);
  width: 100%;
  height: auto;
}

.zala-photo-small {
  width: 48%;
  border-radius: 8px;
  border: 1px solid rgba(222,192,133,0.3);
  align-self: flex-end;
  margin-top: -1.5rem;
  margin-right: -0.75rem;
  box-shadow: 0 12px 24px -10px rgba(0,0,0,0.5);
}

.zala-points {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.zala-points li {
  padding-left: 1.6rem;
  position: relative;
  color: var(--grey);
}

.zala-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ---------- Proof ---------- */

.proof-highlight {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  background: radial-gradient(ellipse 120% 100% at 30% 0%, var(--bordeaux) 0%, var(--near-black) 75%);
  border-radius: 12px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.proof-highlight img.banner { width: 100%; height: auto; }

.proof-highlight .photo {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(222,192,133,0.25);
}

.proof-highlight .photo img { width: 100%; height: 100%; object-fit: cover; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 3vw, 1.5rem);
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.proof-shot {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(45,0,0,0.12);
  box-shadow: 0 12px 30px -12px rgba(45,0,0,0.18);
}

.proof-shot img { width: 100%; height: auto; }

.video-slots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.video-slot {
  width: min(260px, 44vw);
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(45,0,0,0.12);
  box-shadow: 0 12px 30px -12px rgba(45,0,0,0.18);
}

.video-slot wistia-player {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 6vw, 3.5rem);
  align-items: center;
}

.about-photo {
  border-radius: 10px;
  width: 100%;
  height: auto;
  border: 1px solid rgba(45,0,0,0.12);
}

/* ---------- Who for / not for ---------- */

.fit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .fit-grid { grid-template-columns: 1fr 1fr; }
}

.fit-card {
  background: var(--white);
  border-radius: 10px;
  padding: clamp(1.75rem, 4vw, 2.25rem);
  border: 1px solid rgba(45,0,0,0.1);
}

.fit-card.not {
  background: #fbf3ee;
}

.fit-card h3 {
  color: var(--bordeaux);
  font-size: 1.3rem;
  margin-bottom: 0.7em;
}

.fit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.fit-list li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.98rem;
  color: var(--ink-soft);
}

.fit-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.fit-card.yes .fit-list li::before {
  content: '✓';
  color: var(--bordeaux);
}

.fit-card.not .fit-list li::before {
  content: '✕';
  color: #9a3b2a;
}

/* ---------- Guarantee ---------- */

.guarantee-box {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.guarantee-badge {
  width: 64px;
  height: 64px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--gold);
}

.guarantee-box p {
  font-size: 1.08rem;
}

.guarantee-box p + p {
  margin-top: 1.2em;
}

/* ---------- Scarcity ---------- */

.scarcity-band {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
}

.scarcity-band p {
  font-size: clamp(1.15rem, 3.2vw, 1.4rem);
  color: var(--white);
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
}

.call-desc {
  max-width: 640px;
  margin: 1.5rem auto 0;
  font-size: 0.98rem;
  color: var(--grey);
}

.cta-accent {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 1.5px solid var(--gold);
}

.scarcity-pill {
  display: inline-block;
  margin: 0 auto 1.5rem;
  padding: 0.5em 1.3em;
  border: 1px solid rgba(222,192,133,0.4);
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--grey);
}

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(45,0,0,0.1);
  border-radius: 8px;
  padding: 0.3rem 1.5rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--bordeaux);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  padding-bottom: 1.2rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ---------- Final CTA ---------- */

.final-cta {
  text-align: center;
}

.final-cta .label {
  display: block;
}

.final-cta h2 {
  color: var(--white);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--near-black);
  padding: clamp(2.5rem, 6vw, 3.5rem) 0 6.5rem;
  text-align: center;
  border-top: 1px solid rgba(222,192,133,0.1);
}

.site-footer img {
  width: 30px;
  margin: 0 auto 1rem;
}

.site-footer p {
  font-size: 0.78rem;
  color: rgba(214,208,202,0.5);
  max-width: 520px;
  margin: 0 auto 0.5em;
  line-height: 1.6;
}

/* ---------- Sticky CTA bar ---------- */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: var(--gold);
  color: var(--near-black);
  padding: 0.85rem clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(110%);
  transition: transform 0.35s ease;
  box-shadow: 0 -8px 24px -10px rgba(0,0,0,0.4);
}

.sticky-cta.is-visible { transform: translateY(0); }

.sticky-cta a {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--near-black);
}

/* ---------- Fade-in on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (min-width: 640px) {
  .hero-bg.mobile { display: none; }
  .hero-bg.desktop { display: block; }
}

@media (max-width: 719px) {
  .pain-grid, .mech-grid, .zala-grid, .about-grid {
    grid-template-columns: 1fr;
  }
  .pain-media { order: -1; }
  .pain-media img { max-width: 260px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-highlight { grid-template-columns: 1fr; }
  .proof-highlight .photo { max-width: 220px; margin: 0 auto; }
  .enemy-images { max-width: 320px; }
}

@media (max-width: 479px) {
  .proof-grid { grid-template-columns: 1fr; }
}
