/* ============================================================
   The Hero C.O.D.E. — Workshop Landing Page
   Design tokens from the Claude Design handoff (hifi, 1180px)
   ============================================================ */

:root {
  --bg-primary: #0B0E24;      /* primary dark navy */
  --bg-secondary: #11152F;    /* secondary panel navy */
  --card: #15193A;            /* card surface */
  --gold: #F2A33C;            /* primary accent */
  --magenta: #C42A6B;
  --blue: #4F8DF7;
  --green: #2FB985;
  --pink: #E879A8;
  --ink-on-gold: #14110F;
  --off-white: #F4EFE7;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background: var(--bg-primary);
  color: var(--off-white);
  font-family: 'Archivo', sans-serif;
}

img { display: block; }

a { text-decoration: none; }

.anton { font-family: 'Anton', sans-serif; font-weight: 400; }

/* Heavy labels: Archivo 700 per handoff (Archivo Black is the alternate) */
.heavy { font-family: 'Archivo', sans-serif; font-weight: 700; }

.kicker {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.hero {
  position: relative;
  height: 642px;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1.1s ease;
  opacity: 0;
}

.hero__slide.is-active { opacity: 1; }

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11,14,36,.97) 0%, rgba(11,14,36,.86) 38%, rgba(11,14,36,.3) 72%, rgba(11,14,36,.55) 100%);
}

.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 12% 30%, rgba(242,163,60,.18), transparent 55%);
}

.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  z-index: 3;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
}

.nav__star {
  width: 26px;
  height: 26px;
  background: var(--gold);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.nav__wordmark {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  letter-spacing: .1em;
  color: #fff;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(244,239,231,.75);
  transition: color .2s ease;
}

.nav__link:hover { color: #fff; }

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 2px;
  transition: background .2s ease, color .2s ease;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--ink-on-gold);
}

.hero__content {
  position: absolute;
  left: 48px;
  bottom: 72px;
  max-width: 620px;
  z-index: 2;
}

.hero__kicker {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero__title {
  font-family: 'Anton', sans-serif;
  font-size: 88px;
  line-height: .88;
  letter-spacing: .01em;
  margin: 0;
  color: #fff;
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__lede {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(244,239,231,.86);
  max-width: 500px;
  margin: 24px 0 30px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--ink-on-gold);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 3px;
  border: 0;
  cursor: pointer;
  transition: filter .2s ease, transform .2s ease;
}

.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.link-underline {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-bottom: 2px solid rgba(242,163,60,.6);
  padding-bottom: 3px;
  transition: border-color .2s ease;
}

.link-underline:hover { border-color: var(--gold); }

.hero__dots {
  position: absolute;
  right: 40px;
  bottom: 34px;
  display: flex;
  gap: 9px;
  z-index: 2;
}

.hero__dot {
  width: 26px;
  height: 5px;
  border-radius: 3px;
  background: rgba(244,239,231,.3);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .3s ease;
}

.hero__dot.is-active { background: var(--gold); }

/* ---------------- Framework ---------------- */

.framework {
  padding: 72px 48px;
  background: var(--bg-primary);
  position: relative;
}

.framework__dots {
  position: absolute;
  top: 40px;
  right: 48px;
  width: 160px;
  height: 160px;
  background-image: radial-gradient(rgba(242,163,60,.4) 1.5px, transparent 1.6px);
  background-size: 13px 13px;
  opacity: .5;
}

.framework h2 {
  font-family: 'Anton', sans-serif;
  font-size: 58px;
  line-height: .95;
  margin: 10px 0 14px;
  color: #fff;
}

.framework__intro {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(244,239,231,.7);
  max-width: 560px;
  margin: 0 0 44px;
}

.framework__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.move { padding-top: 22px; }
.move--c { border-top: 3px solid var(--magenta); }
.move--o { border-top: 3px solid var(--gold); }
.move--d { border-top: 3px solid var(--blue); }
.move--e { border-top: 3px solid var(--green); }

.move__letter {
  font-family: 'Anton', sans-serif;
  font-size: 64px;
  line-height: .8;
}

.move--c .move__letter { color: var(--magenta); }
.move--o .move__letter { color: var(--gold); }
.move--d .move__letter { color: var(--blue); }
.move--e .move__letter { color: var(--green); }

.move h3 {
  font-weight: 700;
  font-size: 17px;
  margin: 14px 0 8px;
  letter-spacing: .02em;
  color: var(--off-white);
}

.move p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(244,239,231,.66);
}

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

.about {
  background: var(--bg-secondary);
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(255,255,255,.07);
}

.about__media {
  flex: none;
  width: 420px;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.about__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(17,21,47,.9) 100%);
}

.about__body {
  flex: 1;
  padding: 60px 52px;
}

.about h2 {
  font-family: 'Anton', sans-serif;
  font-size: 52px;
  line-height: .95;
  margin: 10px 0 4px;
  color: #fff;
}

.about__subtitle {
  margin: 0 0 20px;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--gold);
  font-weight: 700;
}

.about__bio {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(244,239,231,.78);
  max-width: 560px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(244,239,231,.85);
}

.pill--gold { border-color: rgba(242,163,60,.5); color: var(--gold); }
.pill--pink { border-color: rgba(196,42,107,.6); color: var(--pink); }

/* ---------------- Testimonials ---------------- */

.reviews {
  padding: 72px 48px;
  background: var(--bg-primary);
}

.reviews__head {
  text-align: center;
  margin-bottom: 42px;
}

.reviews h2 {
  font-family: 'Anton', sans-serif;
  font-size: 54px;
  margin: 10px 0 0;
  color: #fff;
}

.reviews__row-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}

.reviews__row-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.quote-card {
  background: var(--card);
  border-radius: 6px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.quote-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,0,0,.35);
}

.quote-card--featured { padding: 34px; }

.quote-card__mark {
  font-family: 'Anton', sans-serif;
  font-size: 54px;
  color: var(--gold);
  line-height: .5;
}

.quote-card--featured .quote-card__text {
  margin: 8px 0 18px;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
}

.quote-card__text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244,239,231,.88);
}

.quote-card__name {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}

.quote-card--featured .quote-card__name { color: var(--gold); }

.quote-card__role {
  margin: 2px 0 0;
  font-size: 13px;
  color: rgba(244,239,231,.55);
}

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

.faq {
  padding: 72px 48px;
  background: var(--bg-secondary);
}

.faq h2 {
  font-family: 'Anton', sans-serif;
  font-size: 52px;
  margin: 0 0 34px;
  color: #fff;
}

.faq__item {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}

.faq__item:last-child {
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.faq__q {
  margin: 0 0 7px;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
}

.faq__a {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244,239,231,.68);
}

/* ---------------- Contact / final CTA ---------------- */

.contact {
  position: relative;
  padding: 84px 48px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(120deg, #C42A6B 0%, #7A2E8F 50%, #2B2D6E 100%);
}

.contact__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 120% at 50% -10%, rgba(242,163,60,.35), transparent 60%);
}

.contact__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.contact h2 {
  font-family: 'Anton', sans-serif;
  font-size: 64px;
  line-height: .92;
  margin: 0 0 16px;
  color: #fff;
}

.contact__lede {
  margin: 0 auto 40px;
  max-width: 500px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,.9);
}

.contact__card {
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: 40px;
  text-align: left;
}

.contact__card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 30px;
  line-height: 1.1;
  margin: 0 0 26px;
  color: #fff;
}

.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form__field { display: flex; flex-direction: column; }

.form__field--full { grid-column: 1 / -1; }

.form__field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(244,239,231,.75);
  margin-bottom: 8px;
}

.form__field label .req { color: var(--gold); }

.form__field input,
.form__field textarea {
  background: rgba(11,14,36,.65);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 3px;
  color: var(--off-white);
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  padding: 13px 14px;
  transition: border-color .2s ease;
}

.form__field input:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form__field textarea {
  resize: vertical;
  min-height: 110px;
}

.form__submit-row {
  grid-column: 1 / -1;
  margin-top: 6px;
  text-align: center;
}

.contact__meta {
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

.contact__meta a { color: rgba(255,255,255,.85); }
.contact__meta a:hover { color: #fff; }

/* Netlify honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

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

.footer {
  background: var(--bg-primary);
  text-align: center;
  padding: 32px 48px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 26px;
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(244,239,231,.7);
  transition: color .2s ease;
}

.footer__links a:hover { color: var(--gold); }

.footer__copy {
  margin: 0;
  font-size: 13px;
  color: rgba(244,239,231,.5);
}

/* ---------------- Legal pages ---------------- */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  background: var(--bg-primary);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.site-header .link-underline { font-size: 14px; }

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 88px;
}

.legal h1 {
  font-family: 'Anton', sans-serif;
  font-size: 54px;
  line-height: .95;
  margin: 10px 0 34px;
  color: #fff;
}

.legal p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(244,239,231,.78);
  margin: 0 0 22px;
}

.legal p strong { color: #fff; }

.legal a { color: var(--gold); }

.legal a:hover { text-decoration: underline; }

@media (max-width: 760px) {
  .site-header { padding: 20px 24px; }
  .legal { padding: 44px 20px 64px; }
  .legal h1 { font-size: 40px; }
}

/* ---------------- Thank-you page ---------------- */

.thanks {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background: var(--bg-primary);
}

.thanks__inner {
  max-width: 620px;
  text-align: center;
}

.thanks__star {
  width: 42px;
  height: 42px;
  margin: 0 auto 26px;
  background: var(--gold);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.thanks h1 {
  font-family: 'Anton', sans-serif;
  font-size: 64px;
  line-height: .92;
  margin: 0 0 22px;
  color: #fff;
}

.thanks p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(244,239,231,.82);
  margin: 0 0 12px;
}

.thanks__sig {
  color: var(--gold);
  font-weight: 700;
}

.thanks .btn-primary { margin-top: 26px; }

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

@media (max-width: 1024px) {
  .hero__title { font-size: 68px; }
  .framework__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
  .reviews__row-top { grid-template-columns: 1fr; }
  .reviews__row-bottom { grid-template-columns: 1fr; }
  .about__media { width: 340px; }
}

@media (max-width: 760px) {
  .nav { padding: 20px 24px; }
  .nav__links .nav__link { display: none; }
  .hero { height: 580px; }
  .hero__content { left: 24px; right: 24px; bottom: 56px; }
  .hero__title { font-size: 52px; }
  .hero__lede { font-size: 17px; }
  .hero__actions { flex-wrap: wrap; }
  .hero__dots { right: 24px; }
  .framework, .reviews, .faq { padding: 56px 24px; }
  .framework h2 { font-size: 42px; }
  .reviews h2, .faq h2 { font-size: 40px; }
  .about { flex-direction: column; }
  .about__media { width: 100%; height: 380px; }
  .about__fade { background: linear-gradient(180deg, transparent 60%, rgba(17,21,47,.9) 100%); }
  .about__body { padding: 44px 24px; }
  .about h2 { font-size: 38px; }
  .contact { padding: 64px 24px; }
  .contact h2 { font-size: 44px; }
  .contact__card { padding: 28px 20px; }
  .form__grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .framework__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 44px; }
}
