/* Day Strike — Bootcamp (bar · modal · landing) */

:root {
  --bc-navy: #0B1A26;
  --bc-navy-mid: #0f2230;
  --bc-navy-card: #122636;
  --bc-gold: #F2A900;
  --bc-gold-light: #ffc233;
  --bc-gold-dim: rgba(242, 169, 0, 0.14);
  --bc-gold-line: rgba(242, 169, 0, 0.32);
  --bc-fg: #f4f3f0;
  --bc-fg-muted: rgba(244, 243, 240, 0.68);
  --bc-fg-faint: rgba(244, 243, 240, 0.42);
  --bc-font: "Inter Tight", system-ui, -apple-system, sans-serif;
  --bc-display: "Fraunces", Georgia, serif;
  --bc-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --bc-bar-h: 0px;
}

*, *::before, *::after { box-sizing: border-box; }

/* ── Announcement bar ── */

.bc-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 clamp(14px, 3vw, 28px);
  background: linear-gradient(90deg, #081420 0%, var(--bc-navy) 45%, #081420 100%);
  border-bottom: 1px solid var(--bc-gold-line);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  font-family: var(--bc-font);
  contain: layout style;
}

.bc-bar[hidden] { display: none; }

.bc-bar-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bc-gold);
  box-shadow: 0 0 10px rgba(242, 169, 0, 0.65);
  animation: bc-dot-pulse 2.2s ease-in-out infinite;
}

@keyframes bc-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.88); }
}

.bc-bar-text {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--bc-fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 46px;
}

.bc-bar-text strong { color: var(--bc-gold-light); font-weight: 700; }

.bc-bar-btn {
  flex-shrink: 0;
  padding: 8px 18px;
  font-family: var(--bc-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bc-navy);
  background: linear-gradient(135deg, var(--bc-gold-light) 0%, var(--bc-gold) 100%);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 16px rgba(242, 169, 0, 0.45);
  transition: transform 160ms var(--bc-ease), box-shadow 160ms var(--bc-ease);
}

.bc-bar-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(242, 169, 0, 0.55);
}

.bc-bar-close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: var(--bc-fg-faint);
  font-size: 20px;
  cursor: pointer;
  transition: color 140ms ease, background 140ms ease;
}

.bc-bar-close:hover {
  color: var(--bc-fg);
  background: rgba(244, 243, 240, 0.06);
}

body.bc-bar-active { padding-top: var(--bc-bar-h); }

@media (max-width: 600px) {
  .bc-bar-text { font-size: 12px; }
  .bc-bar-text .bc-bar-full { display: none; }
  .bc-bar-text .bc-bar-short { display: inline; }
}

@media (min-width: 601px) {
  .bc-bar-text .bc-bar-full { display: inline; }
  .bc-bar-text .bc-bar-short { display: none; }
}

/* ── Modal ── */

.bc-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  background: rgba(4, 10, 16, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.bc-backdrop.is-open { opacity: 1; visibility: visible; }

.bc-modal {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  padding: clamp(28px, 5vw, 40px);
  background: var(--bc-navy-mid);
  border: 1px solid var(--bc-gold-line);
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(242, 169, 0, 0.06),
    0 32px 80px rgba(0, 0, 0, 0.75),
    0 0 60px rgba(242, 169, 0, 0.08);
  transform: translateY(16px) scale(0.98);
  transition: transform 220ms var(--bc-ease);
  contain: layout style;
}

.bc-backdrop.is-open .bc-modal {
  transform: translateY(0) scale(1);
}

.bc-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 243, 240, 0.04);
  border: 1px solid rgba(244, 243, 240, 0.12);
  border-radius: 8px;
  color: var(--bc-fg-faint);
  font-size: 18px;
  cursor: pointer;
  transition: color 140ms ease, border-color 140ms ease;
}

.bc-modal-close:hover {
  color: var(--bc-fg);
  border-color: rgba(244, 243, 240, 0.28);
}

@media (max-width: 480px) {
  .bc-backdrop { align-items: flex-end; padding: 0; }
  .bc-modal {
    max-height: 92dvh;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
  }
  .bc-backdrop.is-open .bc-modal { transform: translateY(0); }
}

/* ── Form (shared) ── */

.bc-eyebrow {
  font-family: var(--bc-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bc-gold);
  margin: 0 0 10px;
}

.bc-form-title {
  font-family: var(--bc-display);
  font-size: clamp(1.4rem, 4vw, 1.75rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--bc-fg);
  line-height: 1.12;
  margin: 0 0 8px;
}

.bc-form-sub {
  font-size: 14px;
  color: var(--bc-fg-muted);
  line-height: 1.55;
  margin: 0 0 8px;
}

.bc-form-sub strong { color: var(--bc-gold-light); font-weight: 600; }

.bc-form-trust {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--bc-fg-faint);
  margin: 0 0 22px;
}

.bc-form { display: flex; flex-direction: column; gap: 14px; }

.bc-field { display: flex; flex-direction: column; gap: 6px; }

.bc-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--bc-fg-faint);
}

.bc-label-opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.bc-field input,
.bc-field select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--bc-font);
  font-size: 16px; /* prevents iOS zoom */
  line-height: 1.4;
  color: var(--bc-fg);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(244, 243, 240, 0.14);
  border-radius: 8px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.bc-field input::placeholder { color: rgba(244, 243, 240, 0.28); }

.bc-field input:focus,
.bc-field select:focus {
  border-color: rgba(242, 169, 0, 0.65);
  box-shadow: 0 0 0 3px rgba(242, 169, 0, 0.12);
}

.bc-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='rgba(244,243,240,0.45)' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
  color: var(--bc-fg-muted);
}

.bc-field select.has-value { color: var(--bc-fg); }

.bc-field--error input,
.bc-field--error select { border-color: rgba(255, 100, 100, 0.55); }

.bc-field-error-msg {
  display: none;
  font-size: 12px;
  color: rgba(255, 150, 150, 0.95);
  margin: 0;
}

.bc-field--error .bc-field-error-msg { display: block; }

.bc-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.bc-check-row input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid rgba(244, 243, 240, 0.28);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: relative;
}

.bc-check-row input[type="checkbox"]:checked {
  background: var(--bc-gold);
  border-color: var(--bc-gold);
}

.bc-check-row input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 6px;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--bc-navy);
  border-bottom: 2px solid var(--bc-navy);
  transform: rotate(-45deg) translateY(-3px);
}

.bc-check-row input[type="checkbox"].is-error { border-color: rgba(255, 100, 100, 0.6); }

.bc-check-row label {
  font-size: 13px;
  color: var(--bc-fg-muted);
  line-height: 1.5;
  cursor: pointer;
}

.bc-check-row label a { color: var(--bc-gold-light); text-decoration: none; }
.bc-check-row label a:hover { text-decoration: underline; }

.bc-submit {
  width: 100%;
  margin-top: 4px;
  padding: 17px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bc-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bc-navy);
  background: linear-gradient(135deg, var(--bc-gold-light) 0%, var(--bc-gold) 55%, #d49200 100%);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 28px rgba(242, 169, 0, 0.38);
  transition: transform 180ms var(--bc-ease), box-shadow 180ms var(--bc-ease), filter 180ms ease;
}

.bc-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(242, 169, 0, 0.5);
  filter: brightness(1.04);
}

.bc-submit:disabled { opacity: 0.55; cursor: wait; transform: none; }

.bc-form-msg {
  display: none;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 8px;
  margin-top: 4px;
}

.bc-form-msg.is-visible { display: block; }
.bc-form-msg--success { background: var(--bc-gold-dim); border: 1px solid var(--bc-gold-line); color: var(--bc-gold-light); }
.bc-form-msg--error { background: rgba(255, 80, 80, 0.08); border: 1px solid rgba(255, 100, 100, 0.25); color: #ffb4b4; }

.bc-success { text-align: center; padding: 28px 0 12px; }
.bc-success-icon { margin-bottom: 18px; }
.bc-success-title {
  font-family: var(--bc-display);
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--bc-fg);
  margin: 0 0 10px;
}
.bc-success-text {
  font-size: 15px;
  color: var(--bc-fg-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Landing page ── */

.bc-page {
  min-height: 100vh;
  background: var(--bc-navy);
  color: var(--bc-fg);
  font-family: var(--bc-font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.bc-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bc-ambient__glow {
  position: absolute;
  top: -12%;
  left: 50%;
  width: min(1000px, 140vw);
  height: 620px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 55% 50% at 50% 0%, rgba(242, 169, 0, 0.14) 0%, transparent 72%);
}

.bc-ambient__grid {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(244, 243, 240, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 243, 240, 0.5) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 70%);
}

.bc-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 76px;
  padding: 0 clamp(16px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(11, 26, 38, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(242, 169, 0, 0.18);
}

.bc-nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}

.bc-nav-logo .brand-logo--mark {
  display: block;
  height: 70px;
  width: auto;
  min-width: 54px;
  max-height: 70px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 20px rgba(201, 162, 74, 0.35));
}

.bc-nav-cta {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 11px 22px;
  font-family: var(--bc-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bc-navy);
  background: linear-gradient(135deg, var(--bc-gold-light), var(--bc-gold));
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(242, 169, 0, 0.4);
  transition: transform 160ms var(--bc-ease), box-shadow 160ms var(--bc-ease);
}

.bc-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(242, 169, 0, 0.52);
}

.bc-hero {
  position: relative;
  z-index: 1;
  padding: clamp(56px, 9vw, 96px) clamp(16px, 5vw, 40px) clamp(56px, 7vw, 80px);
}

.bc-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 400px);
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}

.bc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bc-gold-light);
  background: var(--bc-gold-dim);
  border: 1px solid var(--bc-gold-line);
  border-radius: 999px;
}

.bc-hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bc-gold);
  animation: bc-dot-pulse 2.2s ease-in-out infinite;
}

.bc-hero-h1 {
  font-family: var(--bc-display);
  font-size: clamp(2.35rem, 5.8vw, 3.75rem);
  font-weight: 300;
  letter-spacing: -0.028em;
  line-height: 1.06;
  margin: 0 0 22px;
}

.bc-hero-h1 em {
  font-style: italic;
  color: var(--bc-gold-light);
}

.bc-hero-lead {
  font-size: clamp(16px, 1.9vw, 18px);
  color: var(--bc-fg-muted);
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 500px;
}

.bc-hero-lead strong { color: var(--bc-gold-light); font-weight: 600; }

.bc-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bc-hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(244, 243, 240, 0.82);
  line-height: 1.45;
}

.bc-hero-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  background: var(--bc-gold-dim);
  border: 1px solid var(--bc-gold-line);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23F2A900' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.bc-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(244, 243, 240, 0.08);
}

.bc-hero-stat {
  padding: 0 28px 0 0;
  margin-right: 28px;
  border-right: 1px solid rgba(244, 243, 240, 0.1);
}

.bc-hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }

.bc-hero-stat-val {
  font-family: var(--bc-display);
  font-size: 1.65rem;
  font-weight: 300;
  color: var(--bc-gold-light);
  letter-spacing: -0.02em;
  line-height: 1;
}

.bc-hero-stat-label {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bc-fg-faint);
}

.bc-form-card {
  position: sticky;
  top: 88px;
  padding: clamp(26px, 4vw, 36px);
  background: linear-gradient(165deg, rgba(18, 38, 54, 0.98) 0%, rgba(11, 26, 38, 0.98) 100%);
  border: 1px solid var(--bc-gold-line);
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(242, 169, 0, 0.05),
    0 28px 72px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(242, 169, 0, 0.06);
}

.bc-form-card-header {
  margin-bottom: 4px;
}

.bc-form-urgency {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bc-gold-light);
  background: rgba(242, 169, 0, 0.08);
  border-radius: 6px;
}

.bc-form-urgency-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bc-gold);
  animation: bc-dot-pulse 1.8s ease-in-out infinite;
}

/* Sections */
.bc-section {
  position: relative;
  z-index: 1;
  padding: clamp(64px, 8vw, 100px) clamp(16px, 5vw, 40px);
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}

.bc-section-inner { max-width: 1140px; margin: 0 auto; }

.bc-section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bc-gold);
  margin: 0 0 12px;
}

.bc-section-title {
  font-family: var(--bc-display);
  font-size: clamp(1.75rem, 3.8vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 14px;
}

.bc-section-sub {
  font-size: 16px;
  color: var(--bc-fg-muted);
  line-height: 1.65;
  margin: 0 0 48px;
  max-width: 540px;
}

.bc-curriculum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.bc-curriculum-card {
  padding: 28px;
  background: rgba(244, 243, 240, 0.02);
  border: 1px solid rgba(244, 243, 240, 0.08);
  border-radius: 12px;
  transition: border-color 200ms ease, transform 200ms var(--bc-ease), box-shadow 200ms ease;
}

.bc-curriculum-card:hover {
  border-color: var(--bc-gold-line);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.bc-curriculum-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  font-family: var(--bc-display);
  font-size: 1rem;
  color: var(--bc-gold);
  background: var(--bc-gold-dim);
  border: 1px solid var(--bc-gold-line);
  border-radius: 8px;
}

.bc-curriculum-card h3 {
  font-family: var(--bc-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0 0 10px;
  color: var(--bc-fg);
}

.bc-curriculum-card p {
  font-size: 14px;
  color: var(--bc-fg-muted);
  line-height: 1.6;
  margin: 0;
}

.bc-prize-section {
  position: relative;
  z-index: 1;
  padding: clamp(56px, 7vw, 88px) clamp(16px, 5vw, 40px);
  content-visibility: auto;
}

.bc-prize-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
  background: linear-gradient(160deg, rgba(242, 169, 0, 0.12) 0%, rgba(242, 169, 0, 0.04) 100%);
  border: 1px solid rgba(242, 169, 0, 0.45);
  border-radius: 16px;
  box-shadow: 0 0 80px rgba(242, 169, 0, 0.1), 0 32px 80px rgba(0, 0, 0, 0.45);
}

.bc-prize-total {
  font-family: var(--bc-display);
  font-size: clamp(3.2rem, 9vw, 5.75rem);
  font-weight: 300;
  color: var(--bc-gold-light);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 8px 0 12px;
  text-shadow: 0 0 60px rgba(242, 169, 0, 0.35);
}

.bc-prize-breakdown {
  font-size: 15px;
  color: var(--bc-fg-muted);
  line-height: 1.65;
  margin: 0 0 12px;
}

.bc-prize-breakdown strong { color: var(--bc-fg); }

.bc-prize-note {
  font-size: 13px;
  color: var(--bc-fg-faint);
  margin: 0 0 28px;
  line-height: 1.6;
}

.bc-prize-note a { color: var(--bc-gold-light); text-decoration: none; }
.bc-prize-note a:hover { text-decoration: underline; }

.bc-prize-card .bc-submit { max-width: 320px; margin: 0 auto; }

.bc-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.bc-step {
  padding: 28px;
  background: rgba(244, 243, 240, 0.02);
  border: 1px solid rgba(244, 243, 240, 0.08);
  border-radius: 12px;
}

.bc-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  font-family: var(--bc-display);
  font-size: 1.15rem;
  color: var(--bc-gold);
  background: var(--bc-gold-dim);
  border: 1px solid var(--bc-gold-line);
  border-radius: 50%;
}

.bc-step h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.bc-step p {
  font-size: 14px;
  color: var(--bc-fg-muted);
  line-height: 1.6;
  margin: 0;
}

.bc-final-cta {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 6vw, 72px) clamp(16px, 5vw, 40px) clamp(64px, 8vw, 96px);
  text-align: center;
}

.bc-final-cta-inner { max-width: 560px; margin: 0 auto; }

.bc-final-cta .bc-section-title { margin-bottom: 16px; }

.bc-final-cta .bc-section-sub {
  margin: 0 auto 28px;
  text-align: center;
}

.bc-divider {
  height: 1px;
  margin: 0 clamp(16px, 5vw, 40px);
  background: linear-gradient(90deg, transparent, rgba(244, 243, 240, 0.1), transparent);
}

.bc-disclaimer {
  position: relative;
  z-index: 1;
  padding: clamp(36px, 5vw, 56px) clamp(16px, 5vw, 40px);
  background: rgba(0, 0, 0, 0.22);
  border-top: 1px solid rgba(244, 243, 240, 0.06);
}

.bc-disclaimer-inner { max-width: 780px; margin: 0 auto; }

.bc-disclaimer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 22px;
  font-size: 12px;
}

.bc-disclaimer-links a {
  color: var(--bc-fg-faint);
  text-decoration: none;
}

.bc-disclaimer-links a:hover { color: var(--bc-fg-muted); }

.bc-disclaimer p {
  font-size: 12px;
  color: rgba(244, 243, 240, 0.35);
  line-height: 1.7;
  margin: 0 0 12px;
}

.bc-disclaimer p:last-child { margin: 0; }

/* Sticky mobile CTA */
.bc-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(11, 26, 38, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--bc-gold-line);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}

.bc-sticky-bar .bc-submit { margin: 0; }

/* Reveal animation */
.bc-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--bc-ease), transform 600ms var(--bc-ease);
}

.bc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .bc-nav {
    height: auto;
    min-height: 64px;
    padding: 10px 16px;
    gap: 12px;
  }

  .bc-nav-logo .brand-logo--mark {
    height: 52px;
    max-height: 52px;
    min-width: 44px;
  }

  .bc-nav-cta {
    padding: 10px 16px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 900px) {
  .bc-hero-inner { grid-template-columns: 1fr; }
  .bc-form-card { position: static; order: -1; }
  .bc-hero-copy { order: 1; }
  .bc-curriculum-grid { grid-template-columns: 1fr; }
  .bc-steps-grid { grid-template-columns: 1fr; }
  .bc-hero-proof { display: none; }
  .bc-sticky-bar { display: block; }
  .bc-page { padding-bottom: 80px; }
}

@media (max-width: 600px) {
  .bc-hero-h1 { font-size: 2.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .bc-reveal { opacity: 1; transform: none; transition: none; }
  .bc-bar-dot, .bc-hero-badge-dot, .bc-form-urgency-dot { animation: none; }
  .bc-curriculum-card:hover { transform: none; }
}
