/* ==========================================================================
   Alex Garcia — Trading Traps Guide
   Layout & styling replicate the reference landing page from the canvas
   (dark hero → video → serif headline → mockup → copy → CTA → modal form,
   white thank-you page, colored "Complimentary Education" band), recolored
   with the WWA Trading palette (near-black, violet, cyan).
   ========================================================================== */

:root {
  /* WWA Trading palette (wwatrading.com): near-black surfaces, violet brand, cyan accent */
  --bg-950: #0b0b0d;      /* hero / dark page background */
  --bg-900: #141414;      /* WWA main surface */
  --bg-800: #1e1e22;
  --plum-700: #2b1440;    /* education / guide-hero bands */
  --violet-600: #9e37bb;  /* buttons, form heading (WWA primary) */
  --violet-500: #b44fd2;  /* button hover */
  --violet-400: #c700ff;  /* bright brand accent */
  --cyan: #00fbff;        /* WWA secondary accent (kickers, nav hover) */
  --violet-100: #e9dcf2;
  --paper: #f4f4f4;       /* form card */
  --white: #ffffff;
  --ink: #111111;
  --ink-soft: #3d3d3d;
  --muted: #6f6b74;
  --line: #2e2e2e;
  --error: #d83232;       /* WWA red */

  --serif: "Roboto Slab", "Georgia", serif;   /* ES: Roboto Slab has full Spanish diacritics (Suwannaphum does not) */
  --sans: "Public Sans", "Helvetica Neue", "Arial", sans-serif;
  --form-serif: "Georgia", "Times New Roman", serif;

  --max: 1180px;
  --content: 900px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  color: var(--white);
  background: var(--bg-950);
  -webkit-font-smoothing: antialiased;
}
img, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select { font: inherit; color: inherit; }
h1, h2, h3, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid #ffffff; outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.wrap { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.content { width: min(100% - 2.5rem, var(--content)); margin-inline: auto; }

/* ---- Buttons (reference: solid block, white bold sans — WWA violet) ------ */
.btn {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.05rem 2.4rem;
  background: var(--violet-600); color: var(--white);
  font-family: var(--sans); font-weight: 600; font-size: 1.05rem; line-height: 1.3;
  border: 0; border-radius: 6px; cursor: pointer; text-decoration: none; text-align: center;
  box-shadow: 0 12px 30px -12px rgba(158,55,187,.65);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn:hover { background: var(--violet-500); transform: translateY(-1px); box-shadow: 0 16px 36px -12px rgba(158,55,187,.8); }
.btn:active { transform: translateY(1px); }
/* arrow glyph on primary CTAs (reference: "Get Your FREE Workbook ▸") */
.btn--arrow { flex-direction: row; gap: .7rem; }
.btn--arrow::after {
  content: ""; width: 10px; height: 12px; flex: 0 0 auto;
  background: currentColor; clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: transform .2s;
}
.btn--arrow:hover::after { transform: translateX(3px); }
.btn--block { width: 100%; }
.btn--serif { font-family: var(--serif); font-weight: 700; }
.btn__sub { font-family: var(--sans); font-weight: 500; font-size: .85rem; opacity: .85; margin-top: .15rem; }
.btn[disabled] { opacity: .65; cursor: progress; }

/* ==========================================================================
   LANDING PAGE
   ========================================================================== */
.hero {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(5rem, 10vw, 8rem);
  background: var(--bg-950);
}
.hero__bg {
  position: absolute; inset: -40px; z-index: 0; pointer-events: none;
  background: url("../assets/hero-poster-photo.jpg") center 30% / cover no-repeat;
  filter: blur(10px) saturate(.3) brightness(.5);
  opacity: .6;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 460px at 50% -140px, rgba(199,0,255,.22), transparent 70%),
    linear-gradient(180deg, rgba(11,11,13,.6), rgba(11,11,13,.86) 60%, var(--bg-950));
}
.hero__inner { position: relative; z-index: 1; }

/* Video (reference: 16:9 embed at the very top, centered) */
.video {
  position: relative; margin: 0 auto; width: min(100%, 690px); aspect-ratio: 16 / 9;
  background: #000; overflow: hidden; border-radius: 4px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.9);
}
.video__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
/* soft dark/violet veil over the photo poster so the play button reads (reference: dark video frame) */
.video::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(11,11,13,.05), rgba(11,11,13,.2) 55%, rgba(43,20,64,.75)); }
/* YouTube-style overlays on the poster: title bar on top, duration + wordmark at the bottom */
.video__head { position: absolute; left: 0; right: 0; top: 0; z-index: 2; display: flex; align-items: center; gap: .7rem; padding: 1.1rem 1.2rem 2.6rem; background: linear-gradient(180deg, rgba(0,0,0,.7), transparent); color: var(--white); text-align: left; }
.video__meta { display: flex; flex-direction: column; min-width: 0; }
.video__title { font-family: var(--serif); font-weight: 700; font-size: clamp(1.15rem, 1.7vw, 1.5rem); line-height: 1.2; text-shadow: 0 1px 8px rgba(0,0,0,.65); text-wrap: balance; }
.video__channel { font-family: var(--sans); font-size: .85rem; font-weight: 500; letter-spacing: .02em; color: rgba(255,255,255,.82); margin-top: .3rem; }
.video__foot { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: .9rem 1rem; color: var(--white); }
.video__dur { font-family: var(--sans); font-size: .82rem; font-weight: 600; background: rgba(11,11,13,.75); padding: .3rem .55rem; border-radius: 5px; }
@media (max-width: 600px) {
  .video__head { padding: .7rem .8rem 1.8rem; gap: .5rem; }
  .video__title { font-size: 1rem; }
  .video__channel { font-size: .72rem; }
  .video__foot { padding: .6rem .7rem; }
}
.video__play { z-index: 2; }
.video iframe { z-index: 3; }
.video__play {
  position: absolute; inset: 0; margin: auto; width: 80px; height: 80px;
  border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.94); color: var(--bg-900);
  box-shadow: 0 0 0 0 rgba(199,0,255,.5), 0 10px 30px rgba(0,0,0,.45);
  display: grid; place-items: center;
  transition: transform .2s, background .2s, box-shadow .3s;
}
.video__play:hover { transform: scale(1.06); background: #fff; box-shadow: 0 0 0 10px rgba(199,0,255,.22), 0 10px 30px rgba(0,0,0,.45); }
.video__play svg { margin-left: 5px; }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.hero__eyebrow {
  margin-top: 1.8rem;
  font-family: var(--serif); font-weight: 700; font-size: 1rem; letter-spacing: .01em;
}
.hero__title {
  margin: .6rem auto 0; max-width: 34ch;
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.25; text-wrap: balance;
}
.mockup { margin: 2rem auto 0; width: min(100%, 380px); }
.mockup svg { width: 100%; height: auto; filter: drop-shadow(0 30px 40px rgba(0,0,0,.6)) drop-shadow(0 0 70px rgba(158,55,187,.28)); }
.hero__copy {
  margin: 2rem auto 0; max-width: 40rem;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.5; font-weight: 300;
}
.hero__copy + .hero__copy { margin-top: 1rem; }
.hero__copy b { font-weight: 700; }
.hero__cta { margin-top: 2.2rem; }
.hero__cta .btn { padding: 1.15rem 2.8rem; font-size: 1.15rem; }
.hero__proof { margin-top: 1.4rem; font-style: italic; font-weight: 700; font-size: 1.05rem; }
@media (max-width: 600px) { .hero__cta .btn { width: 100%; } }

/* ==========================================================================
   MODAL FORM (reference: light card over the dark page)
   ========================================================================== */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.is-open { display: block; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(8,8,10,.82); backdrop-filter: blur(3px); }
.modal__scroll { position: absolute; inset: 0; overflow-y: auto; padding: 2rem 1rem; }
.modal__card {
  position: relative; width: min(100%, 760px); margin: 0 auto;
  background: var(--paper); color: var(--ink);
  padding: clamp(2rem, 5vw, 3.2rem) clamp(1.4rem, 5vw, 5.4rem) clamp(2rem, 4vw, 3rem);
  border-radius: 14px; box-shadow: 0 40px 100px -30px rgba(0,0,0,.8);
  font-family: var(--form-serif); font-weight: 400; font-size: 1.05rem;
}
.modal__close {
  position: absolute; top: 1rem; right: 1rem; width: 32px; height: 32px;
  border: 2px solid var(--violet-600); background: transparent; color: var(--violet-600); cursor: pointer;
  font-size: 1.3rem; line-height: 1; border-radius: 50%; display: grid; place-items: center; padding: 0 0 2px;
}
.modal__close:hover { background: var(--violet-600); color: #fff; }
.form__title {
  text-align: center; color: var(--violet-600);
  font-family: var(--serif); font-weight: 700; font-size: clamp(1.9rem, 4.2vw, 3.1rem); line-height: 1.2;
  margin-bottom: 1.6rem; text-wrap: balance;
}
.field { margin-bottom: 1.1rem; }
.input {
  width: 100%; padding: 1.05rem 1.2rem;
  background: #fff; color: var(--ink);
  border: 1px solid #1f1f1f; border-radius: 4px;
  font-family: var(--form-serif); font-size: 1.05rem;
  appearance: none; -webkit-appearance: none;
}
.input::placeholder { color: #7a7f7e; }
.input:focus { outline: 2px solid var(--violet-600); outline-offset: 1px; }
.input--icon { padding-left: 3rem; }
.field--icon { position: relative; }
.field--icon svg { position: absolute; left: 1.15rem; top: 1.25rem; width: 20px; height: 16px; color: #555; pointer-events: none; }
select.input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M0 0h12L6 7z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.1rem center; padding-right: 2.6rem;
}
select.input:invalid, select.input.is-placeholder { color: #7a7f7e; }
.phone { display: flex; align-items: stretch; }
.phone__cc {
  flex: 0 0 auto; width: auto; max-width: 96px; border-right: 0; border-radius: 4px 0 0 4px;
  padding-left: .9rem; padding-right: 1.6rem; background-position: right .55rem center; font-size: 1rem;
}
.phone .input--num { border-radius: 0 4px 4px 0; }
.form__legal { text-align: center; margin-top: 1.1rem; font-size: .85rem; }
.form__legal a { color: var(--ink); }
.field__error { display: none; color: var(--error); font-family: var(--sans); font-size: .95rem; margin-top: .55rem; }
.field.has-error .field__error { display: block; }
.field.has-error .input { border-color: var(--error); }
.question { margin: 1.6rem 0 1rem; font-size: 1.15rem; line-height: 1.5; }
.question b { font-weight: 700; }
.choice { display: flex; align-items: flex-start; gap: .8rem; margin: .55rem 0; font-size: 1.05rem; cursor: pointer; }
.choice input { width: 22px; height: 22px; margin: .1rem 0 0; accent-color: var(--violet-600); flex: 0 0 auto; }
.choice--consent { margin-top: 1.6rem; font-size: .98rem; line-height: 1.55; }
.choice--consent b { font-weight: 700; }
.form__submit { margin-top: 1.8rem; padding: 1.2rem 1rem; font-size: 1.15rem; border-radius: 6px; }
.form__status { text-align: center; font-family: var(--sans); font-size: .95rem; margin-top: .9rem; min-height: 1.3em; color: var(--ink-soft); }
.form__status.is-error { color: var(--error); }

/* ==========================================================================
   THANK-YOU PAGE (reference: white page, nav, two columns)
   ========================================================================== */
.page--light { background: var(--white); color: var(--ink); }

.nav { background: var(--white); border-bottom: 1px solid #ececec; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 84px; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand__mark { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--plum-700); }
.brand__mark img { width: 100%; height: 100%; object-fit: cover; }
.brand__name { font-family: var(--serif); font-weight: 700; font-size: 1.35rem; letter-spacing: .04em; text-transform: uppercase; color: var(--bg-900); white-space: nowrap; }
.nav__links { display: flex; align-items: center; gap: 1.8rem; font-family: var(--sans); font-size: .95rem; }
.nav__links a { text-decoration: none; color: #222; }
.nav__links a:hover { color: var(--violet-600); }
.nav__links .btn { padding: .8rem 1.3rem; font-size: .9rem; color: var(--white); }
.nav__links .btn:hover { color: var(--white); }
@media (max-width: 760px) {
  .nav__links a:not(.btn) { display: none; }
  .nav__links .btn { white-space: nowrap; padding: .7rem 1rem; font-size: .85rem; }
  .brand__name { font-size: 1.1rem; }
  .nav__inner { height: 72px; }
}

.thanks { padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem); }
.thanks__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.thanks__photo { position: relative; border-radius: 12px; overflow: hidden; background: var(--plum-700); aspect-ratio: 3 / 4; width: min(100%, 460px); margin: 0 auto; box-shadow: 0 30px 60px -28px rgba(158,55,187,.55), 0 20px 40px -24px rgba(0,0,0,.5); }
.thanks__photo::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); pointer-events: none; }
.thanks__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.thanks__lead { font-family: var(--sans); font-weight: 500; font-size: 1.35rem; color: var(--violet-600); }
.thanks__lead-sub { font-family: var(--sans); font-style: italic; font-size: 1.15rem; color: #5c5662; margin-top: .25rem; }
.thanks__title { font-family: var(--serif); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; color: var(--violet-600); margin-top: 1.4rem; }
.thanks__copy { font-family: var(--sans); font-weight: 600; font-size: 1.2rem; line-height: 1.4; color: var(--ink); margin-top: 1.1rem; }
.thanks__copy--light { font-weight: 400; color: #333; font-size: 1.05rem; }
.thanks__copy b { font-weight: 700; }
.thanks .btn { margin-top: 1.5rem; width: 100%; font-family: var(--serif); font-weight: 700; font-size: 1.35rem; padding: 1.15rem 1rem; }
.thanks h3 { font-family: var(--sans); font-weight: 600; font-size: 1.35rem; color: var(--ink); margin-top: 1.5rem; }
@media (max-width: 820px) { .thanks__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   COMPLIMENTARY EDUCATION (reference: colored band, portrait cards)
   ========================================================================== */
.education { background: radial-gradient(900px 360px at 50% 0, rgba(199,0,255,.2), transparent 70%), var(--plum-700); color: var(--white); padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 9vw, 7rem); }
.education__title { text-align: center; font-family: var(--serif); font-weight: 700; font-size: clamp(2rem, 4.2vw, 3.1rem); margin-bottom: clamp(2rem, 4vw, 3rem); }
.edu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.edu-card {
  position: relative; display: block; text-decoration: none; color: var(--white);
  aspect-ratio: 4 / 5; border-radius: 12px; overflow: hidden; background: var(--bg-900);
  box-shadow: 0 24px 50px -22px rgba(0,0,0,.75), inset 0 0 0 1px rgba(255,255,255,.08);
  transition: transform .25s, box-shadow .25s;
}
.edu-card:hover { transform: translateY(-5px); box-shadow: 0 30px 60px -22px rgba(0,0,0,.8), 0 0 0 1px rgba(199,0,255,.35); }
.edu-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(.55) saturate(.8); transition: transform .5s; }
/* portrait photos (reference cards): keep the face, lighter dim, darker bottom for the meta row */
.edu-card--portrait img { object-position: center top; filter: brightness(.82) saturate(.9); }
.edu-card--portrait::after { background: linear-gradient(180deg, rgba(12,12,14,.1), rgba(12,12,14,.35) 50%, rgba(12,12,14,.9)); }
.edu-card:hover img { transform: scale(1.04); }
.edu-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,12,14,.25), rgba(12,12,14,.45) 55%, rgba(12,12,14,.85)); }
.edu-card__text { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 1.5rem 1.2rem 3.5rem; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.edu-card__kicker { font-family: var(--sans); font-weight: 400; font-size: 1.05rem; }
.edu-card__title { font-family: var(--serif); font-weight: 700; font-size: clamp(1.5rem, 2vw, 1.9rem); line-height: 1.12; margin-top: .3rem; }
.edu-card__meta { position: absolute; left: 1.1rem; right: 1.1rem; bottom: 1rem; z-index: 1; display: flex; justify-content: space-between; align-items: center; font-family: var(--sans); font-size: .9rem; }
.edu-card__play { padding: .45rem .8rem; border: 1px solid rgba(255,255,255,.85); border-radius: 4px; background: rgba(0,0,0,.35); font-weight: 500; transition: background .2s, border-color .2s; }
.edu-card:hover .edu-card__play { background: var(--violet-600); border-color: var(--violet-600); }
@media (max-width: 1000px) { .edu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .edu-grid { grid-template-columns: 1fr; } .edu-card { aspect-ratio: 4 / 4; } }

/* ==========================================================================
   FOOTER (reference: brand left, links center, socials right; rule; legal)
   ========================================================================== */
.footer { background: var(--bg-950); color: rgba(255,255,255,.72); font-family: var(--sans); padding: clamp(3rem, 6vw, 4.5rem) 0 2.5rem; }
.footer__top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; }
.footer .brand__name { color: var(--white); font-size: 1.5rem; }
.footer .brand__mark { width: 52px; height: 52px; box-shadow: 0 0 0 2px rgba(255,255,255,.15); }
.footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem; font-family: var(--serif); font-weight: 400; font-size: 1.05rem; }
.footer__nav a { color: var(--white); text-decoration: none; opacity: .9; transition: color .2s, opacity .2s; }
.footer__nav a:hover { color: var(--cyan); opacity: 1; }
.footer__social { display: flex; justify-content: flex-end; gap: .6rem; }
.footer__social a {
  display: inline-flex; align-items: center; gap: .4rem; height: 40px; padding: 0 .8rem;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.85); text-decoration: none; font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  transition: background .2s, border-color .2s, color .2s;
}
.footer__social a:hover { background: var(--violet-600); border-color: var(--violet-600); color: var(--white); }
.footer__social svg { width: 18px; height: 18px; }
.footer__rule { border: 0; border-top: 1px solid rgba(255,255,255,.12); margin: clamp(2.2rem, 5vw, 3.5rem) 0 2rem; }
.footer__disclaimer { max-width: 90ch; margin: 0 auto; text-align: center; font-size: .85rem; line-height: 1.55; color: rgba(255,255,255,.7); }
.footer__legal { display: flex; justify-content: center; gap: clamp(3rem, 20vw, 22rem); margin-top: 2rem; font-size: .9rem; }
.footer__legal a { color: var(--white); }
@media (max-width: 860px) {
  .footer__top { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 1.6rem; }
  .footer__nav { flex-direction: column; gap: .9rem; }
  .footer__social { justify-content: center; }
  .footer__legal { flex-direction: column; align-items: center; gap: 1.2rem; }
}

/* ==========================================================================
   GUIDE PAGE (light, same typography)
   ========================================================================== */
.guide-hero { background: var(--plum-700); color: var(--white); padding: clamp(3rem, 6vw, 5rem) 0; text-align: center; }
.guide-hero__eyebrow { font-family: var(--serif); font-weight: 700; font-size: 1rem; }
.guide-hero__title { font-family: var(--serif); font-weight: 700; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.2; margin-top: .5rem; text-wrap: balance; }
.guide-hero__sub { max-width: 46rem; margin: 1rem auto 0; font-size: 1.1rem; }
.guide { display: grid; grid-template-columns: 220px 1fr; gap: clamp(2rem, 6vw, 5rem); padding: clamp(2.5rem, 5vw, 4rem) 0; color: var(--ink); }
.toc { position: sticky; top: 24px; align-self: start; font-family: var(--sans); }
.toc__title { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: #888; margin-bottom: .8rem; }
.toc a { display: block; padding: .38rem 0 .38rem .9rem; border-left: 2px solid #e5e5e5; text-decoration: none; color: #555; font-size: .92rem; }
.toc a:hover, .toc a.is-active { color: var(--violet-600); border-color: var(--violet-600); }
.prose { max-width: 70ch; font-family: var(--serif); font-weight: 300; font-size: 1.1rem; color: #222; }
.prose h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--violet-600); margin: 2.8rem 0 .9rem; scroll-margin-top: 24px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--serif); font-weight: 700; font-size: 1.35rem; color: var(--ink); margin: 1.8rem 0 .5rem; }
.prose p { margin: 0 0 1rem; }
.prose b { font-weight: 700; }
.prose ul { display: grid; gap: .4rem; margin: .5rem 0 1.2rem; }
.prose li { padding-left: 1.2rem; position: relative; }
.prose li::before { content: ""; position: absolute; left: 0; top: .68em; width: 7px; height: 7px; border-radius: 50%; background: var(--violet-600); }
.prose li ul { margin: .4rem 0 0; }
.prose .pull { margin: 1.4rem 0; padding: 1.2rem 1.4rem; border-left: 4px solid var(--violet-600); background: #f4ecf9; font-style: italic; }
.prose hr { border: 0; border-top: 1px solid #e5e5e5; margin: 2.5rem 0; }
.guide-cta { margin-top: 3rem; padding: 2.2rem; background: var(--paper); border-radius: 6px; text-align: center; }
.guide-cta h2 { font-family: var(--serif); font-weight: 700; color: var(--violet-600); font-size: 1.6rem; margin-bottom: .6rem; }
.guide-cta__sub { font-family: var(--sans); font-size: 1rem; color: var(--ink-soft); max-width: 46rem; margin: 0 auto 1.2rem; }
@media (max-width: 880px) { .guide { grid-template-columns: 1fr; } .toc { display: none; } }

/* ==========================================================================
   COURSE / VIDEO PAGE (reference: dark hero, title left, video right,
   play opens a YouTube lightbox, colored program band below)
   ========================================================================== */
.page--dark { background: var(--bg-950); color: var(--white); }
.nav--dark { position: sticky; top: 0; z-index: 20; background: rgba(11,11,13,.86); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,.08); }
.nav--dark .brand__name { color: var(--white); }
.nav--dark .nav__links a { color: var(--white); }
.nav--dark .nav__links a:hover { color: var(--cyan); }
.nav--dark .nav__links .btn { color: var(--white); }

.course-hero { position: relative; overflow: hidden; padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(4rem, 9vw, 7rem); min-height: 72vh; display: flex; align-items: center; }
.course-hero__bg { position: absolute; inset: -30px; z-index: 0; background-size: cover; background-position: center 25%; filter: blur(6px) saturate(.35) brightness(.4); opacity: .7; }
.course-hero__bg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 20% 30%, rgba(199,0,255,.16), transparent 70%), linear-gradient(90deg, rgba(11,11,13,.88), rgba(11,11,13,.5) 60%, rgba(11,11,13,.75)); }
.course-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.course-hero__kicker { font-family: var(--sans); font-size: 1rem; color: var(--cyan); margin-bottom: .8rem; }
.course-hero__title { font-family: var(--serif); font-weight: 700; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.12; }
.course-hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.btn--outline { background: transparent; border: 1px solid rgba(255,255,255,.7); color: var(--white); box-shadow: none; }
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); box-shadow: none; }
.course-video { position: relative; aspect-ratio: 16 / 9; border-radius: 10px; overflow: hidden; background: #000; box-shadow: 0 40px 80px -30px rgba(0,0,0,.9); cursor: pointer; }
.course-video img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.course-video:hover img { transform: scale(1.03); }
.course-video__play { position: absolute; inset: 0; margin: auto; width: 80px; height: 80px; border-radius: 50%; border: 0; background: rgba(255,255,255,.92); color: var(--bg-900); display: grid; place-items: center; cursor: pointer; transition: transform .2s; }
.course-video:hover .course-video__play { transform: scale(1.06); }
.course-video__play svg { margin-left: 5px; }
.course-video__dur { position: absolute; right: .8rem; bottom: .8rem; font-family: var(--sans); font-size: .85rem; background: rgba(0,0,0,.7); padding: .25rem .5rem; border-radius: 4px; }
@media (max-width: 860px) { .course-hero { min-height: 0; padding-top: 3rem; } .course-hero__inner { grid-template-columns: 1fr; } }

/* Lightbox (YouTube embed over the page) */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; background: rgba(0,0,0,.9); }
.lightbox.is-open { display: grid; place-items: center; padding: 1rem; }
.lightbox__frame { position: relative; width: min(100%, 1180px); aspect-ratio: 16 / 9; background: #000; border-radius: 8px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,.8); }
.lightbox__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lightbox__close { position: absolute; top: 1rem; right: 1rem; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; display: grid; place-items: center; }
.lightbox__close:hover { background: rgba(255,255,255,.25); }

/* Program band (reference: colored band with wordmark — WWA violet gradient) */
.band { background: linear-gradient(135deg, #8b5cf6, #a855f7); color: var(--white); text-align: center; padding: clamp(3.5rem, 8vw, 6rem) 0; }
.band__mark { display: inline-flex; flex-direction: column; align-items: center; gap: .2rem; margin-bottom: 1.4rem; }
.band__initial { width: 112px; height: 112px; border-radius: 50%; overflow: hidden; border: 4px solid rgba(255,255,255,.9); box-shadow: 0 20px 40px -16px rgba(0,0,0,.5), 0 0 0 8px rgba(255,255,255,.12); }
.band__initial img { width: 100%; height: 100%; object-fit: cover; }
.band__word { font-family: var(--serif); font-weight: 700; font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: .12em; text-transform: uppercase; line-height: 1.1; margin-top: .6rem; }
.band__sub { font-family: var(--sans); font-weight: 300; font-size: clamp(1.1rem, 2.2vw, 1.6rem); letter-spacing: .5em; text-transform: uppercase; margin-left: .5em; }
.band__copy { max-width: 60rem; margin: 0 auto; font-family: var(--sans); font-weight: 400; font-size: clamp(1rem, 1.6vw, 1.25rem); line-height: 1.5; }
.band .btn { margin-top: 1.8rem; background: var(--white); color: var(--ink); box-shadow: 0 16px 36px -14px rgba(0,0,0,.45); }
.band .btn:hover { background: #f1e6f7; }

.more { background: radial-gradient(900px 360px at 50% 0, rgba(199,0,255,.2), transparent 70%), var(--plum-700); color: var(--white); padding: clamp(3rem, 7vw, 5rem) 0 clamp(3.5rem, 8vw, 6rem); }
.more .education__title { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
.more .edu-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .more .edu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .more .edu-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   HOME (reference: calebralston.com — white two-column hero with faint
   monogram, education band, light "inside" section with dark cards)
   ========================================================================== */
.home-hero { position: relative; overflow: hidden; background: var(--white); color: var(--ink); padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 8vw, 7rem); }
.home-hero__mark {
  position: absolute; right: -1%; top: 50%; transform: translateY(-50%); z-index: 0;
  font-family: var(--serif); font-weight: 900; font-size: clamp(24rem, 62vw, 50rem); line-height: 1;
  color: #f3eef7; user-select: none; pointer-events: none;
}
.home-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.home-hero__eyebrow { font-family: var(--sans); font-weight: 600; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: var(--violet-600); }
.home-hero__title { font-family: var(--serif); font-weight: 700; font-size: clamp(2.3rem, 4.6vw, 3.7rem); line-height: 1.1; letter-spacing: -.01em; margin-top: .9rem; text-wrap: balance; }
.home-hero__title span { color: var(--violet-600); }
.home-hero__sub { font-family: var(--sans); font-weight: 400; font-size: clamp(1.02rem, 1.4vw, 1.18rem); line-height: 1.6; color: var(--ink-soft); margin-top: 1.4rem; max-width: 34rem; }
.home-hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; margin-top: 1.9rem; }
.home-hero__cta .btn { padding: 1.1rem 2.4rem; font-size: 1.05rem; }
.home-hero__proof { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: 1rem; color: var(--ink-soft); margin-top: 1.2rem; }
.home-hero .video { width: 100%; border-radius: 14px; box-shadow: 0 40px 80px -30px rgba(0,0,0,.45), 0 0 0 1px rgba(0,0,0,.05); }
@media (max-width: 900px) {
  .home-hero__inner { grid-template-columns: 1fr; }
  .home-hero__mark { font-size: 22rem; right: -12%; top: 4%; transform: none; }
}
@media (max-width: 600px) { .home-hero__cta .btn { width: 100%; } }

.section-title { text-align: center; font-family: var(--serif); font-weight: 700; font-size: clamp(2rem, 4.2vw, 3.1rem); line-height: 1.15; }

.inside { background: #f5f4f7; color: var(--ink); padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.inside__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; margin-top: clamp(2rem, 4vw, 3rem); }
.inside .mockup { margin: 0 auto; width: min(100%, 400px); }
.inside__cards { display: grid; gap: 1.1rem; }
.feature { background: var(--bg-900); color: var(--white); border-radius: 12px; padding: 1.6rem 1.8rem; border: 1px solid rgba(255,255,255,.06); box-shadow: 0 24px 50px -24px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06); }
.feature__icon { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(199,0,255,.16); color: var(--cyan); font-family: var(--sans); font-weight: 700; font-size: .85rem; letter-spacing: .04em; }
.feature h3 { font-family: var(--serif); font-weight: 700; font-size: 1.45rem; line-height: 1.2; margin-top: .9rem; }
.feature p { font-family: var(--sans); font-size: 1rem; line-height: 1.55; color: rgba(255,255,255,.78); margin-top: .55rem; }
.inside__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: clamp(2.2rem, 4vw, 3.2rem); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid #cfcbd3; box-shadow: none; }
.btn--ghost:hover { background: var(--white); border-color: var(--violet-600); color: var(--violet-600); box-shadow: none; }
@media (max-width: 860px) { .inside__grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .inside__cta .btn { width: 100%; } }

/* smaller play button on phones (must come after the base .video__play rule) */
@media (max-width: 600px) {
  .video__play { width: 56px; height: 56px; }
  .video__play svg { width: 18px; height: 21px; }
}
