/* =================================================================
   DG Coaching — landing page
   Palette
     ink    #14181d  text
     paper  #ffffff  base
     mist   #f5f6f4  alt section background
     green  #0f9d6b  accent / CTA  (darker: #0b7e55)
     slate  #59636e  muted text
     line   #e3e5e1  hairline
   Type: Archivo (display) · Hanken Grotesk (body)
   ================================================================= */

:root {
  --ink: #14181d;
  --paper: #ffffff;
  --mist: #f5f6f4;
  --green: #0f9d6b;
  --green-dark: #0b7e55;
  --slate: #59636e;
  --line: #e3e5e1;

  --display: "Archivo", system-ui, sans-serif;
  --body: "Hanken Grotesk", system-ui, sans-serif;

  --maxw: 1080px;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- shared ---------- */
.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 0.75rem;
}
.section-head { max-width: var(--maxw); margin: 0 auto 2.25rem; padding: 0 var(--pad); }
.section-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 0.9rem 1.6rem;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-dark); transform: translateY(-2px); }

:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem var(--pad);
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; color: var(--ink); }
.brand__mark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.06em;
  line-height: 1;
  display: inline-flex;
}
.brand__d { color: var(--ink); }
.brand__g { color: var(--green); margin-left: -0.18em; }
.brand__word {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  padding-top: 0.18rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.2vw, 1.8rem);
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.9rem;
}
.nav__links a { text-decoration: none; color: var(--slate); }
.nav__links a:hover { color: var(--ink); }
.nav__report {
  background: var(--green);
  color: #fff !important;
  padding: 0.55rem 0.95rem;
  border-radius: 4px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.nav__report:hover { background: var(--green-dark); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 84vh, 740px);
  display: flex;
  flex-direction: column;
  /* hero.jpg goes in this folder. Gradient keeps left-side text readable. */
  background:
    linear-gradient(90deg, rgba(8, 12, 16, 0.86) 0%, rgba(8, 12, 16, 0.58) 50%, rgba(8, 12, 16, 0.2) 100%),
    url("hero.jpg") center / cover no-repeat,
    #0b1014;
}
.hero__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad);
}
.hero__eyebrow { color: #46cf95; margin-bottom: 1.1rem; }
.hero__title {
  font-family: var(--display);
  font-weight: 800;
  color: #fff;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.3rem;
  max-width: 22ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.hero__sub {
  color: #eef1f3;
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
  line-height: 1.55;
  max-width: 54ch;
  margin: 0;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}
.hero__quote {
  margin: 0 0 1rem;
  max-width: 60ch;
  color: #eef1f3;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.5;
  font-style: italic;
  border-left: 3px solid var(--green);
  padding-left: 1.1rem;
}
.hero__cite {
  margin: 0;
  color: #aeb6bd;
  font-family: var(--display);
  font-size: 0.92rem;
}
.hero__cite strong { color: #fff; }

/* ---------- hero testimonial ---------- */
.quote-hero {
  background: var(--ink);
  color: #fff;
  padding: clamp(3rem, 7vw, 5rem) var(--pad);
  text-align: center;
}
.quote-hero__text {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  line-height: 1.42;
  letter-spacing: -0.01em;
  max-width: 50ch;
  margin: 0 auto 1.4rem;
}
.quote-hero__cite { font-size: 0.95rem; color: #aeb6bd; margin: 0; }
.quote-hero__cite strong { color: #fff; }

/* ---------- stakes ---------- */
.stakes { padding: clamp(3.5rem, 8vw, 6rem) var(--pad); }
.stakes__inner { max-width: 680px; margin: 0 auto; }
.stakes p {
  margin: 0 0 0.85rem;
  color: var(--ink);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.4;
}
.stakes__line {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem) !important;
  letter-spacing: -0.01em;
  margin: 1.4rem 0 1.4rem !important;
}
.stakes strong { color: var(--green); }

/* ---------- make money model ---------- */
.model { background: var(--mist); padding: clamp(3.5rem, 8vw, 6rem) 0; }
.model__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.model__video { position: sticky; top: 5rem; }
.model__vidframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  display: block;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.acc { border-bottom: 1px solid var(--line); }
.acc:first-child { border-top: 1px solid var(--line); }
.acc__sum {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.2rem 2rem 1.2rem 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.2;
  position: relative;
}
.acc__sum::-webkit-details-marker { display: none; }
.acc__sum::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--green);
}
.acc[open] .acc__sum::after { content: "\2013"; }
.acc__num {
  flex: none;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: var(--green);
  width: 2rem;
  height: 2rem;
  border-radius: 4px;
  display: grid;
  place-items: center;
  line-height: 1;
}
.acc__body { padding: 0 0 1.4rem 2.9rem; color: var(--slate); }
.acc__body p { margin: 0 0 0.9rem; }
.acc__body p:last-child { margin-bottom: 0; }
@media (max-width: 760px) {
  .model__grid { grid-template-columns: 1fr; }
  .model__video { position: static; }
}

/* ---------- coaching strategy ---------- */
.coaching { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.coaching__body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.coaching__body p { margin: 0 0 1.3rem; }

/* ---------- video ---------- */
.video {
  max-width: 820px;
  margin: 0 auto 2.75rem;
  padding: 0 var(--pad);
}
.video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  display: block;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* ---------- apply / CTA ---------- */
.apply {
  background: var(--ink);
  color: #fff;
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
  text-align: center;
}
.apply__head {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 1.2rem;
}
.apply__sub {
  max-width: 48ch;
  margin: 0 auto 2.5rem;
  color: #c2c9cf;
  font-size: 1.1rem;
}
.formwrap {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.formwrap__frame {
  width: 100%;
  min-height: 760px;
  border: 0;
  display: block;
}

/* ---------- second testimonial ---------- */
.quote-2 {
  padding: clamp(3.5rem, 8vw, 5.5rem) var(--pad);
  text-align: center;
}
.quote-2__text {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 24ch;
  margin: 0 auto 1.2rem;
}
.quote-2__cite { color: var(--slate); margin: 0; }
.quote-2__cite strong { color: var(--ink); }

/* ---------- footer ---------- */
.foot {
  border-top: 1px solid var(--line);
  padding: 1.75rem var(--pad);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-family: var(--display);
  font-size: 0.85rem;
  color: var(--slate);
}
.foot__link { text-decoration: none; color: var(--ink); font-weight: 600; }
.foot__link:hover { color: var(--green); }

/* ---------- responsive ---------- */
@media (max-width: 620px) {
  .brand__word { display: none; }
  .nav__links { gap: 0.8rem; font-size: 0.82rem; }
  .nav__links a:first-child { display: none; } /* hide About on tiny screens, keep Contact + report */
  .principle { gap: 0.9rem; }
}

/* ---------- motion preference ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}

/* =================================================================
   REPORT PAGE (report.html)
   Reuses palette, type, nav, footer, .btn, .quote-hero, .quote-2
   ================================================================= */

/* ---------- report hero ---------- */
.rhero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--pad);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.rhero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.4vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.3rem;
  white-space: nowrap;
}
.rhero__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.rhero__bullets li {
  position: relative;
  padding-left: 1.9rem;
  font-size: 1.08rem;
  color: var(--ink);
}
.rhero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 2px;
  background: var(--green);
}

/* ---------- opt-in card ---------- */
.optin {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2rem);
  position: sticky;
  top: 5rem;
  color: var(--ink);
}
.optin__head {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 0 0.3rem;
  color: var(--ink);
}
.optin__sub { color: var(--slate); margin: 0 0 1.2rem; font-size: 0.95rem; }
.optin__frame {
  width: 100%;
  border: 0;
  display: block;
  background: #fff;
  border-radius: 4px;
}

/* ---------- report article ---------- */
.report {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) var(--pad);
}
.report__head { margin-bottom: 2.5rem; }
.report__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
}
.report__sub {
  font-size: 1.15rem;
  color: var(--slate);
  margin: 0;
}
.report__body { font-size: 1.12rem; line-height: 1.7; }
.report__body p { margin: 0 0 1.25rem; }
.report__h {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 2.6rem 0 1rem;
  padding-top: 1.6rem;
  border-top: 2px solid var(--ink);
}
.src { font-size: 0.85rem; color: var(--slate); font-style: italic; }

/* ordered "levers" list */
.levers { margin: 0 0 1.5rem; padding-left: 1.3rem; }
.levers li { margin-bottom: 0.6rem; }

/* check-style bullets */
.checks { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 0.7rem; }
.checks li { position: relative; padding-left: 2rem; }
.checks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 800;
  font-family: var(--display);
}

/* pull quote */
.report__pull {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 1.8rem 0;
  padding: 0.2rem 0 0.2rem 1.3rem;
  border-left: 4px solid var(--green);
}

/* TRACK box */
.track {
  margin: 0 0 1.5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.track__row {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
}
.track__row:last-child { border-bottom: 0; }
.track__row:nth-child(odd) { background: var(--mist); }
.track dt {
  font-family: var(--display);
  font-weight: 800;
  color: var(--green);
  font-size: 1.05rem;
}
.track dd { margin: 0; color: var(--ink); }

/* endorsement box (closing testimonial inside the report body) */
.report__endorse {
  margin: 2rem 0 0.5rem;
  background: var(--mist);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
}
.report__endorse p {
  margin: 0 0 0.8rem;
  font-size: 1.08rem;
  font-style: italic;
  color: var(--ink);
}
.report__endorse cite {
  font-family: var(--display);
  font-weight: 700;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--slate);
}

/* ---------- report CTA ---------- */
.rcta {
  background: var(--ink);
  color: #fff;
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
  text-align: center;
}
.rcta__head {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.08;
  margin: 0 0 1rem;
}
.rcta__lead {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: #fff;
  max-width: 34ch;
  margin: 0 auto 0.8rem;
  text-wrap: balance;
}
.rcta__sub {
  max-width: 60ch;
  margin: 0 auto 2.5rem;
  color: #c2c9cf;
  font-size: 1.05rem;
}
.rcta__grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  text-align: left;
}
.cal {
  margin: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  height: 780px;
  padding: 0.5rem;
}
.cal #my-cal-inline-30min { height: 100%; }
.optin--oncta { position: static; top: auto; }
@media (max-width: 820px) {
  .rcta__grid { grid-template-columns: 1fr; }
}

/* ---------- repeat opt-in band ---------- */
.optin-band {
  background: var(--mist);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 7vw, 5rem) var(--pad);
}
.optin-band__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.optin-band__head {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin: 0 0 0.4rem;
}
.optin-band__sub { color: var(--slate); margin: 0 0 1.8rem; font-size: 1.05rem; }
.optin__frame--band { max-width: 520px; margin: 0 auto; }

/* ---------- report responsive ---------- */
@media (max-width: 860px) {
  .rhero { grid-template-columns: 1fr; }
  .optin { position: static; }
}
@media (max-width: 560px) {
  .track__row { grid-template-columns: 1fr; gap: 0.25rem; }
}

/* =================================================================
   ROUND-3 ADDITIONS
   ================================================================= */

/* ---------- methodology bar (white section below hero) ---------- */
.logobar {
  background: #fff;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 1.6rem 0;
}
.logobar__track {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  width: max-content;
  animation: logoscroll 40s linear infinite;
}
.logobar:hover .logobar__track { animation-play-state: paused; }
.logobar img {
  height: 56px;
  width: auto;
  flex: none;
  display: block;
  object-fit: contain;
}
@keyframes logoscroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- stakes section headline ---------- */
.stakes__head {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 1.4rem;
  color: var(--ink);
}

/* ---------- landing booking grid (calendar left, testimonial right) ---------- */
.apply__grid {
  max-width: 1000px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
  text-align: left;
}
.apply__quote {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid var(--green);
  border-radius: 8px;
}
.apply__quote p {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.3;
  color: #fff;
}
.apply__quote cite {
  font-style: normal;
  font-family: var(--display);
  font-weight: 600;
  color: #aeb6bd;
  font-size: 0.95rem;
}
@media (max-width: 820px) {
  .apply__grid { grid-template-columns: 1fr; }
}

/* ---------- footer terms link ---------- */
.foot__legal-link { color: var(--slate); text-decoration: underline; }
.foot__legal-link:hover { color: var(--green); }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .logobar__track { animation: none; }
}

/* closing line of the coaching section */
.coaching__close {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.2;
  margin-top: 0.6rem;
}
.coaching__close strong { color: var(--green); }