:root {
  --ink: #141413;
  --charcoal: #262627;
  --slate: #696969;
  --canvas: #f3f0ee;
  --lifted: #fcfbfa;
  --white: #ffffff;
  --signal: #cf4500;
  --signal-light: #f37338;
  --whisper: #e8e2da;
  --border-soft: rgba(20, 20, 19, 0.12);
  --shadow-soft: 0 24px 48px rgba(0, 0, 0, 0.08);
  --shadow-float: 0 4px 24px rgba(0, 0, 0, 0.04);
  --radius-button: 20px;
  --radius-frame: 40px;
  --radius-pill: 999px;
  --max-width: 1240px;
  --nav-height: 84px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 128px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Sofia Sans", Arial, sans-serif;
  font-weight: 450;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(243, 115, 56, 0.55);
  outline-offset: 4px;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: 24px;
  pointer-events: none;
  transition: padding-top 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 14px;
}

.nav-pill {
  width: min(calc(100% - 48px), 1220px);
  margin: 0 auto;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-float);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  pointer-events: auto;
  border: 1px solid rgba(20, 20, 19, 0.06);
  transition: box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled .nav-pill {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(20, 20, 19, 0.08);
  border-color: rgba(20, 20, 19, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fffaf7, #f3e6dc);
  border: 1px solid rgba(20, 20, 19, 0.12);
  position: relative;
  box-shadow: 0 10px 18px rgba(20, 20, 19, 0.06);
  flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--ink);
}

.brand-mark::before {
  width: 14px;
  height: 14px;
  left: 8px;
  top: 13px;
  opacity: 0.92;
}

.brand-mark::after {
  width: 10px;
  height: 10px;
  right: 8px;
  top: 15px;
  background: var(--signal-light);
  box-shadow: -10px 0 0 rgba(20, 20, 19, 0.18);
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-copy span {
  color: var(--slate);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 38px;
}

.site-nav a {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--signal-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--charcoal);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(20, 20, 19, 0.14);
  background: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  padding-top: calc(var(--nav-height) + 76px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 580px;
  background:
    radial-gradient(circle at 10% 8%, rgba(243, 115, 56, 0.12), transparent 35%),
    radial-gradient(circle at 85% 18%, rgba(243, 115, 56, 0.12), transparent 30%);
  pointer-events: none;
}

.hero-grid,
.about-grid,
.split-layout,
.findings-grid {
  display: grid;
  gap: 52px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
}

.about-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: start;
}

.hero-copy h1,
.section-heading h2,
.section-copy h2,
.footer-lead h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 4.15rem);
  line-height: 1;
}

.lead,
.section-heading p,
.section-copy p,
.story-card p,
.mini-card p,
.resource-card p,
.rail-card p {
  font-size: 1.05rem;
  color: var(--charcoal);
}

.hero-copy .lead {
  max-width: 64ch;
  margin: 22px 0 0;
}

.hero-summary {
  max-width: 63ch;
  margin: 18px 0 0;
  color: var(--slate);
  font-size: 1rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 20, 19, 0.08);
  color: var(--charcoal);
  font-size: 0.92rem;
  box-shadow: 0 10px 18px rgba(20, 20, 19, 0.04);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--ink);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--signal-light);
  flex: 0 0 auto;
}

.eyebrow-small {
  margin-bottom: 10px;
  font-size: 0.79rem;
}

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

.button {
  border-radius: var(--radius-button);
  padding: 10px 24px;
  border: 1.5px solid var(--ink);
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 22px rgba(20, 20, 19, 0.08);
}

.button-primary {
  background: var(--ink);
  color: var(--canvas);
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.84);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.stat-chip,
.mini-card,
.story-card,
.rail-card,
.resource-card {
  background: var(--lifted);
  border-radius: 28px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.stat-chip::before,
.mini-card::before,
.story-card::before,
.rail-card::before,
.resource-card::before,
.about-card::before,
.setup-card::before,
.scope-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(243, 115, 56, 0.8), rgba(243, 115, 56, 0));
}

.stat-chip {
  padding: 22px 22px 18px;
}

.stat-chip strong {
  display: block;
  margin-top: 6px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.stat-chip p {
  margin: 8px 0 0;
  color: var(--slate);
  font-size: 0.96rem;
}

.stat-kicker,
.orbit-kicker,
.resource-link {
  color: var(--slate);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-visual {
  position: relative;
}

.hero-panel {
  position: relative;
  min-height: 620px;
  padding: 38px;
  border-radius: 56px;
  background: linear-gradient(180deg, rgba(252, 251, 250, 0.95), rgba(243, 240, 238, 0.9));
  border: 1px solid rgba(20, 20, 19, 0.08);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 22%, rgba(243, 115, 56, 0.1), transparent 28%),
    radial-gradient(circle at 22% 72%, rgba(20, 20, 19, 0.035), transparent 32%);
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(243, 115, 56, 0.18);
  pointer-events: none;
}

.ghost-text {
  position: absolute;
  inset: 26px auto auto 22px;
  color: var(--whisper);
  font-size: clamp(4rem, 13vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.9;
  pointer-events: none;
}

.orbit-card {
  position: absolute;
  max-width: 320px;
  padding: 28px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 20, 19, 0.08);
  box-shadow: 0 24px 40px rgba(20, 20, 19, 0.08);
  z-index: 2;
}

.orbit-card-main {
  right: 34px;
  top: 78px;
}

.orbit-card h2 {
  margin: 10px 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.orbit-card p {
  margin: 0;
  color: var(--slate);
}

.orbit-bubble {
  position: absolute;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(20, 20, 19, 0.1);
  box-shadow: 0 20px 36px rgba(20, 20, 19, 0.08);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  z-index: 2;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.orbit-bubble-a {
  left: 30px;
  top: 150px;
}

.orbit-bubble-b {
  left: 142px;
  bottom: 86px;
}

.orbit-bubble-c {
  right: 120px;
  bottom: 34px;
}

.satellite-link {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  border: 1px solid rgba(20, 20, 19, 0.1);
  box-shadow: 0 12px 22px rgba(20, 20, 19, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.satellite-link span {
  transform: translateY(-1px);
}

.satellite-link:hover,
.satellite-link:focus-visible {
  background: var(--ink);
  color: var(--canvas);
  box-shadow: 0 18px 28px rgba(20, 20, 19, 0.14);
  transform: translateY(-2px);
}

.orbit-bubble:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 42px rgba(20, 20, 19, 0.12);
  border-color: rgba(20, 20, 19, 0.14);
}

.orbit-lines {
  position: absolute;
  inset: 32px;
  width: calc(100% - 64px);
  height: calc(100% - 64px);
  z-index: 1;
  overflow: visible;
}

.orbit-lines path {
  fill: none;
  stroke: var(--signal-light);
  stroke-width: 1.4;
  opacity: 0.75;
}

.split-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
}

.section-heading,
.section-copy {
  max-width: 760px;
}

.section-heading p,
.section-copy p {
  margin: 18px 0 0;
}

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

.about-panels {
  display: grid;
  gap: 20px;
}

.about-card {
  padding: 28px;
  border-radius: 32px;
  background: var(--lifted);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.about-card-accent {
  background: linear-gradient(180deg, rgba(252, 251, 250, 0.92), rgba(244, 239, 235, 0.96));
}

.about-card:hover,
.setup-card:hover,
.scope-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 44px rgba(20, 20, 19, 0.1);
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.info-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(20, 20, 19, 0.08);
}

.info-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-list dt {
  color: var(--slate);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.info-list dd {
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink);
}

.about-list {
  margin: 0;
  padding-left: 18px;
}

.about-list li + li {
  margin-top: 12px;
}

.mini-card,
.story-card,
.rail-card,
.resource-card {
  padding: 26px;
}

.mini-card h3,
.story-card h3,
.rail-card h3,
.resource-card h3,
.footer-columns h3 {
  margin: 0 0 10px;
  font-size: 1.42rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.media-frame {
  background: var(--lifted);
  border-radius: var(--radius-frame);
  padding: 18px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.media-frame img {
  width: 100%;
  border-radius: 28px;
}

.media-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 52px rgba(20, 20, 19, 0.1);
  border-color: rgba(20, 20, 19, 0.14);
}

.media-frame figcaption {
  padding: 16px 8px 4px;
  color: var(--slate);
  font-size: 0.98rem;
}

.media-frame.wide {
  margin-top: 34px;
}

.framework-section {
  overflow: hidden;
}

.framework-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 200px;
  width: 1100px;
  height: 500px;
  border: 1px solid rgba(243, 115, 56, 0.18);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.feature-orbit {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.setup-band,
.scope-columns {
  display: grid;
  gap: 20px;
}

.setup-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
}

.setup-card,
.scope-card {
  padding: 26px;
  border-radius: 32px;
  background: rgba(252, 251, 250, 0.92);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.setup-card h3,
.scope-card h3 {
  margin: 0 0 10px;
  font-size: 1.36rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.setup-card p,
.scope-card p,
.scope-card li {
  color: var(--charcoal);
}

.feature-portrait {
  text-align: center;
  position: relative;
}

.feature-circle {
  position: relative;
  width: min(100%, 280px);
  aspect-ratio: 1;
  margin: 0 auto 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(243, 115, 56, 0.18), transparent 40%),
    linear-gradient(180deg, #fffaf7, #f8f2ef);
  border: 1px solid rgba(20, 20, 19, 0.08);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-circle span {
  font-size: clamp(4rem, 7vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.feature-portrait:hover .feature-circle {
  transform: translateY(-5px);
  box-shadow: 0 30px 48px rgba(20, 20, 19, 0.1);
  border-color: rgba(20, 20, 19, 0.14);
}

.findings-grid {
  margin-top: 40px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: start;
}

.story-stack {
  display: grid;
  gap: 18px;
}

.portfolio-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.26) 8%, transparent);
}

.about-section::before,
#why-sec::before,
#deliverables::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(243, 115, 56, 0.12);
  pointer-events: none;
}

.about-section::before {
  top: 40px;
  right: -120px;
}

#why-sec::before {
  top: 120px;
  left: -180px;
}

#deliverables::before {
  bottom: 40px;
  right: -140px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.evidence-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.rail-card-muted {
  background: var(--ink);
  color: var(--canvas);
}

.rail-card-muted .eyebrow,
.rail-card-muted p {
  color: rgba(243, 240, 238, 0.88);
}

.rail-card-muted .eyebrow::before {
  background: rgba(243, 115, 56, 0.85);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.scope-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  margin-bottom: 52px;
  padding: 30px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(252, 251, 250, 0.92), rgba(244, 239, 235, 0.92));
  border: 1px solid rgba(20, 20, 19, 0.08);
  box-shadow: var(--shadow-soft);
}

.scope-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.scope-copy p {
  margin: 18px 0 0;
  color: var(--charcoal);
  font-size: 1.02rem;
}

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

.scope-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.scope-card li + li {
  margin-top: 10px;
}

.scope-card-dark {
  background: var(--ink);
  color: var(--canvas);
}

.scope-card-dark h3,
.scope-card-dark li {
  color: var(--canvas);
}

.resource-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.stat-chip:hover,
.mini-card:hover,
.story-card:hover,
.rail-card:hover,
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 44px rgba(20, 20, 19, 0.1);
}

.resource-card .resource-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--signal);
  font-weight: 700;
}

.resource-card .resource-link::after {
  content: "\2197";
  margin-left: 8px;
  font-size: 0.96em;
}

.resource-card:hover .resource-link::after {
  margin-left: 10px;
}

.site-footer {
  padding: 82px 0 110px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  gap: 44px;
}

.footer-lead h2 {
  max-width: 14ch;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-columns h3 {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-columns a,
.footer-columns p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
}

.footer-columns a:hover {
  color: #ffffff;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .button,
  .resource-card,
  .media-frame,
  .nav-pill,
  .site-header,
  .site-nav a::after {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .split-layout,
  .findings-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .feature-orbit,
  .resource-grid,
  .setup-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scope-panel {
    grid-template-columns: 1fr;
  }

  .about-section::before,
  #why-sec::before,
  #deliverables::before {
    width: 320px;
    height: 320px;
  }
}

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

  .site-nav {
    position: absolute;
    left: 24px;
    right: 24px;
    top: calc(100% + 14px);
    padding: 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .portfolio-grid,
  .evidence-rail,
  .mini-grid,
  .hero-stats,
  .footer-columns,
  .scope-columns {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 560px;
  }

  .orbit-card-main {
    right: 22px;
    top: 72px;
    max-width: 260px;
  }

  .orbit-bubble {
    width: 138px;
    height: 138px;
    font-size: 1.22rem;
  }

  .orbit-bubble-a {
    left: 20px;
  }

  .orbit-bubble-b {
    left: 98px;
    bottom: 70px;
  }

  .orbit-bubble-c {
    right: 54px;
    bottom: 26px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 72px 0;
  }

  .container,
  .nav-pill {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .nav-pill {
    padding: 12px 16px;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 48px);
  }

  .hero-panel {
    min-height: 520px;
    padding: 22px;
    border-radius: 40px;
  }

  .ghost-text {
    font-size: 4.6rem;
  }

  .orbit-card-main {
    position: relative;
    inset: auto;
    max-width: none;
    margin-top: 64px;
  }

  .orbit-bubble-a,
  .orbit-bubble-b,
  .orbit-bubble-c {
    position: absolute;
  }

  .orbit-bubble-a {
    left: 4px;
    top: 12px;
  }

  .orbit-bubble-b {
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%);
  }

  .orbit-bubble-c {
    right: 4px;
    top: 92px;
  }

  .orbit-lines {
    display: none;
  }

  .feature-orbit,
  .resource-grid,
  .setup-band {
    grid-template-columns: 1fr;
  }

  .media-frame {
    padding: 12px;
  }

  .media-frame img {
    border-radius: 22px;
  }
}
