/* Practice Growth Formula — shared styles
   Brand: Primary #112F41, Highlight #0894A1, Green #47AB6C, Gold #F2B134, CTA #ED553B, Tertiary #E6E6E6
*/

:root {
  --primary: #112F41;
  --primary-deep: #0a1e2a;
  --primary-mid: #1a3f54;
  --primary-lift: #234a60;
  --highlight: #0894A1;
  --highlight-soft: rgba(8, 148, 161, 0.15);
  --green: #47AB6C;
  --gold: #F2B134;
  --cta: #ED553B;
  --cta-hover: #d94830;
  --tertiary: #E6E6E6;
  --white: #FFFFFF;
  --black: #000000;
  --caption: #808080;
  --muted: rgba(230, 230, 230, 0.65);
  --muted-strong: rgba(230, 230, 230, 0.85);
  --border: rgba(230, 230, 230, 0.12);
  --border-strong: rgba(230, 230, 230, 0.22);
  --card: rgba(26, 63, 84, 0.55);
  --card-solid: #16384a;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --max: 1120px;
  --nav-h: 72px;
  --font-serif: "PT Serif", Georgia, serif;
  --font-sans: "Roboto", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--tertiary);
  background: var(--primary);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--highlight); text-decoration: none; }
a:hover { color: var(--white); }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin-bottom: 0.35rem; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 0.75rem;
  text-wrap: balance;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 2.5rem, 720px);
  margin-inline: auto;
}

/* —— Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 47, 65, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover { color: var(--white); }
.logo-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.logo-tag {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 400;
  max-width: 220px;
  line-height: 1.3;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--muted-strong);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
}

.nav-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--white);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--white);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--cta);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(237, 85, 59, 0.35);
}
.btn-primary:hover {
  background: var(--cta-hover);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--highlight);
  color: var(--white);
  background: var(--highlight-soft);
}
.btn-ghost {
  background: transparent;
  color: var(--highlight);
  font-weight: 700;
  font-style: italic;
  text-decoration: underline;
  padding: 0.5rem 0;
  border-radius: 0;
  box-shadow: none;
}
.btn-ghost:hover { color: var(--white); }
.btn-block { width: 100%; }

.micro {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.65rem;
}
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 0.75rem;
}

/* —— Sections —— */
.section {
  padding: 4.5rem 0;
}
.section-tight { padding: 3rem 0; }
.section-alt {
  background: linear-gradient(180deg, var(--primary-deep) 0%, var(--primary) 100%);
}
.section-lift {
  background: var(--primary-mid);
}
.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.section-head.centered {
  margin-inline: auto;
  text-align: center;
}
.lead {
  font-size: 1.125rem;
  color: var(--muted-strong);
  line-height: 1.65;
}

/* —— Hero —— */
.hero {
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% 40% auto -10%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(8, 148, 161, 0.18), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.hero-copy .lead { margin-bottom: 1.75rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.hero-secondary {
  font-size: 0.95rem;
  color: var(--muted);
}
.hero-secondary a {
  font-weight: 700;
  font-style: italic;
  text-decoration: underline;
}

/* —— Job card —— */
.job-card {
  background: linear-gradient(160deg, var(--card-solid), var(--primary-deep));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.job-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.job-meta {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.job-meta li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.75rem;
  padding: 0.7rem 0;
  margin: 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}
.job-meta li:last-child { border-bottom: none; }
.job-meta dt,
.job-meta .k {
  color: var(--caption);
  font-weight: 500;
}
.job-meta .v { color: var(--tertiary); }
.job-handled h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--highlight);
  margin-bottom: 0.65rem;
}
.job-handled ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.job-handled li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
  color: var(--muted-strong);
}
.job-handled li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.job-caption {
  font-size: 0.8rem;
  color: var(--caption);
  font-style: italic;
  margin: 0;
}

.day-strip {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--highlight-soft);
  border: 1px solid rgba(8, 148, 161, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.day-strip-dots {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}
.day-strip-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--highlight);
  opacity: 0.35;
}
.day-strip-dots span:nth-child(2) { opacity: 0.6; }
.day-strip-dots span:nth-child(3) { opacity: 1; }
.day-strip p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted-strong);
}

/* —— Problem options —— */
.options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0 2rem;
}
.option-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: relative;
}
.option-card.featured {
  border-color: var(--highlight);
  background: linear-gradient(165deg, rgba(8, 148, 161, 0.18), var(--card-solid));
  box-shadow: 0 0 0 1px rgba(8, 148, 161, 0.25);
}
.option-num {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--caption);
  margin-bottom: 0.5rem;
}
.option-card.featured .option-num { color: var(--highlight); }
.option-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.option-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.option-card li {
  padding-left: 1.1rem;
  position: relative;
  font-size: 0.92rem;
  color: var(--muted-strong);
  margin-bottom: 0.55rem;
}
.option-card li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--caption);
}
.option-card.featured li::before { color: var(--highlight); }
.why-two {
  max-width: 720px;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: rgba(242, 177, 52, 0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--muted-strong);
  font-size: 1rem;
}
.why-two strong { color: var(--white); }

/* —— Role cards —— */
.roles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.role-card {
  background: var(--card-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.role-card:hover {
  border-color: var(--highlight);
  transform: translateY(-2px);
}
.role-card h3 {
  font-size: 1.1rem;
  color: var(--highlight);
  margin-bottom: 0.5rem;
}
.role-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted-strong);
}

/* —— Proof / pipeline —— */
.proof-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}
.pipeline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.pipeline-step {
  background: var(--primary-lift);
  border: 1px solid var(--border-strong);
  color: var(--tertiary);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
}
.pipeline-caption {
  font-size: 0.9rem;
  color: var(--caption);
  font-style: italic;
}
.client-note {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.client-note h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

/* —— Steps —— */
.steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--highlight);
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body h3 { margin-bottom: 0.4rem; }
.step-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.step-meta dl {
  margin: 0;
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
}
.step-meta dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--highlight);
  margin-bottom: 0.35rem;
  font-weight: 700;
}
.step-meta dd {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted-strong);
}
.step-subs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
.step-sub {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius);
  border-top: 2px solid var(--green);
}
.step-sub h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--green);
  margin-bottom: 0.65rem;
}
.honesty {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px dashed var(--border-strong);
  color: var(--muted-strong);
  font-size: 0.95rem;
}

/* —— Compare / stakes —— */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.compare-col {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
}
.compare-col.bad {
  background: rgba(0, 0, 0, 0.25);
}
.compare-col.good {
  background: rgba(71, 171, 108, 0.12);
  border-color: rgba(71, 171, 108, 0.35);
}
.compare-col h3 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.compare-col.good h3 { color: var(--green); }
.compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.compare-col li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--muted-strong);
}
.compare-col li:last-child { border-bottom: none; }

/* —— Kira embed / chat —— */
.kira-module,
.course-module {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(165deg, var(--card-solid), var(--primary-deep));
  padding: 2rem;
  box-shadow: var(--shadow);
}
.kira-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.kira-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--highlight), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.kira-header h3 { margin: 0; font-size: 1.15rem; }
.kira-header p { margin: 0; font-size: 0.85rem; color: var(--muted); }
.chat-bubble {
  background: rgba(8, 148, 161, 0.12);
  border: 1px solid rgba(8, 148, 161, 0.25);
  border-radius: 4px var(--radius) var(--radius) var(--radius);
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
  color: var(--tertiary);
  font-size: 0.98rem;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.chip {
  appearance: none;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.chip:hover {
  border-color: var(--highlight);
  color: var(--white);
  background: var(--highlight-soft);
}

.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted-strong);
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.15s;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--caption); }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--highlight);
}

.kira-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.happens {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  counter-reset: happ;
}
.happens li {
  counter-increment: happ;
  position: relative;
  padding: 1rem 0 1rem 3rem;
  border-bottom: 1px solid var(--border);
  margin: 0;
  color: var(--muted-strong);
}
.happens li:last-child { border-bottom: none; }
.happens li::before {
  content: counter(happ);
  position: absolute;
  left: 0;
  top: 1rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--highlight-soft);
  border: 1px solid rgba(8, 148, 161, 0.4);
  color: var(--highlight);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.happens strong { color: var(--white); display: block; margin-bottom: 0.25rem; }

/* —— Pricing —— */
.price-card {
  max-width: 520px;
  margin: 0 auto 3rem;
  background: linear-gradient(165deg, var(--card-solid), var(--primary-deep));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.price-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.price-amount {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 4rem);
  color: var(--white);
  line-height: 1;
  margin: 0;
}
.price-period {
  color: var(--muted);
  margin: 0.5rem 0 1.25rem;
  font-size: 1.05rem;
}
.price-body {
  color: var(--muted-strong);
  margin-bottom: 1.5rem;
}
.price-includes {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.price-includes li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.75rem;
  border-bottom: 1px solid var(--border);
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.95rem;
}
.price-includes li:last-child { border-bottom: none; }
.price-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}
.price-scope {
  font-size: 0.9rem;
  color: var(--caption);
  font-style: italic;
  margin-bottom: 0.75rem;
}
.price-free {
  font-weight: 700;
  color: var(--highlight);
  margin: 0;
}

.onramp-card {
  max-width: 640px;
  margin: 0 auto 3rem;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(8, 148, 161, 0.35);
  background: var(--highlight-soft);
  text-align: center;
}
.onramp-card .lead { margin-bottom: 1.25rem; }

.fit-list {
  max-width: 640px;
  margin: 0 auto;
  counter-reset: fit;
  list-style: none;
  padding: 0;
}
.fit-list li {
  counter-increment: fit;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.fit-list li::before {
  content: counter(fit);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-lift);
  border: 1px solid var(--border-strong);
  color: var(--highlight);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fit-list strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.fit-list span { color: var(--muted-strong); font-size: 0.95rem; }
.soft-exit {
  text-align: center;
  margin-top: 2rem;
  color: var(--muted);
}
.soft-exit a {
  font-weight: 700;
  font-style: italic;
  text-decoration: underline;
}

/* —— FAQ —— */
.faq {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq-item h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.faq-item p {
  margin: 0;
  color: var(--muted-strong);
}

/* —— Legal stubs —— */
.legal {
  padding: 4rem 0 5rem;
}
.legal .lead { max-width: 640px; }

/* —— CTA band —— */
.cta-band {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--primary-mid), var(--primary-deep));
  border-top: 1px solid var(--border);
}
.cta-band h2 { margin-bottom: 1.5rem; }

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  background: var(--primary-deep);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand .logo-name { font-size: 1.15rem; }
.footer-tag {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 280px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a {
  color: var(--muted-strong);
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--caption);
}
.footer-legal {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-legal a { color: var(--caption); }
.footer-legal a:hover { color: var(--tertiary); }

/* —— Page hero (inner) —— */
.page-hero {
  padding: 4rem 0 2.5rem;
  text-align: center;
}
.page-hero .lead {
  max-width: 620px;
  margin-inline: auto;
}
.page-hero-left { text-align: left; }
.page-hero-left .lead { margin-inline: 0; }

/* —— Utility —— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.mt-2 { margin-top: 2rem; }
.text-center { text-align: center; }

/* —— Responsive —— */
@media (max-width: 960px) {
  .hero-grid,
  .proof-panel,
  .kira-split {
    grid-template-columns: 1fr;
  }
  .options { grid-template-columns: 1fr; }
  .roles { grid-template-columns: 1fr 1fr; }
  .compare { grid-template-columns: 1fr; }
  .step-meta,
  .step-subs { grid-template-columns: 1fr; }
  .job-meta li { grid-template-columns: 1fr; gap: 0.2rem; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--primary-deep);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.25rem 1.25rem;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { margin: 0; }
  .nav-links a {
    display: block;
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-cta { display: none; }
  .nav-links .mobile-cta {
    display: block;
    margin-top: 0.75rem;
  }
  .nav-links .mobile-cta .btn { width: 100%; }
  .roles { grid-template-columns: 1fr; }
  .logo-tag { display: none; }
  .section { padding: 3.25rem 0; }
  .hero { padding: 3rem 0 2.5rem; }
}

@media (min-width: 761px) {
  .nav-links .mobile-cta { display: none; }
}
