/* ===========================================================
   LaunchReady — The 8 Phase Checklist
   Brand: Pumpkin #EB742E + Cream #FFF9F5 + Sunshine #F2CD5D + Ice Blue #C7EBFD
   Typography: Nunito Sans (rounded, friendly, confident)
   Vibe: warm, welcoming, soft edges, generous whitespace
   =========================================================== */

:root {
  --pumpkin: #EB742E;
  --pumpkin-dark: #c75c1c;
  --pumpkin-soft: #FFE7D6;
  --cream: #FFF9F5;
  --cream-deep: #FCEFE3;
  --sunshine: #F2CD5D;
  --sunshine-soft: #FFF3C8;
  --ice: #C7EBFD;
  --ice-soft: #E6F5FE;

  --bg: var(--cream);
  --bg-alt: var(--cream-deep);
  --bg-card: #FFFFFF;
  --text: #1A1410;
  --text-muted: #5b554f;
  --text-dim: #8a8580;
  --border: rgba(26, 20, 16, 0.08);
  --border-soft: rgba(26, 20, 16, 0.05);

  --shadow-sm: 0 2px 8px rgba(235, 116, 46, 0.08);
  --shadow-md: 0 8px 28px rgba(235, 116, 46, 0.12);
  --shadow-lg: 0 24px 60px rgba(235, 116, 46, 0.18);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --maxw: 1140px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Nunito Sans', 'Arial Rounded MT Bold', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Headings ---------- */
h1, h2, h3, h4, h5, .display {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  color: var(--text);
}

/* ---------- Highlight ---------- */
.hl {
  background: var(--sunshine);
  color: var(--text);
  padding: 0.05em 0.35em;
  border-radius: 8px;
  font-weight: 900;
  /* allow wrap; box-decoration-break keeps the highlight clean across line breaks */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hl-pumpkin { background: var(--pumpkin); color: #fff; }
.hl-ice { background: var(--ice); color: var(--text); }

/* ---------- Header ---------- */
.site-header {
  background: rgba(255, 249, 245, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pumpkin);
  border-radius: 12px;
  flex-shrink: 0;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-wordmark {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text);
  letter-spacing: -0.045em;
  line-height: 1;
}

.header-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.btn-primary, .btn-ghost {
  font-family: 'Nunito Sans', sans-serif;
  padding: 0.65rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.15s ease;
  border-radius: var(--radius-pill);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--pumpkin);
  color: #fff;
}

.btn-primary:hover {
  background: var(--pumpkin-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text);
  background: var(--bg-card);
  border-color: var(--pumpkin);
}

/* ---------- Tabs ---------- */
.tabs {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 65px;
  z-index: 90;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tabs::-webkit-scrollbar { display: none; }

.tabs-inner {
  display: flex;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  min-width: max-content;
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.7rem 1rem;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: all 0.15s ease;
  position: relative;
}

.tab-btn:hover {
  color: var(--text);
  background: var(--cream-deep);
}

.tab-btn.active {
  color: #fff;
  background: var(--pumpkin);
}

.tab-btn .tab-num {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  background: var(--cream-deep);
  color: var(--text);
  padding: 0.18rem 0.5rem;
  border-radius: var(--radius-pill);
  min-width: 1.6rem;
  text-align: center;
  line-height: 1.2;
}

.tab-btn.active .tab-num {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

.tab-btn .tab-progress-bar {
  position: absolute;
  bottom: 0.25rem;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background: var(--pumpkin);
  width: 0%;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.tab-btn.active .tab-progress-bar {
  background: var(--sunshine);
}

/* ---------- Main ---------- */
.main-content {
  padding: 2.75rem 1.5rem 4rem;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.25s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Phase hero ---------- */
.phase-hero {
  margin-bottom: 2.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--cream-deep) 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.phase-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--pumpkin-soft);
  border-radius: 50%;
  opacity: 0.5;
  z-index: 0;
}

.phase-hero > * { position: relative; z-index: 1; }

.phase-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--sunshine);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.phase-title {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 900;
  margin: 0 0 0.6rem;
  letter-spacing: -0.035em;
  line-height: 1;
}

.phase-icon-large {
  font-size: 1.2em;
  margin-right: 0.25em;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.phase-focus {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.phase-intro {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
  max-width: 680px;
}

.phase-why {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--ice-soft);
  border-radius: var(--radius);
  border-left: 4px solid var(--ice);
}

.phase-why-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.phase-why-text {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--text);
}

/* ---------- Sections ---------- */
.section {
  margin: 2.5rem 0;
}

.section h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  margin: 0 0 0.85rem;
  font-weight: 800;
}

.section h3 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--pumpkin);
  font-weight: 800;
}

.section p {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
}

.section ul, .section ol {
  margin: 0 0 1rem;
  padding-left: 1.4rem;
}

.section li {
  margin-bottom: 0.55rem;
  color: var(--text);
  line-height: 1.6;
  font-size: 0.98rem;
}

.section li::marker {
  color: var(--pumpkin);
  font-weight: 800;
}

.list-title {
  display: inline-block;
  font-weight: 800;
  margin: 1rem 0 0.65rem !important;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  background: var(--sunshine-soft);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
}

/* ---------- Note callout ---------- */
.note {
  background: var(--ice-soft);
  border-radius: var(--radius);
  padding: 0.95rem 1.15rem;
  margin: 1rem 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.55;
  border-left: 3px solid var(--ice);
}

.note-label {
  display: inline-block;
  font-weight: 800;
  color: var(--text-muted);
  margin-right: 0.4rem;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

/* ---------- Tables ---------- */
.table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0;
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

th, td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
}

th {
  background: var(--cream-deep);
  color: var(--text);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

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

tbody tr:hover {
  background: var(--cream-deep);
}

/* ---------- Checklist ---------- */
.checklist-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.checklist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.checklist-header h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
}

.progress-pill {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  background: var(--cream-deep);
  color: var(--text);
}

.progress-pill.full {
  background: var(--pumpkin);
  color: #fff;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.check-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s ease;
  border: 1.5px solid transparent;
}

.check-item:hover {
  background: var(--cream-deep);
  border-color: var(--pumpkin-soft);
}

.check-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  background: #fff;
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
  position: relative;
  transition: all 0.15s ease;
  border-radius: 6px;
  margin-top: 1px;
}

.check-item input[type="checkbox"]:hover {
  border-color: var(--pumpkin);
}

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

.check-item input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
}

.check-item label {
  flex: 1;
  cursor: pointer;
  user-select: none;
  color: var(--text);
  line-height: 1.55;
  font-weight: 500;
  font-size: 0.96rem;
}

.check-item.checked {
  background: var(--pumpkin-soft);
}

.check-item.checked label {
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--pumpkin);
}

/* ---------- Rule callout ---------- */
.rule {
  background: linear-gradient(135deg, var(--pumpkin) 0%, var(--pumpkin-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.rule::before {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: var(--sunshine);
  opacity: 0.2;
  border-radius: 50%;
}

.rule-label {
  display: inline-block;
  background: var(--sunshine);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
}

.rule-text {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}

/* ---------- Overview ---------- */
.overview-hero {
  text-align: center;
  padding: 3rem 1.5rem 2.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--cream) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.overview-hero::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(var(--pumpkin-soft), transparent 70%);
  z-index: 0;
}

.overview-hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(var(--sunshine-soft), transparent 70%);
  z-index: 0;
}

.overview-hero > * { position: relative; z-index: 1; }

.overview-eyebrow {
  display: inline-block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pumpkin);
  background: var(--pumpkin-soft);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.overview-title {
  font-size: clamp(1.85rem, 7vw, 4.5rem);
  font-weight: 900;
  margin: 0 0 1.25rem;
  letter-spacing: -0.04em;
  line-height: 1;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.overview-tagline {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto;
  font-weight: 500;
}

/* ---------- Section title ---------- */
.section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  margin: 3rem 0 1.25rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

/* ---------- Phases grid ---------- */
.phases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 1.25rem 0 3rem;
}

.phase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.phase-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--pumpkin);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.phase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--pumpkin-soft);
}

.phase-card:hover::after {
  transform: scaleX(1);
}

.phase-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.phase-card-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--pumpkin);
  line-height: 1;
  letter-spacing: -0.04em;
}

.phase-card-icon {
  font-size: 1.6rem;
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-deep);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.phase-card-title {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  margin: 0.5rem 0 0;
  line-height: 1.2;
}

.phase-card-focus {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
}

.phase-card-progress {
  margin-top: 0.85rem;
  height: 6px;
  background: var(--cream-deep);
  border-radius: 6px;
  overflow: hidden;
}

.phase-card-progress-bar {
  height: 100%;
  background: var(--pumpkin);
  width: 0%;
  transition: width 0.4s ease;
  border-radius: 6px;
}

.phase-card-progress-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}

/* ---------- Pillars ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem;
  margin: 1.25rem 0 3rem;
}

.pillar-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.pillar-card:hover {
  transform: translateY(-2px);
  border-color: var(--pumpkin-soft);
  box-shadow: var(--shadow-sm);
}

.pillar-name {
  font-weight: 900;
  font-size: 1rem;
  color: var(--pumpkin);
  margin-bottom: 0.4rem;
}

.pillar-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- Mission section ---------- */
.mission-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  margin: 2rem 0;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.mission-quote {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  font-style: italic;
  margin: 1.25rem 0 0.5rem;
  line-height: 1.5;
}

.mission-quote::before {
  content: "“";
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--pumpkin);
  line-height: 0;
  margin-right: 0.15em;
  vertical-align: -0.15em;
}

.mission-quote-author {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--pumpkin);
  letter-spacing: 0.06em;
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 4rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  text-align: center;
}

.footer-quote {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 auto 1.5rem;
  max-width: 720px;
  line-height: 1.45;
}

.footer-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 600;
}

.footer-meta a {
  color: var(--pumpkin);
  text-decoration: none;
  font-weight: 800;
}

.footer-meta a:hover { text-decoration: underline; }

/* ---------- Lead capture modal ---------- */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}

.lead-modal.open { display: flex; }
body.lead-locked { overflow: hidden; }

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 16, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lead-modal-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem 1.85rem;
  max-width: 520px;
  width: 100%;
  margin: auto;
  animation: leadIn 0.3s ease;
  box-shadow: 0 25px 80px rgba(26,20,16,0.5);
  border-top: 6px solid var(--pumpkin);
}

@keyframes leadIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.lead-modal-eyebrow {
  display: inline-block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pumpkin);
  background: var(--pumpkin-soft);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.lead-modal-title {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 0.85rem;
  color: var(--text);
}

.lead-modal-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.55;
  font-weight: 500;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.lead-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.lead-label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"] {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  background: var(--cream);
  color: var(--text);
  border-radius: var(--radius);
  width: 100%;
  transition: all 0.15s ease;
}

.lead-form input:focus {
  outline: none;
  background: #fff;
  border-color: var(--pumpkin);
  box-shadow: 0 0 0 4px var(--pumpkin-soft);
}

.lead-goal {
  border: none;
  margin: 0;
  padding: 0;
}

.lead-goal .lead-label {
  margin-bottom: 0.25rem;
}

.lead-radios {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.lead-radio {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 0.5rem;
  border: 2px solid var(--border);
  background: var(--cream);
  cursor: pointer;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  transition: all 0.15s ease;
  user-select: none;
  border-radius: var(--radius);
}

.lead-radio:hover {
  background: var(--cream-deep);
  border-color: var(--pumpkin-soft);
}

.lead-radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.lead-radio:has(input:checked) {
  background: var(--pumpkin);
  color: #fff;
  border-color: var(--pumpkin);
}

.lead-submit {
  margin-top: 0.6rem;
  background: var(--pumpkin);
  color: #fff;
  border: none;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: 0.01em;
}

.lead-submit:hover:not(:disabled) {
  background: var(--pumpkin-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.lead-submit:disabled {
  cursor: not-allowed;
  opacity: 0.85;
}

.lead-submit-spinner {
  display: none;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: leadSpin 0.7s linear infinite;
}

.lead-submit.loading .lead-submit-spinner { display: inline-block; }

@keyframes leadSpin { to { transform: rotate(360deg); } }

.lead-error {
  font-size: 0.88rem;
  color: var(--pumpkin-dark);
  background: var(--pumpkin-soft);
  border-radius: var(--radius);
  padding: 0.7rem 0.95rem;
  margin: 0.5rem 0 0;
  font-weight: 600;
}

.lead-fineprint {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin: 0.6rem 0 0;
  text-align: center;
  line-height: 1.45;
}

@media (max-width: 480px) {
  .lead-modal-card {
    padding: 1.75rem 1.4rem 1.4rem;
  }
  .lead-radios { grid-template-columns: 1fr; }
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .header-inner { padding: 0.85rem 1rem; }
  .brand-wordmark { font-size: 1.15rem; }
  .btn-primary, .btn-ghost { padding: 0.5rem 0.85rem; font-size: 0.78rem; }
  .tabs-inner { padding: 0.4rem 0.75rem; }
  .tab-btn { padding: 0.6rem 0.85rem; font-size: 0.78rem; }
  .main-content { padding: 1.75rem 1rem 3rem; }
  .phase-hero { padding: 1.75rem 1.4rem; }
  .checklist-card { padding: 1.4rem; }
  .mission-card { padding: 1.5rem 1.4rem; }
}
