/* ==========================================================================
   Per-section styles — each major page section has its own block.
   Keep components shared (.btn, .counter, etc.) in components.css.
   ========================================================================== */

/* ---- Mission strip (between hero and cost section) ---- */
.mission {
  background: var(--slate-900);
  color: var(--bone);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(217, 98, 31, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(58, 143, 196, 0.08), transparent 50%);
}
.mission .wrap {
  text-align: center;
  position: relative;
}
.mission .eyebrow {
  color: var(--amber-400);
  margin-bottom: 16px;
  display: block;
}
.mission p {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 500;
  font-style: italic;
  max-width: 880px;
  margin: 0 auto;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.mission p strong {
  color: var(--amber-400);
  font-style: normal;
  font-weight: 600;
}

/* ---- Cost of inaction (BEC counter + Maryland counter + brand-poisoning copy) ---- */
.cost-section { background: var(--paper); }

.cost-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .cost-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.bec-counter {
  background: linear-gradient(160deg, var(--slate-900) 0%, var(--slate-800) 100%);
  color: var(--bone);
  padding: 48px 40px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 98, 31, 0.2);
}
.bec-counter::before {
  content: 'BEC';
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: var(--font-serif);
  font-size: 13rem;
  font-weight: 700;
  color: rgba(217, 98, 31, 0.08);
  letter-spacing: -0.05em;
  pointer-events: none;
  line-height: 1;
}
.bec-counter .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-400);
  margin-bottom: 12px;
  position: relative;
}
.bec-counter h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  font-weight: 500;
  max-width: 420px;
  margin-bottom: 32px;
  color: var(--bone-soft);
  font-family: var(--font-sans);
  letter-spacing: -0.005em;
  position: relative;
}
.dollar-counter {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(3rem, 6.6vw, 5.2rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--amber-400);
  position: relative;
}
.dollar-counter .small { font-size: 0.4em; color: var(--bone); }

.bec-meta {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-top: 1px solid rgba(240, 238, 232, 0.12);
  padding-top: 24px;
  position: relative;
}
.bec-meta div p:first-child {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--bone);
}
.bec-meta div p:last-child {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--bone-soft);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.cost-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cost-side h3 {
  font-size: var(--type-h3);
  margin-bottom: 16px;
}
.cost-side p {
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.cost-side .footnote {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* ---- Maryland sub-counter (sits below the main BEC counter) ---- */
.maryland-strip {
  margin-top: 32px;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--amber-500);
  border-radius: 6px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.maryland-strip .md-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--amber-600);
  line-height: 1;
  letter-spacing: -0.02em;
}
.maryland-strip .md-text strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  font-weight: 500;
}
.maryland-strip .md-text {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.5;
}
@media (max-width: 540px) {
  .maryland-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ---- Incidents (carousel) ---- */
.incidents {
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

/* ---- Timeline / compliance floor ---- */
.timeline-section {
  background: var(--slate-900);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.timeline-section .section-head h2 { color: var(--bone); }
.timeline-section .section-head p { color: var(--bone-soft); }
.timeline-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(217, 98, 31, 0.10), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(58, 143, 196, 0.06), transparent 50%);
  pointer-events: none;
}
.timeline-section .wrap { position: relative; }

.timeline {
  position: relative;
  padding: 24px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  width: 2px;
  background: linear-gradient(180deg, var(--amber-500) 0%, rgba(217, 98, 31, 0.3) 100%);
}
.tl-item {
  position: relative;
  padding-left: 56px;
  padding-bottom: 36px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--amber-500);
  border-radius: 50%;
  box-shadow:
    0 0 0 4px var(--slate-900),
    0 0 0 5px var(--amber-500),
    0 0 16px rgba(217, 98, 31, 0.5);
}
.tl-date {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--amber-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tl-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--bone);
}
.tl-desc {
  color: var(--bone-soft);
  max-width: 720px;
  line-height: 1.6;
}

/* ---- Industry compliance ---- */
.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
@media (max-width: 880px) {
  .industry-grid { grid-template-columns: 1fr; }
}

/* ---- Save Play methodology callout ---- */
.save-play {
  background: var(--paper);
  position: relative;
}
.save-play-card {
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
  color: var(--bone);
  border-radius: 12px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 98, 31, 0.2);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.save-play-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(217, 98, 31, 0.18), transparent 65%);
}
.save-play-card .eyebrow {
  color: var(--amber-400);
  position: relative;
}
.save-play-card h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-top: 12px;
  margin-bottom: 16px;
  color: var(--bone);
  position: relative;
}
.save-play-card p {
  color: var(--bone-soft);
  margin-bottom: 14px;
  position: relative;
}
.save-play-stages {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stage-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  background: rgba(240, 238, 232, 0.05);
  border: 1px solid rgba(240, 238, 232, 0.12);
  border-radius: 8px;
  padding: 16px 20px;
  position: relative;
}
.stage-step.active {
  background: rgba(217, 98, 31, 0.12);
  border-color: rgba(217, 98, 31, 0.4);
}
.stage-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--amber-400);
  text-align: center;
  border-right: 1px solid rgba(240, 238, 232, 0.15);
  padding-right: 16px;
}
.stage-step.active .stage-num { color: var(--amber-300); }
.stage-text strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--bone);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
  font-weight: 600;
}
.stage-text span {
  font-size: 0.86rem;
  color: var(--bone-soft);
}
@media (max-width: 880px) {
  .save-play-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 28px;
  }
}

/* ---- Tools (carousel) ---- */
.tools-section {
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
}

/* ---- Domain checker ---- */
.checker-section {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(217, 98, 31, 0.07), transparent 60%),
    var(--paper);
}

/* ---- Who this is for ---- */
.audience-section { background: var(--paper); }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 40px;
  align-items: start;
}
@media (max-width: 880px) {
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.audience-side h2 { font-size: var(--type-h2); margin-bottom: 16px; }
.audience-side p { color: var(--ink-soft); }
.audience-list {
  list-style: none;
}
.audience-list li {
  padding: 16px 0;
  border-top: 1px dashed var(--rule);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}
.audience-list li:first-child { border-top: none; padding-top: 0; }
.audience-list .check {
  width: 24px;
  height: 24px;
  background: var(--amber-500);
  color: var(--paper);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.audience-list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 600;
}

/* ---- Founder section ---- */
.founder-section {
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
}
.founder-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 720px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
}
.founder-mark {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--slate-900), var(--slate-700));
  border-radius: 8px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(217, 98, 31, 0.3);
  position: relative;
  overflow: hidden;
}
.founder-mark::before {
  content: 'AM';
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--amber-400);
  letter-spacing: -0.02em;
}
.founder-mark::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(217, 98, 31, 0.2), transparent 70%);
  transform: translate(30%, -30%);
}
@media (max-width: 720px) {
  .founder-mark {
    margin: 0 auto;
    width: 140px;
    height: 140px;
  }
  .founder-mark::before { font-size: 3.2rem; }
}
.founder-info .eyebrow {
  margin-bottom: 8px;
  display: block;
}
.founder-info h2 {
  font-size: var(--type-h2);
  margin-bottom: 6px;
}
.founder-info .role {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.founder-info p {
  color: var(--ink-soft);
  margin-bottom: 12px;
  line-height: 1.6;
  max-width: 680px;
}
.founder-info p:last-of-type { margin-bottom: 0; }
@media (max-width: 720px) {
  .founder-info p { margin-left: auto; margin-right: auto; }
}

/* ---- Intake form ---- */
.intake-section { background: var(--paper-warm); }
.intake-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 880px) {
  .intake-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.intake-side h2 {
  margin-bottom: 16px;
  font-size: var(--type-h2);
}
.intake-side > p {
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.intake-side ul {
  list-style: none;
  margin-top: 24px;
}
.intake-side ul li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.intake-side ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--amber-500);
  font-weight: 700;
}

/* ---- FAQ ---- */
.faq-section { background: var(--paper); }

/* ---- Footer ---- */
footer {
  background: var(--slate-950);
  color: var(--bone-soft);
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber-500), var(--cyan-500), transparent);
}
footer .wrap {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 880px) {
  footer .wrap { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  footer .wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.footer-brand .brand {
  color: var(--bone);
  margin-bottom: 16px;
}
.footer-brand .brand-text strong { color: var(--bone); }
.footer-brand p {
  font-size: 0.88rem;
  max-width: 360px;
  line-height: 1.55;
  color: rgba(240, 238, 232, 0.55);
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--amber-400);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  color: rgba(240, 238, 232, 0.65);
  text-decoration: none;
  padding: 4px 0;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--amber-400); }

.footer-bottom {
  border-top: 1px solid rgba(240, 238, 232, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(240, 238, 232, 0.45);
  letter-spacing: 0.04em;
}
