/* ============================================================
   AI Transition Academy — Shared Stylesheet
   Version 1.0 | May 2026
   ============================================================ */

/* ─── VARIABLES ──────────────────────────────────────────── */
:root {
  --navy:    #0F1E2E;
  --teal:    #3D9B9B;
  --teal-dk: #2e7a7a;
  --teal-lt: rgba(61,155,155,0.10);
  --amber:   #E8A020;
  --amber-lt:rgba(232,160,32,0.10);
  --cream:   #F5F1E8;
  --beige:   #EDE8DF;
  --offwhite:#FAF8F4;
  --muted:   #6B7280;
  --border:  #D8D3C8;
  --white:   #FFFFFF;
  --error:   #C0392B;
  --success: #2D7D5A;
  --font-h:  'Montserrat', sans-serif;
  --font-b:  'Open Sans', sans-serif;
  --r:       8px;
  --r-lg:    12px;
  --shadow:  0 2px 12px rgba(15,30,46,0.08);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img  { display: block; max-width: 100%; }
ul   { list-style: none; }
a    { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: var(--font-b); cursor: pointer; border: none; background: none; }

/* ─── BASE TYPOGRAPHY ────────────────────────────────────── */
body {
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--offwhite);
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-h);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(28px, 5vw, 46px); }
h2 { font-size: clamp(22px, 4vw, 34px); }
h3 { font-size: clamp(18px, 3vw, 22px); }
h4 { font-size: 16px; }
p  { margin-bottom: 0; }
em { font-style: italic; color: var(--teal); }
strong { font-weight: 600; }

/* ─── LAYOUT ──────────────────────────────────────────────── */
.container    { max-width: 1020px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 680px;  margin: 0 auto; padding: 0 24px; }
.section      { padding: 72px 0; }
.section-sm   { padding: 48px 0; }

/* ─── EYEBROW ─────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 12px 22px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: background .2s, opacity .2s, color .2s, border-color .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-teal    { background: var(--teal);   color: #fff; }
.btn-teal:hover { background: var(--teal-dk); color: #fff; }
.btn-amber   { background: var(--amber);  color: #fff; }
.btn-amber:hover { opacity: .88; }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); }
.btn-ghost   { background: transparent; color: var(--muted); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
/* White + amber variants for teal/dark backgrounds */
.btn-white  { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--cream); color: var(--navy); }
.btn-amber-solid { background: var(--amber); color: #fff; }
.btn-amber-solid:hover { opacity: .88; }
.btn-lg      { padding: 15px 30px; font-size: 15px; }
.btn-sm      { padding: 8px 16px; font-size: 12px; }
.btn-full    { width: 100%; }
.btn:disabled { opacity: .4; cursor: not-allowed; }

/* ─── NAVIGATION ──────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0;
}
.nav-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: auto;
}
.nav-brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--navy);
}
.nav-brand-link:hover { text-decoration: none; }
.nav-brand-name {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 15px;
  color: var(--navy);
  line-height: 1;
}
.nav-brand-by {
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  font-style: italic;
  transition: color .15s;
}
.nav-brand-by:hover { color: var(--teal); text-decoration: none; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 12px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 6px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--beige);
  text-decoration: none;
}
.nav-links a.active {
  color: var(--teal);
  background: var(--teal-lt);
}
.nav-cta { flex-shrink: 0; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 6px;
  background: transparent;
  border: 1.5px solid var(--border);
  margin-left: 12px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── PAGE HEADER ─────────────────────────────────────────── */
.page-header {
  background: var(--offwhite);
  color: var(--navy);
  padding: 56px 24px 48px;
  text-align: center;
}
.page-header .eyebrow { color: var(--teal); }
.page-header h1 { color: var(--navy); margin-bottom: 14px; }
.page-header p {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.65;
}
.page-header-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.ph-pill {
  font-size: 12px;
  font-family: var(--font-h);
  font-weight: 600;
  background: var(--beige);
  color: var(--teal);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 48px 0 28px;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand-text {}
.footer-brand-name {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 15px;
  color: #fff;
}
.footer-brand-by {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  font-style: italic;
  margin-top: 2px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  transition: color .15s;
}
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  text-align: center;
}

/* ─── CARDS (generic) ────────────────────────────────────── */
.card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
}
.card-teal  { border-color: var(--teal); background: var(--teal-lt); }
.card-amber { border-color: var(--amber); background: var(--amber-lt); }

/* ─── WHO CARDS ───────────────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.who-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: border-color .2s, box-shadow .2s;
}
.who-card:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.who-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--teal-lt);
  border-radius: var(--r);
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 13px;
  color: var(--teal);
  margin-bottom: 14px;
}
.who-card h3 { font-size: 16px; margin-bottom: 4px; }
.who-role { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.who-card p { font-size: 14px; line-height: 1.6; color: var(--navy); margin-bottom: 12px; }
.who-entry { font-size: 12.5px; color: var(--muted); padding-top: 12px; border-top: 1px solid var(--border); }

/* ─── FEATURE CARDS (index subpage explore) ──────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
}
.feature-card:hover { border-color: var(--teal); box-shadow: var(--shadow); text-decoration: none; }
.feature-card-icon {
  font-size: 24px;
  margin-bottom: 14px;
}
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p  { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.feature-card-link {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-h);
  color: var(--teal);
}

/* ─── TABS ────────────────────────────────────────────────── */
.tab-row {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  background: var(--beige);
  padding: 4px;
  border-radius: 10px;
  width: fit-content;
}
.tab-btn {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 7px;
  color: var(--muted);
  transition: background .15s, color .15s;
  cursor: pointer;
  background: transparent;
  border: none;
}
.tab-btn span { font-weight: 400; margin-left: 4px; }
.tab-btn:hover { color: var(--navy); }
.tab-btn.active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 340px; gap: 28px; }

/* ─── PROMPT LIBRARY ──────────────────────────────────────── */
.prompt-filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.pf-btn {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  transition: all .15s;
}
.pf-btn:hover { border-color: var(--teal); color: var(--teal); }
.pf-btn.active { background: var(--teal); border-color: var(--teal); color: #fff; }

.prompts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.prompt-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color .2s;
}
.prompt-card:hover { border-color: var(--teal); }
.prompt-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.prompt-card h4 { font-size: 14px; line-height: 1.35; flex: 1; }
.prompt-pillar-tag {
  font-size: 10px;
  font-family: var(--font-h);
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}
.pt-apply   { background: rgba(61,155,155,.12);  color: var(--teal); }
.pt-comm    { background: rgba(232,160,32,.12);   color: #a06000; }
.pt-trans   { background: rgba(15,30,46,.08);     color: var(--navy); }

.prompt-role-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.role-tag {
  font-size: 10px;
  font-family: var(--font-h);
  font-weight: 700;
  background: var(--beige);
  color: var(--muted);
  padding: 2px 7px;
  border-radius: 4px;
}
.use-when {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
  padding: 8px 12px;
  background: var(--offwhite);
  border-radius: 6px;
  border-left: 3px solid var(--border);
}
.prompt-template {
  font-size: 13px;
  color: var(--navy);
  line-height: 1.65;
  background: var(--cream);
  border-radius: 6px;
  padding: 12px 14px;
  flex: 1;
}
.prompt-template em {
  color: var(--teal);
  font-style: normal;
  font-weight: 600;
}
.copy-btn {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  background: var(--beige);
  border: none;
  border-radius: 5px;
  padding: 5px 12px;
  cursor: pointer;
  align-self: flex-start;
  transition: background .15s, color .15s;
}
.copy-btn:hover { background: var(--teal-lt); color: var(--teal); }
.copy-btn.copied { background: var(--teal-lt); color: var(--teal); }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: #fff;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .15s;
}
.faq-q:hover { background: var(--offwhite); }
.faq-icon {
  font-size: 20px;
  color: var(--teal);
  flex-shrink: 0;
  font-weight: 400;
  line-height: 1;
}
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14.5px;
  color: var(--navy);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: none; }

/* ─── FORM ELEMENTS ───────────────────────────────────────── */
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  line-height: 1.4;
}
.field label .req { color: var(--teal); margin-left: 2px; }
.field label .hint {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.field input[type="text"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--navy);
  background: #fff;
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(61,155,155,.12);
}
.field textarea { resize: vertical; min-height: 90px; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field-error { font-size: 12px; color: var(--error); margin-top: 5px; display: none; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--error); }
.field.has-error .field-error { display: block; }

/* Option cards (radio/checkbox) */
.options-grid { display: flex; flex-direction: column; gap: 8px; }
.option-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  background: #fff;
  transition: border-color .15s, background .15s;
}
.option-item:hover { border-color: var(--teal); background: var(--teal-lt); }
.option-item.selected { border-color: var(--teal); background: var(--teal-lt); }
.option-item input[type="radio"],
.option-item input[type="checkbox"] {
  width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; accent-color: var(--teal); cursor: pointer;
}
.option-text strong { display: block; font-size: 14px; font-weight: 600; line-height: 1.3; }
.option-text span   { font-size: 13px; color: var(--muted); line-height: 1.45; }

/* ─── STEP / PROGRESS ─────────────────────────────────────── */
.progress-label { font-size: 12px; color: var(--muted); font-family: var(--font-h); font-weight: 600; margin-bottom: 6px; }
.progress-bar   { height: 4px; background: var(--border); border-radius: 4px; margin-bottom: 32px; overflow: hidden; }
.progress-fill  { height: 100%; background: var(--teal); border-radius: 4px; transition: width .35s ease; }
.form-step      { display: none; }
.form-step.active { display: block; }
.step-heading   { font-family: var(--font-h); font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.step-sub       { font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.55; }
.form-nav       { display: flex; gap: 12px; margin-top: 28px; }

/* ─── PROBLEM SECTION ────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.problem-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}
.problem-num {
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 800;
  color: var(--beige);
  line-height: 1;
  margin-bottom: 12px;
}
.problem-card h3 { font-size: 16px; margin-bottom: 10px; }
.problem-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─── DIFFERENTIATOR SECTION ─────────────────────────────── */
.diff-section { background: var(--navy); color: var(--cream); }
.diff-section .eyebrow { color: var(--amber); }
.diff-section h2 { color: var(--cream); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.diff-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: border-color .2s;
}
.diff-card:hover { border-color: rgba(61,155,155,.45); }
.diff-vs { font-size: 11px; font-family: var(--font-h); font-weight: 700; letter-spacing: .08em; color: var(--amber); text-transform: uppercase; margin-bottom: 8px; }
.diff-card h4 { font-size: 15px; color: var(--cream); margin-bottom: 8px; }
.diff-card p  { font-size: 13.5px; color: rgba(245,241,232,.6); line-height: 1.65; }

/* ─── OFFER SECTION ───────────────────────────────────────── */
.offer-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}
.sched-week { margin-bottom: 28px; }
.sched-wk-lbl {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.sched-row {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  align-items: flex-start;
}
.sn {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 12px;
  color: var(--muted);
  min-width: 24px;
  padding-top: 2px;
}
.sched-title  { font-weight: 600; font-size: 14px; margin-bottom: 3px; }
.sched-detail { font-size: 13px; color: var(--muted); line-height: 1.6; }

.offer-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  position: sticky;
  top: 88px;
}
.oc-kicker {
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.offer-card h3 { font-size: 17px; margin-bottom: 18px; }
.price-box { margin-bottom: 20px; }
.price-main { font-family: var(--font-h); font-size: 36px; font-weight: 800; color: var(--navy); line-height: 1; }
.price-lbl  { font-size: 12px; color: var(--muted); margin-top: 2px; }
.price-full { font-size: 12px; color: var(--muted); margin-top: 4px; }
.offer-list { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.offer-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; line-height: 1.5; }
.li-check { color: var(--teal); font-weight: 700; flex-shrink: 0; }
.offer-guar { font-size: 12px; color: var(--muted); margin-top: 14px; line-height: 1.6; }

/* ─── ABOUT SECTION ───────────────────────────────────────── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.about-photo {
  width: 100px; height: 100px; border-radius: 50%;
  object-fit: cover; background: var(--beige);
  flex-shrink: 0;
}
.about-bio-head { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 20px; }
.cred-list { display: flex; flex-direction: column; gap: 20px; }
.cred-item { display: flex; align-items: flex-start; gap: 14px; }
.cred-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.cred-item strong { display: block; font-size: 14px; margin-bottom: 3px; }
.cred-item span   { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ─── SCORECARD SECTION ───────────────────────────────────── */
.scorecard-cta-box {
  background: var(--amber);
  border-radius: var(--r-lg);
  padding: 40px;
  text-align: center;
  color: #fff;
}
.scorecard-cta-box h2 { color: #fff; margin-bottom: 12px; }
.scorecard-cta-box p  { color: rgba(255,255,255,.85); max-width: 480px; margin: 0 auto 24px; }
.sc-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.sc-pill {
  font-size: 12px; font-family: var(--font-h); font-weight: 600;
  background: rgba(255,255,255,.2); color: #fff;
  border-radius: 20px; padding: 5px 14px;
}
.sc-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
}
.sc-pillar-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  text-align: center;
}
.sc-pillar-letter {
  font-family: var(--font-h);
  font-size: 36px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 8px;
}
.sc-pillar-card h3 { font-size: 16px; margin-bottom: 8px; }
.sc-pillar-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ─── CONNECT PAGE ────────────────────────────────────────── */
.connect-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.connect-channels { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.connect-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  transition: border-color .15s;
}
.connect-channel:hover { border-color: var(--teal); text-decoration: none; }
.ch-icon { font-size: 22px; flex-shrink: 0; }
.ch-name  { font-weight: 600; font-size: 14px; color: var(--navy); }
.ch-desc  { font-size: 12px; color: var(--muted); }

/* ─── PROOF BADGES ────────────────────────────────────────── */
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
}
.proof-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ─── NOT-FOR LIST ────────────────────────────────────────── */
.not-for {
  background: var(--beige);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin-top: 32px;
}
.not-for h4 { font-size: 15px; margin-bottom: 14px; }
.not-list { display: flex; flex-direction: column; gap: 8px; }
.not-list li { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
.not-x { color: #C0392B; font-weight: 700; flex-shrink: 0; }

/* ─── COMPARE COLS ────────────────────────────────────────── */
.compare-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; border-radius: var(--r-lg); overflow: hidden; }
.compare-col { padding: 20px; background: var(--beige); }
.compare-col.yes { background: var(--teal-lt); }
.compare-col-lbl { font-family: var(--font-h); font-size: 12px; font-weight: 700; margin-bottom: 12px; }
.lbl-no  { color: var(--muted); }
.lbl-yes { color: var(--teal); }
.compare-col ul li { font-size: 13px; color: var(--navy); padding: 4px 0; border-bottom: 1px solid rgba(0,0,0,.06); line-height: 1.5; }

/* ─── HERO (index.html specific) ─────────────────────────── */
.hero {
  background: var(--offwhite);
  color: var(--navy);
  padding: 88px 0 80px;
  text-align: center;
}
.hero-kicker {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--beige);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 { color: var(--navy); margin-bottom: 20px; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero h1 em { color: var(--teal); font-style: normal; }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 560px; margin: 0 auto 32px; line-height: 1.65; }
.hero-tagline { font-family: var(--font-h); font-weight: 700; font-size: 13px; color: var(--amber); letter-spacing: .04em; margin-bottom: 4px; }
.hero-build { font-family: var(--font-h); font-weight: 600; font-size: 12px; color: var(--muted); margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.hero-note { font-size: 12px; color: var(--muted); }

/* ─── SECTION SPECIFIC BACKGROUNDS ───────────────────────── */
.bg-white   { background: #fff; }
.bg-cream   { background: var(--cream); }
.bg-beige   { background: var(--beige); }
.bg-offwhite { background: var(--offwhite); }
.bg-navy    { background: var(--navy); }

/* ─── UTILITY ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }
.section-header { margin-bottom: 40px; }
.section-header p { font-size: 17px; color: var(--muted); max-width: 560px; margin-top: 10px; line-height: 1.65; }
.section-header.text-center p { margin-left: auto; margin-right: auto; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.gap-stack > * + * { margin-top: 16px; }

/* ─── CTA SECTION ─────────────────────────────────────────── */
.cta-section { background: var(--cream); padding: 72px 0; text-align: center; }
.cta-section h2 { color: var(--navy); margin-bottom: 14px; }
.cta-section h2 em { color: var(--teal); font-style: normal; }
.cta-section p  { color: var(--muted); max-width: 480px; margin: 0 auto 32px; font-size: 16px; line-height: 1.65; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── STEPS LIST ──────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 20px; }
.steps li { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid var(--border); align-items: flex-start; }
.step-num {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--teal-lt); color: var(--teal);
  font-family: var(--font-h); font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.step-text strong { display: block; font-size: 14px; margin-bottom: 4px; }
.step-text p      { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ─── EXAMPLE BOX ─────────────────────────────────────────── */
.example-box {
  background: var(--offwhite);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  margin-bottom: 16px;
}
.example-lbl { font-family: var(--font-h); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.ex-before, .ex-after { padding: 12px; border-radius: var(--r); margin-bottom: 8px; }
.ex-before { background: var(--beige); }
.ex-after  { background: rgba(61,155,155,.08); border: 1px solid rgba(61,155,155,.2); }
.ex-row-lbl { font-family: var(--font-h); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 5px; }
.lbl-b { color: var(--muted); }
.lbl-a { color: var(--teal); }
.ex-before p, .ex-after p { font-size: 13px; color: var(--navy); line-height: 1.6; }
.tab-output {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
  font-size: 13.5px;
  line-height: 1.6;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 920px) {
  .who-grid         { grid-template-columns: 1fr 1fr; }
  .feature-grid     { grid-template-columns: 1fr 1fr; }
  .problem-grid     { grid-template-columns: 1fr 1fr; }
  .diff-grid        { grid-template-columns: 1fr; }
  .offer-body       { grid-template-columns: 1fr; }
  .about-inner      { grid-template-columns: 1fr; gap: 32px; }
  .connect-inner    { grid-template-columns: 1fr; }
  .tab-panel.active { grid-template-columns: 1fr; }
  .sc-pillars-grid  { grid-template-columns: 1fr 1fr; }
  .offer-card       { position: static; }
  nav .nav-cta      { display: none; }
  .nav-toggle       { display: flex; }
  .nav-right {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    z-index: 199;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .nav-right.open { display: flex; }
  .nav-links       { flex-direction: column; width: 100%; margin-right: 0; }
  .nav-links a     { display: block; padding: 10px 4px; font-size: 15px; }
  .nav-right .btn  { display: flex; width: 100%; margin-top: 8px; justify-content: center; }
}

@media (max-width: 600px) {
  .who-grid        { grid-template-columns: 1fr; }
  .feature-grid    { grid-template-columns: 1fr; }
  .problem-grid    { grid-template-columns: 1fr; }
  .sc-pillars-grid { grid-template-columns: 1fr; }
  .tab-row         { flex-wrap: wrap; width: 100%; }
  .tab-btn         { flex: 1; text-align: center; }
  .hero-cta        { flex-direction: column; align-items: center; }
  .cta-btns        { flex-direction: column; align-items: center; }
  .form-nav        { flex-direction: column; }
  .prompts-grid    { grid-template-columns: 1fr; }
  .footer-inner    { flex-direction: column; gap: 24px; }
  .section         { padding: 48px 0; }
}

/* ─── SECTION 2-COL UTILITY (replaces inline grid styles) ── */
.section-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* ─── CONNECT PAGE — CARDS-FIRST LAYOUT ─────────────────── */
.connect-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.connect-form-wrap {
  max-width: 640px;
  margin: 0 auto;
}

/* ─── RESPONSIVE ADDITIONS ───────────────────────────────── */
@media (max-width: 920px) {
  .section-2col      { grid-template-columns: 1fr; gap: 36px; }
  .connect-cards-row { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 600px) {
  .section-2col      { gap: 24px; }
  .connect-cards-row { grid-template-columns: 1fr; }
  .connect-form-wrap { max-width: 100%; }
  .page-header       { padding: 52px 0 40px; }
  .hero              { padding: 56px 0 52px; }
  /* Prevent text overflow in headers */
  h1, h2             { word-break: break-word; }
}
