/* NextBitz primary website stylesheet */
:root {
  --navy: #071a33;
  --navy-2: #0b2445;
  --blue: #075be8;
  --blue-bright: #1976ff;
  --blue-soft: #eaf3ff;
  --orange: #ff6a00;
  --orange-dark: #d94f00;
  --orange-soft: #fff0e5;
  --ink: #10233d;
  --muted: #59697c;
  --line: #d9e2ec;
  --paper: #ffffff;
  --surface: #f4f7fb;
  --shadow: 0 24px 70px rgba(7, 26, 51, 0.12);
  --radius: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  color: var(--navy);
  background: var(--paper);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.section-shell { width: min(calc(100% - 3rem), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 26, 51, 0.1);
  backdrop-filter: blur(16px);
}
.navbar {
  width: min(calc(100% - 3rem), var(--max));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { flex: 0 0 194px; height: 58px; overflow: hidden; position: relative; }
.brand-crop { position: absolute; inset: 0; overflow: hidden; }
.brand-crop img { width: 194px; max-width: none; transform: translateY(-66px); }
.nav-links { display: flex; align-items: center; gap: 0.2rem; list-style: none; }
.nav-links a {
  display: block;
  padding: 0.65rem 0.75rem;
  color: #30435a;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  transition: color 160ms ease, background 160ms ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--blue-soft); }
.nav-links .nav-cta {
  margin-left: 0.35rem;
  padding: 0.72rem 1rem;
  color: var(--paper);
  background: var(--navy);
}
.nav-links .nav-cta:hover { color: var(--paper); background: var(--blue); }
.menu-button { display: none; border: 0; background: transparent; cursor: pointer; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 15%, rgba(25,118,255,0.35), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(255,106,0,0.15), transparent 30%),
    linear-gradient(125deg, #06162b 0%, #081f3e 55%, #0a2a55 100%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 3rem), var(--max));
  min-height: 690px;
  margin-inline: auto;
  padding: 6.5rem 0 5.5rem;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 4.5rem;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  color: #a8caff;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow span { width: 24px; height: 2px; background: var(--orange); }
.eyebrow-dark { color: var(--blue); }
.hero h1 {
  max-width: 720px;
  font-size: clamp(3.1rem, 6vw, 5.85rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-lead {
  max-width: 660px;
  margin-top: 1.6rem;
  color: #d0dded;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.78rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--paper); background: var(--orange); box-shadow: 0 14px 38px rgba(255,106,0,0.25); }
.btn-primary:hover { background: #ff7a1a; }
.btn-secondary { color: var(--paper); border-color: rgba(255,255,255,0.24); background: rgba(255,255,255,0.05); }
.btn-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.1); }
.btn-light { color: var(--blue); background: var(--paper); }
.btn-light:hover { background: #f2f7ff; }
.hero-proof { margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.13); }
.hero-proof p { margin-bottom: 0.6rem; color: #8fa6c0; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.hero-proof ul { display: flex; flex-wrap: wrap; gap: 0.55rem; list-style: none; }
.hero-proof li { color: #dce8f6; font-size: 0.83rem; font-weight: 700; }
.hero-proof li + li::before { content: "•"; margin-right: 0.55rem; color: var(--orange); }

.hero-panel {
  position: relative;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 24px;
  background: rgba(4,18,37,0.62);
  box-shadow: 0 35px 100px rgba(0,0,0,0.28);
  backdrop-filter: blur(12px);
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), transparent 30%);
}
.panel-top { position: relative; display: flex; align-items: center; justify-content: space-between; padding: 0.55rem 0.5rem 1rem; gap: 1rem; }
.panel-top > p { color: #d8e6f8; font-size: 0.83rem; font-weight: 800; }
.status-dot { color: #a9bad0; font-size: 0.72rem; }
.status-dot::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 0.45rem; border-radius: 50%; background: #51e3a4; box-shadow: 0 0 0 5px rgba(81,227,164,0.1); }
.outcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.outcome-grid article {
  position: relative;
  min-height: 205px;
  padding: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  background: rgba(255,255,255,0.055);
}
.outcome-grid article:first-child { background: linear-gradient(145deg, rgba(7,91,232,0.55), rgba(7,91,232,0.2)); }
.outcome-grid article:nth-child(4) { background: linear-gradient(145deg, rgba(255,106,0,0.28), rgba(255,106,0,0.06)); }
.outcome-icon {
  display: inline-flex;
  min-width: 38px;
  height: 28px;
  align-items: center;
  justify-content: center;
  padding-inline: 0.45rem;
  color: #cfe0f7;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.outcome-number { position: absolute; top: 1.25rem; right: 1.25rem; color: rgba(255,255,255,0.28); font-size: 0.72rem; font-weight: 800; }
.outcome-grid h2 { margin-top: 1.45rem; color: var(--paper); font-size: 1.02rem; letter-spacing: -0.02em; }
.outcome-grid article > p:last-child { margin-top: 0.5rem; color: #aebfd4; font-size: 0.78rem; line-height: 1.55; }
.hero-orbit { position: absolute; pointer-events: none; border: 1px solid rgba(86,145,219,0.14); border-radius: 50%; }
.orbit-one { width: 580px; height: 580px; right: -210px; top: -250px; }
.orbit-two { width: 420px; height: 420px; left: -300px; bottom: -290px; }

.audience-strip { border-bottom: 1px solid var(--line); background: var(--surface); }
.audience-inner { min-height: 88px; display: flex; align-items: center; gap: 2rem; }
.audience-inner > p { flex: none; color: var(--muted); font-size: 0.72rem; font-weight: 850; letter-spacing: 0.11em; text-transform: uppercase; }
.audience-inner ul { display: flex; flex: 1; justify-content: space-between; gap: 1.5rem; list-style: none; }
.audience-inner li { color: #31475f; font-size: 0.9rem; font-weight: 750; }
.audience-inner li::before { content: "◆"; margin-right: 0.55rem; color: var(--orange); font-size: 0.55rem; vertical-align: 0.16em; }

.section-block { padding-top: 7rem; padding-bottom: 7rem; }
.section-heading { display: grid; grid-template-columns: 1.5fr 0.75fr; gap: 4rem; align-items: end; margin-bottom: 3rem; }
.section-heading h2, .contrast-copy h2, .final-cta h2, .page-hero h1 {
  color: var(--navy);
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}
.section-heading > p { color: var(--muted); font-size: 1.02rem; }
.compact-heading { grid-template-columns: 1fr; margin-bottom: 2rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card {
  min-height: 330px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.service-card:hover { position: relative; z-index: 2; transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card.featured { color: var(--paper); background: var(--blue); }
.service-top { min-height: 30px; display: flex; align-items: center; justify-content: space-between; }
.service-number { color: #8291a3; font-size: 0.75rem; font-weight: 850; }
.featured .service-number { color: #a9ccff; }
.service-tag { padding: 0.28rem 0.55rem; color: var(--paper); border: 1px solid rgba(255,255,255,0.24); border-radius: 999px; font-size: 0.63rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.service-card h3 { margin-top: 2.3rem; color: var(--navy); font-size: 1.35rem; line-height: 1.2; letter-spacing: -0.025em; }
.service-card.featured h3 { color: var(--paper); }
.service-card > p { margin-top: 0.85rem; color: var(--muted); font-size: 0.94rem; }
.service-card.featured > p { color: #d6e7ff; }
.mini-list { margin-top: 1rem; display: grid; gap: 0.35rem; color: #d6e7ff; list-style: none; font-size: 0.8rem; }
.mini-list li::before { content: "—"; margin-right: 0.45rem; color: #89baff; }
.service-card a { margin-top: auto; padding-top: 1.5rem; color: var(--blue); text-decoration: none; font-size: 0.83rem; font-weight: 850; }
.service-card.featured a { color: var(--paper); }

.contrast-section { color: var(--paper); background: var(--navy); }
.contrast-grid { padding-top: 6.5rem; padding-bottom: 6.5rem; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 7rem; align-items: center; }
.contrast-copy h2 { color: var(--paper); }
.contrast-copy > p:not(.eyebrow) { margin-top: 1.4rem; color: #aebfd3; font-size: 1.02rem; }
.text-link { display: inline-block; margin-top: 1.6rem; color: var(--paper); text-decoration: none; font-weight: 850; border-bottom: 1px solid rgba(255,255,255,0.35); }
.process-list { list-style: none; border-top: 1px solid rgba(255,255,255,0.14); }
.process-list li { display: grid; grid-template-columns: 54px 1fr; gap: 1rem; padding: 1.35rem 0; border-bottom: 1px solid rgba(255,255,255,0.14); }
.process-list li > span { color: var(--orange); font-size: 0.73rem; font-weight: 850; }
.process-list h3 { font-size: 1rem; }
.process-list p { margin-top: 0.25rem; color: #aebfd3; font-size: 0.86rem; }

.starter-section { padding-top: 6.5rem; padding-bottom: 6.5rem; }
.starter-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.starter-grid article { min-height: 310px; padding: 2rem; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.starter-grid .starter-accent { color: var(--paper); border-color: var(--blue); background: var(--blue); box-shadow: 0 20px 60px rgba(7,91,232,0.2); }
.starter-label { color: var(--orange-dark); font-size: 0.72rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.starter-accent .starter-label { color: #c2dcff; }
.starter-grid h3 { margin-top: 1.2rem; color: var(--navy); font-size: 1.35rem; line-height: 1.2; }
.starter-accent h3 { color: var(--paper); }
.starter-grid article > p:nth-of-type(2) { margin-top: 0.85rem; color: var(--muted); font-size: 0.91rem; }
.starter-grid .starter-accent > p:nth-of-type(2) { color: #d8e8ff; }
.starter-grid .text-link { margin-top: auto; padding-top: 1.5rem; }
.dark-link { color: var(--blue); border-color: rgba(7,91,232,0.3); }

.final-cta { color: var(--paper); background: var(--blue); }
.final-cta-inner { min-height: 330px; padding-top: 4rem; padding-bottom: 4rem; display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.final-cta h2 { max-width: 800px; color: var(--paper); }
.final-cta .btn { flex: none; }

.site-footer { padding-top: 4.5rem; color: #b2c1d2; background: #041225; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 0.6fr 0.8fr; gap: 4rem; padding-bottom: 3.5rem; }
.footer-brand { color: var(--paper); text-decoration: none; font-size: 1.65rem; font-weight: 900; letter-spacing: -0.05em; }
.footer-brand span { color: var(--orange); }
.footer-grid > div:first-child p { max-width: 430px; margin-top: 1rem; font-size: 0.9rem; }
.footer-grid h2 { margin-bottom: 1rem; color: var(--paper); font-size: 0.76rem; letter-spacing: 0.11em; text-transform: uppercase; }
.footer-grid ul { display: grid; gap: 0.55rem; list-style: none; }
.footer-grid a:not(.footer-brand) { display: block; margin-bottom: 0.55rem; color: #b2c1d2; text-decoration: none; font-size: 0.88rem; }
.footer-grid a:hover { color: var(--paper); }
.footer-bottom { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.76rem; }

/* Interior pages */
.page-hero { color: var(--paper); background: var(--navy); }
.page-hero-inner { min-height: 455px; padding-top: 6rem; padding-bottom: 5rem; display: grid; grid-template-columns: 1.25fr 0.75fr; align-items: end; gap: 5rem; }
.page-hero h1 { max-width: 820px; color: var(--paper); }
.page-hero h1 em { color: var(--orange); font-style: normal; }
.page-hero-side { padding-left: 1.5rem; border-left: 2px solid var(--orange); }
.page-hero-side p { color: #b8c8d9; }
.page-hero-side .text-link { margin-top: 1rem; }
.content-band { padding: 6rem 0; }
.content-band.surface { background: var(--surface); }
.detail-grid { display: grid; gap: 1rem; }
.detail-card {
  scroll-margin-top: 100px;
  display: grid;
  grid-template-columns: 90px 1fr 0.8fr;
  gap: 2rem;
  align-items: start;
  padding: 2.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.detail-card + .detail-card { margin-top: 1rem; }
.detail-index { color: var(--blue); font-size: 0.8rem; font-weight: 900; }
.detail-main h2 { color: var(--navy); font-size: 1.5rem; line-height: 1.2; }
.detail-main p { margin-top: 0.7rem; color: var(--muted); }
.detail-list { display: grid; gap: 0.55rem; list-style: none; }
.detail-list li { padding-left: 1.25rem; position: relative; color: #3e5166; font-size: 0.88rem; }
.detail-list li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.package-grid, .scenario-grid, .insight-grid, .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.package-card, .scenario-card, .insight-card, .value-card { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.package-card h3, .scenario-card h2, .insight-card h2, .value-card h3 { margin-top: 1rem; color: var(--navy); font-size: 1.3rem; line-height: 1.25; }
.package-card > p:not(.starter-label), .scenario-card > p, .insight-card > p, .value-card > p { margin-top: 0.75rem; color: var(--muted); font-size: 0.91rem; }
.package-card .text-link, .scenario-card .text-link, .insight-card .text-link { color: var(--blue); border-color: rgba(7,91,232,0.25); }
.section-title { max-width: 740px; margin-bottom: 2.5rem; }
.section-title h2 { color: var(--navy); font-size: clamp(2rem, 3vw, 3.15rem); line-height: 1.1; letter-spacing: -0.045em; }
.section-title > p:last-child { margin-top: 1rem; color: var(--muted); }
.scenario-label, .insight-label { color: var(--blue); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.scenario-card { min-height: 350px; display: flex; flex-direction: column; }
.scenario-card .detail-list { margin-top: 1.2rem; }
.scenario-card .text-link { margin-top: auto; padding-top: 1.4rem; align-self: flex-start; }
.credential-row { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.credential { min-height: 170px; padding: 2rem; background: var(--paper); }
.credential + .credential { border-left: 1px solid var(--line); }
.credential span { color: var(--orange-dark); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.credential h3 { margin-top: 1.1rem; color: var(--navy); font-size: 1.2rem; }
.credential p { margin-top: 0.5rem; color: var(--muted); font-size: 0.85rem; }
.story-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 6rem; align-items: start; }
.story-aside { position: sticky; top: 110px; padding: 1.8rem; border-left: 3px solid var(--orange); background: var(--orange-soft); }
.story-aside p { color: #69432b; font-size: 0.92rem; font-weight: 700; }
.story-content h2 { color: var(--navy); font-size: clamp(2rem, 3vw, 3rem); line-height: 1.1; letter-spacing: -0.045em; }
.story-content h3 { margin-top: 2rem; color: var(--navy); }
.story-content p { margin-top: 0.9rem; color: var(--muted); }
.value-card { border-top: 4px solid var(--blue); }
.value-card:nth-child(2) { border-top-color: var(--orange); }
.value-card:nth-child(3) { border-top-color: var(--navy); }
.insight-card { min-height: 320px; display: flex; flex-direction: column; }
.insight-card .text-link { margin-top: auto; padding-top: 1.3rem; align-self: flex-start; }
.newsletter-panel { padding: 3rem; display: flex; justify-content: space-between; align-items: center; gap: 3rem; color: var(--paper); border-radius: var(--radius); background: var(--navy); }
.newsletter-panel h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1.15; }
.newsletter-panel p { max-width: 600px; margin-top: 0.7rem; color: #b5c6d9; }
.contact-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 2rem; align-items: start; }
.contact-info-panel { padding: 2rem; border-radius: var(--radius); color: var(--paper); background: var(--navy); }
.contact-info-panel h2 { font-size: 1.6rem; }
.contact-info-panel > p { margin-top: 0.8rem; color: #b9c8d9; }
.contact-methods { margin-top: 2rem; display: grid; gap: 1rem; }
.contact-methods a { display: block; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.14); text-decoration: none; font-weight: 800; }
.response-note { margin-top: 2rem; padding: 1rem; color: #d9e7f8; border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; background: rgba(255,255,255,0.05); font-size: 0.82rem; }
.contact-form { padding: 2.2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 0.45rem; color: var(--navy); font-size: 0.82rem; font-weight: 850; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.86rem 0.95rem;
  color: var(--ink);
  border: 1px solid #c8d4e0;
  border-radius: 9px;
  outline: none;
  background: var(--paper);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(7,91,232,0.11); }
.contact-form .btn { cursor: pointer; }
.form-note { margin-top: 0.8rem; color: var(--muted); font-size: 0.78rem; }
.form-status { min-height: 1.4rem; margin-top: 0.7rem; color: var(--blue); font-size: 0.82rem; font-weight: 750; }

@media (max-width: 1020px) {
  .navbar { width: min(calc(100% - 2rem), var(--max)); }
  .brand { flex-basis: 170px; }
  .brand-crop img { width: 170px; transform: translateY(-58px); }
  .nav-links a { padding-inline: 0.55rem; font-size: 0.82rem; }
  .hero-grid { gap: 2.5rem; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .contrast-grid { gap: 4rem; }
  .package-grid, .scenario-grid, .insight-grid, .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .section-shell, .hero-grid { width: min(calc(100% - 2rem), var(--max)); }
  .navbar { min-height: 68px; flex-wrap: wrap; }
  .brand { height: 54px; }
  .menu-button { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 8px; background: var(--surface); }
  .menu-lines, .menu-lines::before, .menu-lines::after { width: 20px; height: 2px; display: block; position: relative; background: var(--navy); transition: transform 160ms ease; }
  .menu-lines::before, .menu-lines::after { content: ""; position: absolute; left: 0; }
  .menu-lines::before { top: -6px; }
  .menu-lines::after { top: 6px; }
  .menu-button[aria-expanded="true"] .menu-lines { background: transparent; }
  .menu-button[aria-expanded="true"] .menu-lines::before { top: 0; transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] .menu-lines::after { top: 0; transform: rotate(-45deg); }
  .nav-links { display: none; flex: 0 0 100%; padding: 0.75rem 0 1rem; flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem; text-align: center; }
  .nav-links .nav-cta { margin: 0.4rem 0 0; }
  .hero-grid { min-height: auto; padding: 5rem 0; grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-panel { max-width: 600px; }
  .audience-inner { padding: 1.4rem 0; align-items: flex-start; flex-direction: column; gap: 1rem; }
  .audience-inner ul { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .section-block, .content-band { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .section-heading, .contrast-grid, .page-hero-inner, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .contrast-grid { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .starter-grid { grid-template-columns: 1fr; }
  .starter-grid article { min-height: 250px; }
  .final-cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .detail-card { grid-template-columns: 55px 1fr; }
  .detail-list { grid-column: 2; }
  .credential-row { grid-template-columns: 1fr; }
  .credential + .credential { border-left: 0; border-top: 1px solid var(--line); }
  .story-aside { position: static; }
  .newsletter-panel { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .hero-grid { padding: 4rem 0; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-proof li + li::before { display: none; }
  .hero-proof ul { flex-direction: column; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-grid article { min-height: 180px; }
  .audience-inner ul, .service-grid, .package-grid, .scenario-grid, .insight-grid, .values-grid, .form-grid { grid-template-columns: 1fr; }
  .section-heading { gap: 1.5rem; }
  .service-card { min-height: 285px; }
  .page-hero-inner { min-height: 400px; padding-top: 4.5rem; padding-bottom: 4rem; }
  .page-hero-side { padding-left: 1rem; }
  .detail-card { grid-template-columns: 1fr; padding: 1.5rem; gap: 1rem; }
  .detail-list { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { padding: 1rem 0; align-items: flex-start; flex-direction: column; gap: 0.25rem; }
  .newsletter-panel, .contact-form { padding: 1.5rem; }
  .field.full { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
