:root {
  --bg: #f3f5f2;
  --bg-soft: #fafbf8;
  --surface: #ffffff;
  --surface-soft: #f0f5f2;
  --line: #d7e0dc;
  --text: #213540;
  --muted: #667782;
  --brand: #1f5f66;
  --brand-soft: #e9f3f2;
  --accent: #5ca486;
  --shadow: 0 18px 34px rgba(28, 47, 54, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(980px 620px at 100% -6%, rgba(93, 164, 134, 0.16) 0%, transparent 63%),
    radial-gradient(820px 520px at 0% 98%, rgba(132, 169, 187, 0.12) 0%, transparent 66%),
    linear-gradient(180deg, #fcfcfa 0%, #f4f7f4 44%, #eef3f1 100%);
}

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

.container {
  width: min(1248px, calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(251, 252, 250, 0.92) 0%, rgba(246, 249, 247, 0.82) 100%);
  border-bottom: 1px solid rgba(214, 223, 220, 0.9);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 20px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: 13px;
  max-width: 88px;
  object-fit: contain;
  opacity: 0.88;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.global-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.88rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 0 0 34px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(85, 138, 158, 0.16) 0%, rgba(85, 138, 158, 0) 70%);
  right: -110px;
  top: -120px;
}

.hero::after {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(118, 180, 149, 0.18) 0%, rgba(118, 180, 149, 0) 72%);
  left: -120px;
  bottom: -220px;
}

.hero-stage {
  width: min(100vw, 1600px);
  margin: 0 auto;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  min-height: 720px;
  padding: 72px 64px 62px;
  border-radius: 0;
  border: 0;
  background:
    linear-gradient(135deg, rgba(12, 28, 38, 0.18) 0%, rgba(18, 36, 46, 0.06) 34%, rgba(255, 255, 255, 0.02) 100%),
    url("./assets/images/hero_photo.png");
  background-size: cover;
  background-position: center 42%;
  box-shadow: none;
  overflow: hidden;
}

.hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 250, 248, 0.9) 0%, rgba(248, 250, 248, 0.82) 20%, rgba(248, 250, 248, 0.46) 38%, rgba(248, 250, 248, 0.12) 66%, rgba(248, 250, 248, 0.04) 100%);
  pointer-events: none;
}

.hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(24, 38, 47, 0.12) 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 0;
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  margin: 0;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid #cfe8dc;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero h1 {
  margin: 14px 0 0;
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: none;
  text-wrap: nowrap;
}

.hero h1 .hero-line {
  display: block;
}

.hero-line-strong {
  margin-top: 0.12em;
}

.lead {
  margin: 16px 0 0;
  max-width: 34ch;
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
  font-weight: 700;
  color: #24424f;
}

.sublead {
  margin: 14px 0 0;
  max-width: 42ch;
  color: #50616c;
  line-height: 1.8;
}

.hero-proof {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(211, 223, 219, 0.92);
  color: #446257;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.cta-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-flow-inline {
  margin-top: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: 0.79rem;
  color: #5d766b;
  font-weight: 700;
  opacity: 0.88;
}

.hero-flow-inline span {
  position: relative;
  padding-right: 16px;
}

.hero-flow-inline span:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: 0;
  color: #9cb6ab;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  padding: 0 22px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #204f69 0%, #1f5f66 52%, #2d7967 100%);
  border-color: #1f5f66;
  color: #fff;
  box-shadow:
    0 14px 24px rgba(31, 95, 102, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn.ghost {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 36px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(245, 248, 246, 0.96) 0%, rgba(239, 244, 243, 0.82) 100%);
}

.section-surface {
  background:
    linear-gradient(180deg, rgba(252, 253, 251, 0.98) 0%, rgba(247, 249, 247, 0.88) 100%);
}

.section-head {
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.narrow-flow {
  max-width: none;
}

.section-body {
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.positioning .section-head {
  max-width: none;
  margin-bottom: 18px;
}

.positioning .section-head h2 {
  max-width: none;
  font-size: clamp(1.46rem, 2.1vw, 1.9rem);
  line-height: 1.22;
  text-wrap: nowrap;
}

.positioning .section-body {
  max-width: none;
  text-wrap: initial;
}

.capability-section .section-head {
  margin-bottom: 20px;
}

.capability-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.capability-flow article {
  position: relative;
  padding: 0 18px 0 0;
}

.capability-flow article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 0;
  width: 1px;
  height: 58px;
  background: linear-gradient(180deg, rgba(180, 194, 198, 0.12) 0%, rgba(180, 194, 198, 0.8) 50%, rgba(180, 194, 198, 0.12) 100%);
}

.capability-flow h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.35;
}

.capability-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.positioning-scene,
.operator-scene,
.admin-scene {
  position: relative;
  overflow: hidden;
}

.positioning-scene::before,
.operator-scene::before,
.admin-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.positioning-scene::before {
  background:
    linear-gradient(90deg, rgba(250, 252, 249, 0.94) 0%, rgba(250, 252, 249, 0.95) 18%, rgba(250, 252, 249, 0.78) 52%, rgba(250, 252, 249, 0.9) 100%),
    url("./assets/images/office_triptych.png");
  background-size: 168% auto;
  background-position: 50% center;
  opacity: 0.42;
  filter: saturate(0.86) blur(0.2px);
}

.operator-scene::before {
  background:
    linear-gradient(90deg, rgba(250, 251, 249, 0.94) 0%, rgba(250, 251, 249, 0.86) 36%, rgba(250, 251, 249, 0.92) 100%),
    url("./assets/images/office_triptych.png");
  background-size: 168% auto;
  background-position: 0% center;
  opacity: 0.34;
  filter: saturate(0.8) blur(0.3px);
}

.admin-scene::before {
  background:
    linear-gradient(90deg, rgba(245, 248, 246, 0.96) 0%, rgba(245, 248, 246, 0.86) 42%, rgba(245, 248, 246, 0.92) 100%),
    url("./assets/images/office_triptych.png");
  background-size: 168% auto;
  background-position: 100% center;
  opacity: 0.28;
  filter: saturate(0.82) blur(0.25px);
}

.positioning-scene .container,
.operator-scene .container,
.admin-scene .container {
  position: relative;
  z-index: 1;
}

.section-subtle {
  font-size: 0.86rem !important;
  color: #8aa196 !important;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow:
    0 18px 30px rgba(45, 64, 92, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.section .container {
  position: relative;
}

.evidence-card {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
  gap: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.chart-wrap {
  background: linear-gradient(180deg, #fbfefc 0%, #f1f8f4 100%);
  border: 1px solid #d7e7de;
  border-radius: 12px;
  padding: 12px;
}

svg text {
  fill: #657b71;
  font-size: 13px;
  font-family: "Noto Sans JP", sans-serif;
}

.axis {
  stroke: #a5bbb1;
  stroke-width: 1.5;
}

.trend {
  fill: none;
  stroke: #3a9c7d;
  stroke-width: 4;
}

.point {
  fill: #3a9c7d;
}

.evidence-copy {
  border: 1px solid #d7e7de;
  border-radius: 12px;
  background: linear-gradient(180deg, #fbfefc 0%, #f3faf6 100%);
  padding: 14px;
}

.evidence-copy p {
  margin: 0;
}

.result-head {
  font-weight: 700;
  color: #2d6d5b;
  margin-bottom: 8px;
}

.strong {
  margin-top: 10px;
  font-weight: 800;
  color: #255e4e;
  font-size: 1.2rem;
}

.source {
  margin-top: 14px;
  color: #71857a;
  font-size: 0.9rem;
}

.employee-stage {
  position: relative;
  max-width: 1120px;
  margin: 10px auto 0;
  padding: 0 0 4px;
}

.employee-stage::before {
  content: "";
  position: absolute;
  inset: 11% 5% 8% 5%;
  border-radius: 36px;
  background:
    radial-gradient(460px 210px at 50% 28%, rgba(184, 232, 207, 0.12) 0%, transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(239, 248, 243, 0.12) 100%);
  filter: blur(1px);
  pointer-events: none;
}

.employee-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
  justify-items: center;
}

.employee-card,
.admin-main,
.admin-sub {
  margin: 0;
  position: relative;
}

.employee-card img,
.admin-main img,
.admin-sub img {
  width: 100%;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(210, 221, 240, 0.92);
  box-shadow: 0 18px 34px rgba(44, 64, 102, 0.12);
  object-fit: cover;
  object-position: top center;
}

.phone-frame {
  position: relative;
  background: linear-gradient(160deg, #2b333f 0%, #1d2530 100%);
  border-radius: 28px;
  padding: 8px;
  border: 1px solid rgba(21, 29, 42, 0.4);
  box-shadow:
    0 12px 24px rgba(22, 35, 52, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  background: #000;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 34%;
  height: 16px;
  transform: translateX(-50%);
  border-radius: 0 0 12px 12px;
  background: #121821;
  z-index: 3;
}

.phone-frame-hero {
  max-width: 335px;
  margin: 0 auto;
}

.phone-frame-calendar {
  max-width: 228px;
  margin: 0 auto;
}

.phone-frame-calendar .phone-screen {
  aspect-ratio: 9 / 19.5;
}

.phone-frame-support {
  max-width: 228px;
  margin: 0 auto;
}

.phone-frame-detail {
  max-width: 228px;
}

.phone-frame-stats {
  max-width: 228px;
  margin: 0 auto;
}

.phone-frame-support .phone-screen {
  aspect-ratio: 9 / 19.5;
}

.phone-frame-hero .phone-screen {
  aspect-ratio: 9 / 19.2;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: top center;
}

.employee-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.employee-card-calendar {
  padding-top: 0;
}

.employee-card-detail {
  padding-top: 0;
}

.employee-card-stats {
  padding-top: 0;
}

.employee-card figcaption,
.admin-main figcaption,
.admin-sub figcaption {
  font-size: 0.72rem;
  line-height: 1.35;
  color: #5d7469;
  text-align: center;
  max-width: 24ch;
  min-height: 2.9em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.admin-stage {
  position: relative;
  max-width: min(1500px, calc(100vw - 36px));
  margin: 0 auto;
  padding: 4px 0 8px;
}

.admin-main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.admin-main img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
}

.admin-main figcaption {
  max-width: none;
  min-height: 0;
  margin-top: 10px;
  white-space: nowrap;
}

.employee-card:hover,
.admin-main:hover,
.admin-sub:hover {
  transform: translateY(-4px);
  transition: transform 0.28s ease;
}

.benefits {
  padding-top: 18px;
}

.background-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  position: relative;
}

.background-grid h2 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.background-grid h3 {
  margin: 0 0 8px;
  font-size: 0.98rem;
  color: #4d7667;
  font-weight: 700;
}

.background-grid p {
  margin: 0 0 12px;
}

.background-grid article {
  padding: 4px 0;
}

.background-grid::after {
  content: "";
  position: absolute;
  left: calc(50% - 0.5px);
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(191, 204, 228, 0.18) 0%, rgba(191, 204, 228, 0.6) 50%, rgba(191, 204, 228, 0.18) 100%);
}

.signature {
  margin-top: 8px !important;
  font-weight: 700;
  color: #4d7b6c;
  font-size: 0.9rem;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.target-grid h3 {
  margin: 0 0 8px;
  font-size: 0.92rem;
  color: #41695c;
  font-weight: 700;
}

.target-grid p {
  margin: 0;
  color: #62786d;
  font-size: 0.86rem;
  line-height: 1.45;
}

.target-grid.plain article {
  padding: 12px 10px 12px 14px;
  border-left: 2px solid rgba(85, 161, 129, 0.34);
  background: linear-gradient(90deg, rgba(241, 250, 245, 0.92) 0%, rgba(241, 250, 245, 0.26) 100%);
  border-radius: 10px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 44px;
}

.benefit-grid h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
  color: #3c6859;
}

.benefit-grid h2 {
  margin: 0 0 12px;
  font-size: 1.38rem;
  line-height: 1.25;
}

.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
}

.info-rail {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: start;
  padding: 6px 0 10px;
}

.pricing-wrap,
.contact-wrap,
.operator-wrap {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.operator-band-section {
  padding-top: 18px;
}

.pricing-wrap h2,
.contact-wrap h2,
.operator-wrap h2 {
  margin: 0 0 8px;
  font-size: 1.06rem;
}

.contact-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-points {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.contact-points li {
  position: relative;
  padding-left: 16px;
  color: #5f756b;
  font-size: 0.92rem;
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #6ea98d;
}

.operator-wrap h2 {
  margin: 0 0 10px;
}

.operator-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin-top: 16px;
}

.operator-copy {
  margin: 0;
  max-width: 76ch;
  color: #4f665c;
  line-height: 1.82;
}

.operator-statement {
  margin: 12px 0 0;
  max-width: 78ch;
  color: #6a8177;
  line-height: 1.8;
}

.operator-item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(197, 215, 205, 0.86);
  border-radius: 16px;
  background: rgba(252, 254, 253, 0.72);
}

.operator-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #7a9186;
  text-transform: uppercase;
}

.operator-value {
  color: #243a33;
  font-size: 0.98rem;
  line-height: 1.55;
}

.operator-value a {
  color: inherit;
  text-decoration: none;
}

.operator-value a:hover {
  text-decoration: underline;
}

.price {
  margin: 0;
  color: #285f4f;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
}

.policy-wrap {
  padding: 24px;
}

.policy-wrap h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.policy-wrap p {
  margin: 0 0 14px;
  color: #586f64;
}

.policy-wrap ul {
  margin: 0 0 16px;
  padding-left: 1.2rem;
}

.policy-wrap li {
  margin-bottom: 6px;
}

.note {
  color: #70867b;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  background: linear-gradient(180deg, rgba(244, 249, 246, 0.92) 0%, rgba(239, 247, 242, 0.97) 100%);
}

.footer-main {
  padding: 18px 0 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: #687d73;
  text-decoration: none;
}

.footer-title {
  font-weight: 800;
  color: #2f6252 !important;
  margin-bottom: 6px !important;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--brand);
  font-weight: 700;
}

.footer-sub {
  min-height: 46px;
  display: flex;
  align-items: center;
  border-top: 1px solid #dce8e0;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

.js-motion .reveal {
  opacity: 0;
  transform: translateY(16px);
}

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

@media (max-width: 1024px) {
  .hero-grid,
  .evidence-card,
  .capability-flow,
  .admin-stage,
  .benefit-grid,
  .info-rail {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 0;
  }

  .employee-stage {
    max-width: none;
    margin-top: 6px;
  }

  .employee-card {
    align-items: center;
    padding-top: 0;
  }

  .employee-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .admin-stage {
    max-width: none;
  }

  .admin-main figcaption {
    max-width: 34ch;
    white-space: normal;
  }

  .hero-grid {
    min-height: 580px;
    padding: 44px 36px 40px;
  }

  .hero-grid::after {
    background:
      linear-gradient(180deg, rgba(248, 250, 248, 0.08) 0%, rgba(28, 42, 48, 0.18) 100%);
  }
}

@media (max-width: 768px) {
  .employee-stage {
    margin-top: 10px;
  }

  .employee-stage::before {
    inset: 9% 2% 4% 2%;
  }

  .employee-grid {
    gap: 18px;
  }

  .phone-frame-calendar {
    max-width: 288px;
  }

  .phone-frame-support {
    max-width: 228px;
  }

  .phone-frame-detail,
  .phone-frame-stats {
    max-width: 228px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(1248px, calc(100% - 28px));
  }

  .menu-toggle {
    display: inline-flex;
  }

  .global-nav {
    position: absolute;
    right: 14px;
    top: 62px;
    width: min(280px, calc(100% - 28px));
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .global-nav.open {
    display: flex;
  }

  .global-nav a {
    padding: 10px;
    border-radius: 10px;
  }

  .global-nav a:hover {
    background: var(--bg-soft);
  }

  .hero {
    padding: 0 0 24px;
  }

  .hero-grid {
    min-height: 520px;
    padding: 34px 18px 24px;
  }

  .hero-grid::before {
    background:
      linear-gradient(180deg, rgba(248, 250, 248, 0.92) 0%, rgba(248, 250, 248, 0.78) 18%, rgba(248, 250, 248, 0.4) 48%, rgba(248, 250, 248, 0.16) 100%);
  }

  .positioning-scene::before,
  .operator-scene::before,
  .admin-scene::before {
    opacity: 0.24;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  .hero-proof {
    gap: 8px;
  }

  .hero-proof span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .lead,
  .sublead,
  .section-body,
  .operator-copy,
  .operator-statement {
    max-width: none;
  }

  .hero-flow-inline {
    font-size: 0.8rem;
    gap: 8px;
  }

  .hero-flow-inline span {
    padding-right: 12px;
  }

  .operator-band {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .capability-flow article {
    padding-right: 0;
  }

  .capability-flow article:not(:last-child)::after {
    display: none;
  }

  .narrow-flow {
    padding-inline: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .shot,
  .btn {
    transition: none !important;
    transform: none !important;
  }
}
