/* =========================================================================
   Shared site stylesheet — custom components layered on top of Tailwind CDN.
   Tailwind utility classes (used inline in the HTML) are NOT duplicated here.
   This file only holds things Tailwind utilities can't express cleanly:
   design tokens, publication (advertorial) components, offer components,
   shared legal/footer components, and focus/motion details.
   ========================================================================= */

:root {
  --pub-ink: #14181b;
  --pub-ink-soft: #40474d;
  --pub-mint: #147a45;
  --pub-mint-deep: #0d5c33;
  --pub-mint-bg: #d9f5e3;
  --pub-border: #e4e7ea;
  --pub-paper: #ffffff;
  --pub-band-bg: #10241a;
  --pub-band-text: #d9f5e3;

  --offer-ink: #0b0f1a;
  --offer-ink-soft: #1b2333;
  --offer-accent: #b6ff3b;
  --offer-accent-deep: #8fe015;
  --offer-teal: #1fbfae;
  --offer-teal-deep: #158f82;
  --offer-cream: #f4f7f1;
  --offer-line: #263049;
}

* {
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Accessibility helpers ---------- */

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: #111827;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  z-index: 100;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 1rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Media containers (fixed aspect ratio, no CLS) ---------- */

.media-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  background: #0f172a;
}

.media-frame video,
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================================
   PUBLICATION (advertorial + about) — "True Report" design family
   ========================================================================= */

.pub-page {
  background: var(--pub-paper);
  color: var(--pub-ink);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.pub-ribbon {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--pub-ink-soft);
}

.pub-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--pub-mint-bg);
  color: var(--pub-mint-deep);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  line-height: 1.2;
}

.pub-h1 {
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: var(--pub-ink);
}

.pub-subhead {
  color: var(--pub-ink-soft);
  font-weight: 500;
}

.pub-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.pub-hero-grid .media-frame {
  border-radius: 0.75rem;
  aspect-ratio: 3 / 4;
}

@media (min-width: 768px) {
  .pub-hero-grid .media-frame {
    aspect-ratio: 4 / 5;
  }
}

.pub-caption {
  color: var(--pub-ink-soft);
  font-size: 0.85rem;
  font-style: italic;
}

.pub-body p {
  margin-bottom: 1.15em;
  line-height: 1.75;
}

.pub-body h2 {
  font-weight: 800;
  color: var(--pub-ink);
  line-height: 1.2;
}

.pub-body strong {
  color: var(--pub-ink);
}

.pub-rate-box {
  border: 2px solid var(--pub-ink);
  border-radius: 1rem;
  background: #fbfdfc;
}

.pub-rate-box__label {
  display: inline-block;
  background: var(--pub-ink);
  color: #fff;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
}

.pub-rate-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--pub-border);
  padding: 0.75rem 0;
}

.pub-rate-row:first-of-type {
  border-top: none;
}

.pub-callout-band {
  background: var(--pub-band-bg);
  color: var(--pub-band-text);
}

.pub-callout-band h2,
.pub-callout-band strong {
  color: #ffffff;
}

.pub-callout-kicker {
  color: var(--pub-mint-bg);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

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

@media (min-width: 768px) {
  .myth-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.myth-card {
  border: 1px solid var(--pub-border);
  border-radius: 1rem;
  background: #fff;
  padding: 1.4rem;
}

.myth-card__myth {
  color: #9a3412;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.myth-card__fact {
  color: var(--pub-mint-deep);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reality-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--pub-border);
  border-radius: 1rem;
}

.reality-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.reality-table th,
.reality-table td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--pub-border);
}

.reality-table th {
  background: #f6f9f7;
  font-weight: 700;
}

.reality-table tr:last-child td {
  border-bottom: none;
}

.checklist-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  border-bottom: 1px solid var(--pub-border);
  padding: 0.9rem 0;
}

.checklist-item:last-child {
  border-bottom: none;
}

.checklist-mark {
  flex: none;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: var(--pub-mint-bg);
  color: var(--pub-mint-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.pub-cta-band {
  background: var(--pub-mint-bg);
  border-radius: 1.25rem;
}

.pub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--pub-ink);
  color: #fff;
  font-weight: 700;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
  min-height: 44px;
}

.pub-btn:hover {
  background: var(--pub-mint-deep);
  transform: translateY(-1px);
}

.pub-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid var(--pub-ink);
  color: var(--pub-ink);
  font-weight: 700;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
  min-height: 44px;
}

.pub-btn-outline:hover {
  background: var(--pub-ink);
  color: #fff;
}

.pub-nav-link {
  color: var(--pub-ink-soft);
  font-weight: 600;
  transition: color 0.15s ease;
}

.pub-nav-link:hover {
  color: var(--pub-mint-deep);
}

/* =========================================================================
   OFFER — "course" design family
   ========================================================================= */

.offer-page {
  background: var(--offer-cream);
  color: var(--offer-ink);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

.offer-nav {
  background: rgba(11, 15, 26, 0.92);
  backdrop-filter: blur(6px);
}

.offer-nav-link {
  color: #cbd3e6;
  font-weight: 600;
  transition: color 0.15s ease;
}

.offer-nav-link:hover {
  color: var(--offer-accent);
}

.offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--offer-accent);
  color: #10210a;
  font-weight: 800;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
  min-height: 44px;
}

.offer-btn:hover {
  background: var(--offer-accent-deep);
  transform: translateY(-1px);
}

.offer-btn-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--offer-teal);
  color: #062420;
  font-weight: 800;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease;
  min-height: 44px;
}

.offer-btn-teal:hover {
  background: var(--offer-teal-deep);
  color: #fff;
  transform: translateY(-1px);
}

.offer-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
  min-height: 44px;
}

.offer-btn-outline:hover {
  background: #fff;
  color: var(--offer-ink);
}

.offer-hero {
  position: relative;
  background: var(--offer-ink);
  overflow: hidden;
}

.offer-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.offer-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 26, 0.55) 0%, rgba(11, 15, 26, 0.85) 75%, rgba(11, 15, 26, 1) 100%);
}

.offer-hero-content {
  position: relative;
  z-index: 2;
}

.offer-h1 {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #ffffff;
}

.offer-h1 mark {
  background: none;
  color: var(--offer-accent);
}

.offer-hero-card {
  background: var(--offer-teal);
  color: #062420;
  border-radius: 1.5rem;
  box-shadow: 0 20px 45px -20px rgba(0, 0, 0, 0.45);
}

.offer-section-kicker {
  display: inline-block;
  color: var(--offer-teal-deep);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.offer-section-kicker--light {
  color: var(--offer-accent-deep);
}

.offer-h2 {
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.stat-band {
  background: var(--offer-ink);
  color: #fff;
  border-radius: 1.5rem;
}

.stat-figure {
  text-align: center;
}

.stat-figure__value {
  font-weight: 900;
  color: var(--offer-accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-figure__label {
  color: #cbd3e6;
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

.split-panel {
  border-radius: 1.25rem;
}

.split-panel--dark {
  background: var(--offer-ink);
  color: #fff;
}

.split-panel--light {
  background: #fff;
  border: 1px solid #e4e9df;
}

.deliverable-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.85rem 0;
}

.split-panel--light .deliverable-row {
  border-bottom: 1px solid #e4e9df;
}

.deliverable-row:last-child {
  border-bottom: none;
}

.deliverable-fee {
  font-weight: 800;
  color: var(--offer-accent);
  white-space: nowrap;
}

.split-panel--light .deliverable-fee {
  color: var(--offer-teal-deep);
}

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

@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pricing-card {
  background: #fff;
  border: 1px solid #e4e9df;
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-card--highlight {
  background: var(--offer-ink);
  color: #fff;
  border-color: var(--offer-ink);
  transform: scale(1.02);
  box-shadow: 0 25px 50px -20px rgba(11, 15, 26, 0.5);
  position: relative;
}

.pricing-card--highlight .pricing-card__price {
  color: var(--offer-accent);
}

.pricing-card--highlight .pricing-card__hours {
  color: #cbd3e6;
}

.pricing-card__badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--offer-accent);
  color: #10210a;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card__name {
  font-weight: 800;
  font-size: 1.05rem;
}

.pricing-card__price {
  font-weight: 900;
  font-size: 2rem;
  color: var(--offer-ink);
  letter-spacing: -0.02em;
}

.pricing-card__hours {
  font-size: 0.85rem;
  color: #5b6472;
}

.pricing-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.92rem;
  flex-grow: 1;
}

.pricing-card ul li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.addon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

@media (min-width: 768px) {
  .addon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.addon-card {
  background: #fff;
  border: 1px solid #e4e9df;
  border-radius: 1.1rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.addon-card__price {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--offer-teal-deep);
}

.perk-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.perk-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e4e9df;
  border-radius: 1rem;
  padding: 1rem 1.1rem;
}

.perk-mark {
  flex: none;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: var(--offer-teal);
  color: #062420;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.limits-block {
  background: #fff;
  border: 2px dashed #c7cfc0;
  border-radius: 1.25rem;
}

.faq-item {
  border-bottom: 1px solid #e4e9df;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  font-weight: 700;
  padding: 1.1rem 0;
}

.faq-chevron {
  transition: transform 0.2s ease;
  flex: none;
}

.faq-chevron.is-open {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
}

.lead-form {
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid #e4e9df;
}

.form-field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  color: var(--offer-ink);
}

.form-field input,
.form-field textarea {
  width: 100%;
  font-size: 1rem;
  border: 1.5px solid #d3dccb;
  border-radius: 0.7rem;
  padding: 0.75rem 0.9rem;
  background: #fbfcf9;
  min-height: 44px;
  transition: border-color 0.15s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--offer-teal-deep);
  outline: none;
}

.form-error {
  color: #b91c1c;
  font-size: 0.82rem;
  margin-top: 0.3rem;
  min-height: 1.1em;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: var(--offer-ink);
  border-top: 1px solid var(--offer-line);
  box-shadow: 0 -8px 25px -15px rgba(0, 0, 0, 0.5);
}

/* =========================================================================
   SHARED — legal pages, disclaimer, footer
   ========================================================================= */

.legal-page {
  background: #fff;
  color: #1a1f2b;
}

.legal-page h1 {
  font-weight: 800;
}

.legal-page h2 {
  font-weight: 700;
}

.legal-page section + section {
  margin-top: 2rem;
}

.site-disclaimer {
  display: block;
  border-top: 1px solid #d8dfd2;
  border-bottom: 1px solid #d8dfd2;
  background: #f6f8f3;
  color: #2b3226;
  font-size: 0.92rem;
  line-height: 1.6;
}

.site-disclaimer a {
  color: var(--offer-teal-deep);
  font-weight: 700;
  text-decoration: underline;
}

.site-footer {
  background: #0f1410;
  color: #cdd6c6;
}

.site-footer__company {
  white-space: pre-line;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #cdd6c6;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
}

.site-footer__links a {
  color: #eef2ea;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.15s ease;
}

.site-footer__links a:hover {
  color: var(--offer-accent);
}

.mobile-nav-panel {
  transition: max-height 0.25s ease, opacity 0.2s ease;
}

[x-cloak] {
  display: none !important;
}
