:root {
  --navy: #1e6091;
  --navy-dark: #12364f;
  --teal: #168aad;
  --teal-bright: #0fa5b1;
  --mint: #ecfdf6;
  --green: #76c893;
  --ink: #162631;
  --muted: #657686;
  --line: #d9e7eb;
  --white: #ffffff;
  --soft: #f7fbfc;
  --gold: #d8aa4d;
  --shadow: 0 18px 50px rgba(18, 54, 79, 0.13);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--navy-dark);
  background: var(--white);
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 18px clamp(20px, 4vw, 64px);
  color: var(--ink);
  background: rgba(251, 254, 253, 0.94);
  border-bottom: 1px solid rgba(16, 35, 49, 0.08);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 254, 253, 0.96);
  box-shadow: 0 12px 32px rgba(12, 32, 45, 0.08);
}

.brand img {
  width: 166px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav .nav-trigger:hover,
.site-nav .nav-trigger:focus-visible {
  color: var(--navy);
}

.site-nav .nav-dropdown {
  position: relative;
}

.site-nav .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.site-nav .nav-trigger::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.site-nav .nav-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  z-index: 25;
  display: grid;
  min-width: 220px;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-nav .nav-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  white-space: nowrap;
}

.site-nav .nav-menu a:hover,
.site-nav .nav-menu a:focus-visible {
  background: var(--mint);
}

.site-nav .nav-dropdown:hover .nav-menu,
.site-nav .nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  color: var(--navy-dark);
  background: var(--green);
  border-radius: 999px;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--navy-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(18, 54, 79, 0.22);
  border-radius: 6px;
  color: var(--navy-dark);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 82svh;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: 64% 50%;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(6, 22, 35, 0.94) 0%, rgba(11, 39, 58, 0.76) 39%, rgba(9, 27, 38, 0.18) 72%),
    linear-gradient(180deg, rgba(7, 22, 34, 0.68) 0%, rgba(7, 22, 34, 0.08) 45%, rgba(7, 22, 34, 0.48) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 104px);
  padding-top: 82px;
}

.hero-v2 {
  min-height: 88svh;
}

.hero-v2-content {
  width: min(860px, calc(100% - 40px));
}

.hero-v2 h1 {
  max-width: 10.5ch;
  font-size: clamp(3.9rem, 7vw, 7rem);
}

.authority-row {
  display: inline-grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  max-width: 520px;
  margin-bottom: 28px;
  padding: 9px 14px 9px 9px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.authority-row img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 50%;
}

.authority-row p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.35;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #bff4e4;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family:
    Urbanist, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(4.4rem, 8vw, 7.6rem);
  font-weight: 850;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--navy-dark);
  background: var(--green);
  border-color: var(--green);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.section {
  padding: clamp(68px, 9vw, 112px) 0;
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-light {
  background: var(--soft);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 520px;
  margin-bottom: 0;
}

.section-heading h2,
.orbit-copy h2,
.cta-layout h2 {
  color: var(--navy-dark);
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  font-weight: 830;
}

.section-heading p:not(.eyebrow),
.orbit-copy p,
.cta-layout p,
.contact-section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.signal-band {
  background: var(--mint);
  border-bottom: 1px solid var(--line);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.signal-grid article {
  min-height: 168px;
  padding: 28px;
  background: var(--mint);
}

.signal-grid span,
.service-index,
.orbit-panel span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--navy-dark);
  background: rgba(118, 200, 147, 0.36);
  font-size: 0.75rem;
  font-weight: 900;
}

.signal-grid h2 {
  color: var(--navy-dark);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.25;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 276px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 32px rgba(18, 54, 79, 0.06);
}

.service-card h2,
.service-card h3,
.decision-list h3 {
  color: var(--navy-dark);
  font-size: 1.28rem;
  line-height: 1.2;
}

.service-card a,
.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--teal);
  font-weight: 850;
  text-decoration: none;
}

.service-card a:hover,
.service-card a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--navy-dark);
  text-decoration: underline;
}

.service-card p,
.decision-list p,
.orbit-panel p {
  margin: 14px 0 0;
  color: var(--muted);
}

.orbit-section {
  background:
    linear-gradient(135deg, rgba(236, 253, 246, 0.94), rgba(255, 255, 255, 0.86)),
    linear-gradient(90deg, rgba(22, 138, 173, 0.12), rgba(118, 200, 147, 0.12));
}

.growth-section {
  background: var(--white);
}

.growth-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.growth-matrix,
.offer-grid,
.timeline-grid {
  display: grid;
  gap: 16px;
}

.growth-matrix {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.growth-matrix article,
.offer-card,
.plan-panel,
.timeline-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(18, 54, 79, 0.07);
}

.growth-matrix article {
  min-height: 250px;
  padding: 24px;
}

.growth-matrix span,
.offer-card span,
.phase-list span,
.timeline-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.growth-matrix h3,
.offer-card h2,
.plan-panel h2,
.timeline-grid h3 {
  color: var(--navy-dark);
  font-size: 1.28rem;
  line-height: 1.2;
}

.growth-matrix p,
.offer-card p,
.plan-panel p,
.timeline-grid p {
  color: var(--muted);
}

.offer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-card {
  min-height: 260px;
  padding: 26px;
}

.offer-card.featured {
  grid-column: span 2;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 54, 79, 0.98), rgba(22, 138, 173, 0.92)),
    var(--navy-dark);
}

.offer-card.featured h2,
.offer-card.featured p {
  color: var(--white);
}

.offer-card a:not(.button) {
  display: inline-flex;
  margin-top: 14px;
  color: var(--teal);
  font-weight: 850;
  text-decoration: none;
}

.plan-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.plan-panel {
  padding: clamp(26px, 4vw, 38px);
}

.phase-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.phase-list div {
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.phase-list h3 {
  color: var(--navy-dark);
  font-size: 1.2rem;
}

.roadmap-section {
  background: var(--mint);
}

.timeline-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-grid article {
  min-height: 230px;
  padding: 22px;
}

.proof-strip {
  padding: 0;
  color: var(--white);
  background: var(--navy-dark);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.proof-grid article {
  min-height: 160px;
  padding: 28px;
  background: #102f45;
}

.proof-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-family:
    Urbanist, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  font-weight: 900;
  line-height: 0.95;
}

.proof-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 720;
}

.split-visual {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.08fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.split-visual.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
}

.split-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-band {
  background:
    linear-gradient(135deg, rgba(236, 253, 246, 0.92), rgba(255, 255, 255, 0.86)),
    var(--mint);
}

.founder-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 40, 56, 0.98), rgba(24, 78, 119, 0.92)),
    var(--navy-dark);
}

.founder-band-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.founder-band-layout > img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
}

.founder-band h2 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.2vw, 4.6rem);
}

.founder-band p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.story-hero {
  padding-bottom: 54px;
}

.story-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
}

.story-hero-layout h1 {
  max-width: 980px;
}

.story-hero-layout > img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.story-facts {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.story-facts article {
  padding: 22px;
  background: var(--white);
}

.story-facts span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.story-facts p {
  margin: 0;
  color: var(--muted);
  font-weight: 720;
}

.story-copy {
  max-width: 790px;
}

.story-copy h2 {
  color: var(--navy-dark);
  font-size: clamp(2rem, 3.6vw, 3.8rem);
}

.story-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.guide-hero .hero-actions {
  margin-top: 30px;
}

.guide-layout,
.article-layout {
  display: grid;
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.guide-layout {
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
}

.guide-phases {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.split-visual .guide-phases {
  grid-template-columns: 1fr;
}

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

.article-card {
  min-height: 250px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(18, 54, 79, 0.07);
}

.article-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-card h2 {
  color: var(--navy-dark);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.12;
}

.article-card p {
  color: var(--muted);
}

.article-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--teal);
  font-weight: 850;
  text-decoration: none;
}

.article-card a:hover,
.article-card a:focus-visible {
  color: var(--navy-dark);
  text-decoration: underline;
}

.article-page {
  padding: 132px 0 78px;
  background: var(--soft);
}

.article-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.38fr);
}

.article-content {
  padding: clamp(26px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-content h1 {
  max-width: 980px;
  color: var(--navy-dark);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
}

.article-meta {
  margin: 16px 0 28px;
  color: var(--muted);
  font-weight: 750;
}

.article-content h2 {
  margin-top: 40px;
  color: var(--navy-dark);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

.article-content h3 {
  color: var(--navy-dark);
  font-size: 1.15rem;
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 1.04rem;
}

.article-content ul {
  padding-left: 22px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list section {
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list p {
  margin-bottom: 0;
}

.article-sidebar {
  position: sticky;
  top: 104px;
}

.sidebar-panel {
  padding: 26px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 54, 79, 0.98), rgba(22, 138, 173, 0.92)),
    var(--navy-dark);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(18, 54, 79, 0.18);
}

.sidebar-panel h2 {
  color: var(--white);
  font-size: 1.55rem;
}

.sidebar-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.orbit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.orbit-copy p {
  margin-bottom: 28px;
}

.orbit-panel {
  display: grid;
  gap: 14px;
}

.orbit-panel div {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: start;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(18, 54, 79, 0.07);
}

.orbit-panel span {
  margin-bottom: 0;
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.decision-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.decision-list article {
  padding: 26px;
  background: var(--white);
}

.cta-section {
  color: var(--white);
  background: var(--navy-dark);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1fr) auto;
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
}

.cta-layout h2 {
  color: var(--white);
}

.cta-layout p {
  color: rgba(255, 255, 255, 0.77);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c9dbe2;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: #fbfdfe;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(15, 165, 177, 0.2);
  border-color: var(--teal);
}

.site-footer {
  padding: 38px 0;
  color: rgba(255, 255, 255, 0.82);
  background: #0f2838;
}

.page-hero {
  padding: 142px 0 72px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 54, 79, 0.98), rgba(22, 138, 173, 0.86)),
    var(--navy-dark);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.55rem, 4.8vw, 4.8rem);
  line-height: 1.02;
}

.page-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.page-hero .eyebrow {
  color: #bff4e4;
}

.visual-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.page-hero-media,
.detail-visual,
.article-hero-image,
.supporting-visual {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-hero-media {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 64px rgba(5, 20, 32, 0.34);
}

.services-overview-page .page-hero {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(236, 253, 246, 0.96), rgba(247, 251, 252, 0.9)),
    var(--soft);
}

.services-overview-page .page-hero p:not(.eyebrow) {
  color: var(--muted);
}

.services-overview-page .page-hero .eyebrow {
  color: var(--teal);
}

.services-overview-page .page-hero-media {
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.supporting-visual {
  aspect-ratio: 16 / 10;
  margin-top: 22px;
}

.card-media {
  width: calc(100% + 56px);
  max-width: none;
  aspect-ratio: 16 / 9;
  margin: -28px -28px 22px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.detail-visual {
  margin: 32px 0 8px;
}

.article-hero-image {
  aspect-ratio: 16 / 8;
  margin: 6px 0 28px;
}

.not-found,
.service-detail {
  min-height: 100svh;
  padding: clamp(38px, 7vw, 86px);
  background: var(--soft);
}

.service-detail {
  padding-top: clamp(118px, 12vw, 156px);
}

.not-found {
  display: grid;
  place-content: center;
  justify-items: start;
}

.not-found img {
  width: 190px;
  margin-bottom: 28px;
}

.not-found .button-secondary {
  color: var(--navy-dark);
  background: var(--white);
  border-color: var(--line);
}

.not-found h1,
.service-detail h1 {
  max-width: 920px;
  color: var(--navy-dark);
  font-size: clamp(2.6rem, 7vw, 6.2rem);
}

.not-found p,
.service-detail > p:not(.eyebrow) {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0;
}

.detail-grid section {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-grid h2 {
  color: var(--navy-dark);
  font-size: 1.22rem;
}

.detail-grid p {
  color: var(--muted);
}

.overnight-conversion {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  margin-top: 42px;
}

.overnight-workflow h2 {
  max-width: 620px;
  color: var(--navy-dark);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.handoff-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: handoff;
}

.handoff-list li {
  position: relative;
  display: block;
  min-height: 78px;
  padding: 18px;
  padding-left: 74px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.handoff-list li::before {
  counter-increment: handoff;
  content: counter(handoff, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--navy-dark);
  background: var(--mint);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.handoff-list strong,
.handoff-list span {
  display: block;
}

.handoff-list strong {
  color: var(--navy-dark);
  line-height: 1.2;
}

.handoff-list span {
  margin-top: 4px;
  color: var(--muted);
}

.bc-overnight-detail {
  background:
    linear-gradient(180deg, rgba(236, 253, 246, 0.78), rgba(247, 251, 252, 0) 420px),
    var(--soft);
}

.bc-overnight-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.66fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 54, 79, 0.98), rgba(22, 138, 173, 0.9)),
    var(--navy-dark);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.bc-overnight-hero h1 {
  max-width: 12.8ch;
  color: var(--white);
  font-size: clamp(3.6rem, 5.8vw, 5.45rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.bc-overnight-hero h1 span {
  display: block;
}

.bc-overnight-hero p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.bc-overnight-hero .eyebrow {
  color: #bff4e4;
}

.bc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.bc-hero-actions .button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.34);
}

.bc-orbit-card {
  display: grid;
  gap: 18px;
  min-height: 480px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 38%, rgba(118, 200, 147, 0.2), transparent 46%),
    rgba(7, 22, 34, 0.42);
  backdrop-filter: blur(14px);
}

.bc-orbit-map {
  position: relative;
  min-height: 310px;
  display: grid;
  place-items: center;
  overflow: hidden;
  transform: rotateX(var(--orbit-tilt-x, 0deg)) rotateY(var(--orbit-tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 180ms ease;
}

.bc-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(191, 244, 228, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
}

.bc-orbit-ring.ring-one {
  width: 170px;
  height: 170px;
  box-shadow: 0 0 70px rgba(15, 165, 177, 0.24) inset;
}

.bc-orbit-ring.ring-two {
  width: 270px;
  height: 270px;
  border-style: dashed;
  animation: bcOrbitRingSpin 36s linear infinite;
}

.bc-orbit-ring.ring-three {
  width: 310px;
  height: 310px;
  border-color: rgba(191, 244, 228, 0.1);
}

.bc-orbit-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(calc(-1 * var(--orbit-radius)));
  background: var(--orbit-color);
  box-shadow: 0 0 16px var(--orbit-color);
  animation: bcOrbitDotSpin var(--orbit-speed) linear infinite;
}

.bc-orbit-dot.dot-one {
  --orbit-angle: 28deg;
  --orbit-radius: 88px;
  --orbit-speed: 22s;
  --orbit-color: rgba(118, 200, 147, 0.92);
}

.bc-orbit-dot.dot-two {
  --orbit-angle: 160deg;
  --orbit-radius: 136px;
  --orbit-speed: 34s;
  --orbit-color: rgba(15, 165, 177, 0.88);
}

.bc-orbit-dot.dot-three {
  --orbit-angle: 278deg;
  --orbit-radius: 156px;
  --orbit-speed: 48s;
  --orbit-color: rgba(191, 244, 228, 0.78);
}

.bc-orbit-core {
  position: relative;
  z-index: 2;
  width: 118px;
  height: 118px;
  display: grid;
  place-items: center;
  color: var(--navy-dark);
  background: radial-gradient(circle at 34% 28%, #dffdf1, var(--green) 48%, var(--teal-bright));
  border-radius: 50%;
  box-shadow: 0 0 56px rgba(15, 165, 177, 0.36);
  font-size: 30px;
  font-weight: 900;
}

.bc-orbit-core span {
  display: block;
  color: rgba(18, 54, 79, 0.72);
  max-width: 78px;
  font-size: 9px;
  line-height: 1.1;
  text-align: center;
}

.bc-orbit-agent {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 8px 13px 8px 8px;
  color: var(--white);
  font: inherit;
  background: rgba(10, 32, 48, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 32px rgba(5, 20, 32, 0.22);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: left;
  white-space: nowrap;
  cursor: pointer;
  transform: translateZ(18px);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.bc-orbit-agent:hover,
.bc-orbit-agent:focus-visible,
.bc-orbit-agent.is-active {
  border-color: rgba(118, 200, 147, 0.8);
  box-shadow:
    0 16px 38px rgba(5, 20, 32, 0.32),
    0 0 0 1px rgba(118, 200, 147, 0.28) inset;
  transform: translateZ(24px) translateY(-2px);
}

.bc-orbit-avatar {
  width: 30px;
  height: 30px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy-dark);
  border-radius: 50%;
  background: linear-gradient(140deg, var(--green), var(--teal-bright));
  font-size: 0.68rem;
  font-weight: 900;
}

.bc-orbit-agent-copy {
  display: grid;
  gap: 2px;
}

.bc-orbit-agent strong {
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1;
}

.bc-orbit-agent small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.1;
}

.agent-requirements {
  top: 24px;
  left: 16px;
}

.agent-requirements:hover,
.agent-requirements:focus-visible,
.agent-requirements.is-active {
  transform: translateZ(24px) translateY(-2px);
}

.agent-design {
  top: 24px;
  right: 8px;
}

.agent-build {
  right: 8px;
  bottom: 36px;
}

.agent-test {
  bottom: 36px;
  left: 8px;
}

.bc-orbit-card-copy {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.bc-orbit-card-copy span,
.bc-method-list span {
  display: inline-flex;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bc-orbit-card-copy strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.15;
}

.bc-orbit-card-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.bc-orbit-card:hover .bc-orbit-ring.ring-two,
.bc-orbit-card:hover .bc-orbit-dot,
.bc-orbit-card:focus-within .bc-orbit-ring.ring-two,
.bc-orbit-card:focus-within .bc-orbit-dot {
  animation-play-state: paused;
}

@keyframes bcOrbitRingSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes bcOrbitDotSpin {
  to {
    transform: translate(-50%, -50%) rotate(calc(var(--orbit-angle) + 360deg)) translateY(calc(-1 * var(--orbit-radius)));
  }
}

.bc-prototype-figure {
  margin: 34px 0 8px;
  padding: clamp(14px, 2.8vw, 22px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.bc-prototype-figure img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.bc-prototype-figure figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  text-align: center;
}

.bc-method-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  margin-top: 42px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.bc-method-section h2,
.bc-faq-section h2 {
  color: var(--navy-dark);
  font-size: clamp(2rem, 3.7vw, 3.8rem);
}

.bc-method-section p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.bc-method-list,
.bc-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.bc-method-list article,
.bc-faq-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.bc-method-list p,
.bc-faq-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.bc-faq-section {
  margin-top: 52px;
}

.bc-faq-section .section-heading {
  margin-bottom: 24px;
}

.bc-faq-grid h3 {
  color: var(--navy-dark);
  font-size: 1.18rem;
}

.footer-layout {
  display: grid;
  grid-template-columns: 170px minmax(280px, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.footer-layout img {
  width: 154px;
}

.footer-layout p {
  margin: 0;
}

.footer-layout a {
  color: #bff4e4;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a,
  .site-nav .nav-trigger {
    padding: 14px;
  }

  .site-nav .nav-dropdown {
    display: grid;
  }

  .site-nav .nav-menu {
    position: static;
    min-width: 0;
    margin: -4px 0 4px;
    padding: 0 0 0 12px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav .nav-menu a {
    padding: 10px 14px;
  }

  .site-nav .nav-cta {
    margin-top: 6px;
    justify-content: center;
  }

  .bc-overnight-hero {
    padding: 24px;
  }

  .bc-orbit-card {
    min-height: 0;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-content {
    width: min(640px, calc(100% - 36px));
    margin-left: 20px;
  }

  .signal-grid,
  .service-grid,
  .proof-grid,
  .growth-layout,
  .growth-matrix,
  .offer-grid,
  .blog-grid,
  .orbit-layout,
  .approach-layout,
  .split-visual,
  .split-visual.reverse,
  .founder-band-layout,
  .story-hero-layout,
  .story-layout,
  .cta-layout,
  .contact-layout,
  .guide-layout,
  .guide-phases,
  .article-layout,
  .visual-hero-grid,
  .detail-grid,
  .overnight-conversion,
  .bc-overnight-hero,
  .bc-method-section,
  .bc-method-list,
  .bc-faq-grid,
  .plan-layout,
  .timeline-grid,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .offer-card.featured {
    grid-column: auto;
  }

  .cta-layout {
    align-items: start;
  }

  .article-sidebar {
    position: static;
  }

  .story-hero-layout {
    align-items: start;
  }

  .story-hero-layout > img,
  .founder-band-layout > img {
    max-height: 360px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
    padding: 14px 18px;
  }

  .brand img {
    width: 140px;
  }

  .site-nav {
    top: 68px;
  }

  .not-found,
  .service-detail {
    padding: 92px 18px 48px;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-content {
    padding-top: 68px;
  }

  .authority-row {
    grid-template-columns: 46px minmax(0, 1fr);
    margin-bottom: 20px;
  }

  .authority-row img {
    width: 46px;
    height: 46px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 9.2vw, 2.85rem);
  }

  .bc-overnight-hero h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8vw, 2.35rem);
  }

  .bc-overnight-hero {
    padding: 20px;
  }

  .bc-orbit-card {
    min-height: 0;
    padding: 16px;
  }

  .bc-orbit-map {
    min-height: 250px;
  }

  .bc-orbit-ring.ring-one {
    width: 140px;
    height: 140px;
  }

  .bc-orbit-ring.ring-two {
    width: 224px;
    height: 224px;
  }

  .bc-orbit-ring.ring-three {
    width: 252px;
    height: 252px;
  }

  .bc-orbit-core {
    width: 98px;
    height: 98px;
    font-size: 26px;
  }

  .bc-orbit-agent {
    min-width: 72px;
    padding: 8px 10px;
  }

  .bc-orbit-agent small {
    font-size: 0.6rem;
  }

  .bc-orbit-dot.dot-one {
    --orbit-radius: 72px;
  }

  .bc-orbit-dot.dot-two {
    --orbit-radius: 108px;
  }

  .bc-orbit-dot.dot-three {
    --orbit-radius: 124px;
  }

  .agent-design {
    top: 22px;
    right: 4px;
  }

  .agent-requirements {
    top: 22px;
    left: 4px;
  }

  .agent-build {
    right: 4px;
    bottom: 8px;
  }

  .agent-test {
    bottom: 10px;
    left: 4px;
  }

  .bc-orbit-card-copy {
    padding: 16px;
  }

  .hero-v2 h1 {
    font-size: 2.9rem;
  }

  .hero-copy {
    font-size: 1.05rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section-inner {
    width: min(100% - 32px, 1160px);
  }

  .section {
    padding: 58px 0;
  }

  .service-card,
  .contact-form {
    padding: 22px;
  }

  .card-media {
    width: calc(100% + 44px);
    margin: -22px -22px 18px;
  }

  .article-hero-image {
    aspect-ratio: 4 / 3;
  }

  .orbit-panel div {
    grid-template-columns: 44px 1fr;
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bc-orbit-ring.ring-two,
  .bc-orbit-dot {
    animation: none;
  }

  .bc-orbit-map {
    transform: none;
  }
}
