/* Christian Hansen V1.2 — corporate speaker site */
:root {
  --navy: #0c1b2a;
  --navy-2: #132a40;
  --ink: #1a2332;
  --muted: #5b6675;
  --line: #e6ebf0;
  --paper: #f7f5f1;
  --white: #ffffff;
  --accent: #c45c26;
  --accent-hover: #a84b1c;
  --gold: #c9a227;
  --success: #1f6b4a;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(12, 27, 42, 0.08);
  --max: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 1rem; top: 1rem; background: #fff; padding: .5rem 1rem; z-index: 100; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 72px;
}
.brand { display: flex; align-items: center; gap: .65rem; color: var(--navy); font-weight: 700; }
.brand img { height: 40px; width: auto; }
.brand span { font-size: .95rem; letter-spacing: .02em; }
.nav { display: flex; align-items: center; gap: .25rem 1.1rem; flex-wrap: wrap; }
.nav a {
  color: var(--navy-2); font-size: .9rem; font-weight: 560;
  padding: .35rem 0; border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--accent); border-bottom-color: var(--accent); }
.nav-cta {
  background: var(--navy) !important; color: #fff !important;
  padding: .55rem 1rem !important; border-radius: 999px !important;
  border: none !important;
}
.nav-cta:hover { background: var(--navy-2) !important; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 8px; padding: .45rem .7rem; font-size: .9rem; cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  min-height: clamp(520px, 78vh, 720px);
  display: grid;
  align-items: stretch;
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media video,
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(12,27,42,.92) 0%, rgba(12,27,42,.78) 42%, rgba(12,27,42,.35) 100%),
    linear-gradient(180deg, rgba(12,27,42,.25) 0%, rgba(12,27,42,.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items: center;
  padding: 4.5rem 0 3.5rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.eyebrow {
  display: inline-block;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .85rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.12; margin: 0 0 1rem; font-weight: 600;
  max-width: 14ch;
}
.hero .lede {
  font-size: 1.08rem; color: rgba(255,255,255,.88);
  max-width: 38ch; margin: 0 0 1.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .85rem 1.25rem; border-radius: 999px; font-weight: 650; font-size: .95rem;
  border: 1px solid transparent; cursor: pointer; transition: .15s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-ghost {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); color: #fff; }
.btn-outline {
  background: transparent; color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.demo-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  backdrop-filter: blur(6px);
  max-width: 340px;
  justify-self: end;
}
.demo-card h3 {
  margin: 0 0 .65rem; font-size: .85rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold); font-weight: 700;
}
.demo-card p { margin: 0; color: rgba(255,255,255,.9); font-size: .95rem; }
.demo-card .method {
  margin-top: .9rem; padding-top: .9rem;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .85rem; color: rgba(255,255,255,.75);
}

/* Sections */
section { padding: 4rem 0; }
.section-head { max-width: 640px; margin-bottom: 2rem; }
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin: 0 0 .6rem; line-height: 1.2;
}
.section-head p { margin: 0; color: var(--muted); }
.paper { background: var(--paper); }
.navy-band {
  background: var(--navy); color: #fff;
  padding: 3.25rem 0;
}
.navy-band a { color: #fff; }
.quote-line {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.35; margin: 0; max-width: 28ch;
}

/* Logo strip */
.logo-strip {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.25rem;
  align-items: center; justify-content: center;
  padding: 1.75rem 0;
}
.logo-strip img {
  height: 36px; width: auto; max-width: 120px;
  object-fit: contain; filter: grayscale(1) contrast(1.05);
  opacity: .78;
}
.logo-strip.light img { filter: brightness(0) invert(1); opacity: .85; }
.proof-caption {
  text-align: center; color: var(--muted); font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
  margin-bottom: .75rem;
}

/* Cards */
.grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: .75rem;
}
.card h3 { margin: 0; font-size: 1.15rem; }
.card p { margin: 0; color: var(--muted); flex: 1; }
.card .card-link { font-weight: 650; color: var(--accent); }
/* Affordance: only linked tiles look / act interactive */
a.card-as-link,
a.book-proof.card-as-link {
  color: inherit;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  cursor: pointer;
}
a.card-as-link:hover,
a.book-proof.card-as-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(12,27,42,.12);
  border-color: rgba(196,92,38,.35);
  color: inherit;
}
a.card-as-link:hover .card-link,
a.card-as-link:focus-visible .card-link { color: var(--accent-hover); }
a.card-as-link:focus-visible,
a.book-proof.card-as-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Books as proof */
.books-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.book-proof {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}
.book-proof img {
  width: 100%; height: 220px; object-fit: cover; object-position: center top;
  background: #111;
}
.book-proof .body { padding: 1.15rem 1.25rem 1.35rem; }
.book-proof h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.book-proof p { margin: 0; color: var(--muted); font-size: .92rem; }
.chip {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  background: #f0e7df; color: var(--accent); padding: .25rem .55rem;
  border-radius: 999px; margin-bottom: .55rem;
}

/* Split */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: center;
}
.split img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  max-height: 480px;
}
.cutout-wrap {
  background: linear-gradient(180deg, #eef2f6, #dfe7ef);
  border-radius: var(--radius);
  display: flex; align-items: flex-end; justify-content: center;
  min-height: 420px; overflow: hidden;
}
.cutout-wrap img {
  max-height: 440px; width: auto; box-shadow: none;
  object-fit: contain; object-position: bottom center;
}

/* Process steps */
.steps { display: grid; gap: 1rem; }
.step {
  display: grid; grid-template-columns: 48px 1fr; gap: 1rem;
  padding: 1.15rem 1.25rem; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center; font-weight: 700;
}
.step h3 { margin: 0 0 .25rem; font-size: 1.05rem; }
.step p { margin: 0; color: var(--muted); font-size: .95rem; }
.note {
  background: #fff8ef; border-left: 4px solid var(--accent);
  padding: 1rem 1.15rem; border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink); margin-top: 1.25rem;
}

/* Forms */
.form-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.75rem;
  box-shadow: var(--shadow); max-width: 640px;
}
.form-grid { display: grid; gap: 1rem; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
label { display: grid; gap: .35rem; font-size: .88rem; font-weight: 650; color: var(--navy); }
input, select, textarea {
  font: inherit; padding: .7rem .8rem; border: 1px solid #cfd7e0;
  border-radius: 8px; background: #fff; color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(196,92,38,.35); border-color: var(--accent);
}
.promise {
  display: flex; gap: .6rem; align-items: flex-start;
  background: #eef7f2; color: var(--success);
  padding: .85rem 1rem; border-radius: 8px; font-size: .92rem; font-weight: 600;
}
.form-note { color: var(--muted); font-size: .85rem; margin: 0; }
.thankyou {
  display: none; background: #eef7f2; border: 1px solid #b7dcc8;
  color: var(--success); padding: 1rem 1.15rem; border-radius: 8px; font-weight: 600;
}
.thankyou.show { display: block; }

/* Lists */
.check-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.check-list li {
  position: relative; padding-left: 1.5rem; margin-bottom: .55rem; color: var(--muted);
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .45rem;
  width: .55rem; height: .55rem; border-radius: 50%; background: var(--accent);
}

/* Footer */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,.82);
  padding: 3rem 0 2rem; margin-top: 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem; margin-bottom: 2rem;
}
.site-footer h4 { color: #fff; margin: 0 0 .85rem; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; }
.site-footer a { color: rgba(255,255,255,.82); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.footer-brand img { height: 36px; margin-bottom: .75rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.25rem; display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 1rem; font-size: .85rem;
}
.socials { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Page hero (inner) */
.page-hero {
  background: var(--navy); color: #fff;
  padding: 3.5rem 0 2.75rem;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  margin: 0 0 .75rem; line-height: 1.15; max-width: 18ch;
}
.page-hero p { margin: 0; color: rgba(255,255,255,.85); max-width: 48ch; font-size: 1.05rem; }

/* Utility */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.narrow { max-width: 720px; margin-inline: auto; }
.kicker { color: var(--accent); font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 900px) {
  .hero-content, .split, .grid-3, .books-row, .footer-grid, .form-grid.two {
    grid-template-columns: 1fr;
  }
  .demo-card { justify-self: start; max-width: none; }
  .hero { min-height: 560px; }
  .hero h1 { max-width: none; }
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 72px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 1rem; flex-direction: column; align-items: stretch;
  }
  .nav.open { display: flex; }
  .nav a { padding: .65rem .25rem; }
  .nav-cta { text-align: center; }
}

/* Page-specific layout helpers */
.layout-2 {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: start;
}
.layout-2.equal { grid-template-columns: 1fr 1fr; }
.sticky-card { position: sticky; top: 96px; }
@media (max-width: 900px) {
  .layout-2, .layout-2.equal { grid-template-columns: 1fr; }
  .sticky-card { position: static; }
}

/* V1.1 — Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.4rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.testimonial-top {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.testimonial-portrait {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--line);
}
.testimonial-meta h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--navy);
}
.testimonial-meta .role {
  margin: .15rem 0 0;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 560;
}
.testimonial blockquote {
  margin: 0;
  padding: 0;
  border: none;
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--ink);
  flex: 1;
}
.testimonial blockquote::before {
  content: "“";
  color: var(--accent);
  font-size: 1.35em;
  line-height: 0;
  margin-right: .1em;
}
.testimonial blockquote::after {
  content: "”";
  color: var(--accent);
  font-size: 1.35em;
  line-height: 0;
  margin-left: .05em;
}

/* V1.1 — Photo bands */
.photo-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.photo-band.photo-band-2 {
  grid-template-columns: repeat(2, 1fr);
}
.photo-band figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  aspect-ratio: 4 / 3;
}
.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-band figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* Watch / local video */
.watch-video {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #0c1b2a;
  aspect-ratio: 16 / 9;
}
.watch-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 22%;
}

/* Walk-out outcomes block */
.walk-out {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.35rem;
  margin-top: 1.5rem;
}
.walk-out h3 {
  margin: 0 0 .65rem;
  font-size: 1.05rem;
  color: var(--navy);
}
.walk-out p {
  margin: 0 0 .75rem;
  color: var(--muted);
  font-size: .95rem;
}
.walk-out ul { margin-top: .5rem; }
.attr-note {
  font-size: .8rem;
  color: var(--muted);
  font-style: italic;
  margin: .5rem 0 0;
}

.about-wide {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}
.about-wide img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: center 30%;
}

@media (max-width: 900px) {
  .testimonials, .photo-band, .photo-band.photo-band-2 {
    grid-template-columns: 1fr;
  }
  .photo-band {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .photo-band { grid-template-columns: 1fr; }
}


/* ========== V1.2 — AI-noise module ========== */
.ai-noise {
  background: linear-gradient(180deg, #0c1b2a 0%, #132a40 100%);
  color: #fff;
  padding: 3.5rem 0;
}
.ai-noise .kicker { color: var(--gold); }
.ai-noise h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin: 0 0 .85rem;
  line-height: 1.2;
  max-width: 22ch;
}
.ai-noise-persona {
  margin: 0 0 2rem;
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  max-width: 58ch;
}
.ai-noise-persona em { color: #fff; font-style: italic; }
.ai-noise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.ai-noise-col {
  border-radius: var(--radius);
  padding: 1.4rem 1.45rem 1.5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
}
.ai-noise-context {
  border-top: 3px solid rgba(255,255,255,.35);
}
.ai-noise-method {
  border-top: 3px solid var(--accent);
  background: rgba(196,92,38,.12);
  border-color: rgba(196,92,38,.35);
}
.ai-noise-col h3 {
  margin: 0 0 .55rem;
  font-size: 1.08rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.label-tag {
  display: inline-block;
  width: fit-content;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .55rem;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
}
.label-tag.method {
  background: var(--accent);
  color: #fff;
}
.ai-noise-note {
  margin: 0 0 .85rem;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  font-style: italic;
}
.ai-noise-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .7rem;
}
.ai-noise-col li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(255,255,255,.88);
  font-size: .95rem;
  line-height: 1.45;
}
.ai-noise-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
}
.ai-noise-method li::before { background: var(--accent); }
.ai-noise-cta { margin-top: 1.75rem; }
.ai-noise .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.ai-noise .btn-outline:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}

/* ========== V1.2 — Watch media cards ========== */
.watch-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.watch-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.watch-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(12,27,42,.12);
  border-color: rgba(196,92,38,.35);
  color: inherit;
}
.watch-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.watch-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #111;
  overflow: hidden;
}
.watch-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.watch-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(12,27,42,.78);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .9rem;
  padding-left: 3px;
  border: 2px solid rgba(255,255,255,.65);
  transition: background .15s ease;
}
.watch-card:hover .watch-play { background: var(--accent); }
.watch-card-body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.watch-source {
  margin: 0;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}
.watch-card-body h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.3;
}
.watch-takeaway {
  margin: .25rem 0 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
  flex: 1;
}

/* Problem→method frame on offer pages */
.problem-method {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  margin-bottom: 2rem;
}
.problem-method h2 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  margin: 0 0 .75rem;
  color: var(--navy);
}
.problem-method .pm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.problem-method .pm-col h3 {
  margin: 0 0 .5rem;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}
.problem-method .pm-col p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

@media (max-width: 900px) {
  .ai-noise-grid,
  .watch-cards,
  .problem-method .pm-grid {
    grid-template-columns: 1fr;
  }
}


/* ========== V1.3 — Book frameworks as OS (no full table) ========== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin: 1.5rem 0 0;
}
.pillars-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem 1.35rem;
  box-shadow: var(--shadow);
}
.pillars-item h3 {
  margin: 0 0 .45rem;
  font-size: 1.02rem;
  color: var(--navy);
  line-height: 1.3;
}
.pillars-item p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
}
.pillars-lead {
  margin: 0 0 .25rem;
  color: var(--muted);
  max-width: 62ch;
}
.pillars-source {
  margin: 1rem 0 0;
  font-size: .8rem;
  color: var(--muted);
  font-style: italic;
}
.pillars.on-navy .pillars-item {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  border-top-color: var(--accent);
  box-shadow: none;
}
.pillars.on-navy .pillars-item h3 { color: #fff; }
.pillars.on-navy .pillars-item p { color: rgba(255,255,255,.82); }
.pillars.on-navy .pillars-lead,
.pillars.on-navy .pillars-source { color: rgba(255,255,255,.7); }

.short-contrast {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: .75rem 1rem;
  align-items: stretch;
  margin: 1.25rem 0 0;
  padding: 1rem 1.15rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
}
.short-contrast.on-paper {
  background: var(--white);
  border-color: var(--line);
}
.short-contrast .sc-col {
  padding: .35rem .25rem;
}
.short-contrast .sc-label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: .35rem;
}
.short-contrast.on-paper .sc-label { color: var(--muted); }
.short-contrast .sc-col.selective .sc-label,
.short-contrast .sc-col.influence .sc-label {
  color: var(--gold);
}
.short-contrast.on-paper .sc-col.selective .sc-label,
.short-contrast.on-paper .sc-col.influence .sc-label {
  color: var(--accent);
}
.short-contrast .sc-col p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.4;
  color: rgba(255,255,255,.88);
}
.short-contrast.on-paper .sc-col p { color: var(--ink); }
.short-contrast .sc-col.selective,
.short-contrast .sc-col.influence {
  background: rgba(196,92,38,.14);
  border-radius: 8px;
  padding: .65rem .8rem;
  border: 1px solid rgba(196,92,38,.35);
}
.short-contrast.on-paper .sc-col.selective,
.short-contrast.on-paper .sc-col.influence {
  background: #fff8ef;
  border-color: rgba(196,92,38,.3);
}
.short-contrast .sc-vs {
  align-self: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.short-contrast.on-paper .sc-vs { color: var(--muted); }

.book-page-proof {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.75rem;
  align-items: start;
  margin-top: 1.5rem;
}
.book-page-proof figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}
.book-page-proof figure img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 420px;
  object-fit: contain;
  object-position: top center;
  background: #f0f0f0;
}
.book-page-proof figcaption {
  padding: 1rem 1.15rem 1.2rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.45;
}
.book-page-proof figcaption strong {
  display: block;
  color: var(--navy);
  margin-bottom: .35rem;
  font-size: .95rem;
}
.book-pages-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}
.book-pages-secondary figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}
.book-pages-secondary img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center top;
  opacity: .92;
}
.book-pages-secondary figcaption {
  padding: .65rem .85rem .85rem;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .pillars,
  .book-page-proof,
  .book-pages-secondary {
    grid-template-columns: 1fr;
  }
  .short-contrast {
    grid-template-columns: 1fr;
    gap: .65rem;
  }
  .short-contrast .sc-vs {
    text-align: center;
    padding: .15rem 0;
  }
}


/* Watch — full-width stack (video, then copy) */
.watch-block {
  padding: 2.5rem 0 3rem;
  background: var(--paper, #f7f6f3);
}
.watch-player {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  background: #0b1220;
  box-shadow: 0 18px 40px rgba(11, 18, 32, 0.18);
}
.watch-player video {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 16 / 9;
  background: #0b1220;
}
.watch-copy {
  max-width: 40rem;
  margin: 1.5rem auto 0;
  text-align: left;
}

/* Individuals — stacked portrait cover + form */
.indiv-stack .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 560px;
}
.indiv-intro .check-list { margin-top: 1rem; }
.indiv-cover {
  margin: 0;
  display: flex;
  justify-content: center;
}
.indiv-cover img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(11, 18, 32, 0.12);
}
.indiv-stack .form-card {
  margin: 0;
}

.logo-strip-captioned {
  align-items: flex-end;
}
.logo-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  max-width: 120px;
}
.logo-item figcaption {
  font-size: .68rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.3;
}
.specs-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .75rem;
  margin: 0 0 2rem;
}
.specs-strip span {
  font-size: .82rem;
  font-weight: 650;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .4rem .85rem;
}
.decision-helper {
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: 62ch;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: .85rem 0;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 650;
  color: var(--navy);
}
.faq-list details p {
  margin: .65rem 0 0;
  color: var(--muted);
  max-width: 62ch;
}
.paste-boss {
  margin-top: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}
.paste-boss h3 { margin: 0 0 .5rem; }
.paste-boss blockquote {
  margin: .75rem 0 0;
  padding: 1rem 1.1rem;
  background: var(--paper);
  border-left: 3px solid var(--accent);
  color: var(--ink);
  font-size: .95rem;
}
.media-kit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.bio-block h3 {
  font-size: 1rem;
  margin: 1.5rem 0 .5rem;
}
.bio-block p { color: var(--muted); max-width: 68ch; }
.testimonials-one { grid-template-columns: minmax(0, 28rem); }
.form-error {
  background: #fdecea;
  border: 1px solid #f5c2c0;
  color: #8a1f16;
  padding: 1rem 1.15rem;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.sheet-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.sheet-bio img {
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media video { display: none; }
}
@media (max-width: 900px) {
  .media-kit,
  .sheet-layout {
    grid-template-columns: 1fr;
  }
}
