:root {
  --bg: #f5f1ea;
  --surface: #fffdf8;
  --surface-2: #eee7dc;
  --ink: #151515;
  --soft-ink: #4c4c47;
  --muted: #77736c;
  --line: rgba(21, 21, 21, 0.14);
  --red: #d71920;
  --deep-red: #9f1117;
  --green: #2f6c55;
  --blue: #235a7a;
  --gold: #b8892f;
  --shadow: 0 24px 70px rgba(34, 25, 20, 0.14);
  --header-h: 76px;
  --radius: 8px;
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-lg: 24px;
  --fs-xl: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    linear-gradient(115deg, rgba(215, 25, 32, 0.08), transparent 28%),
    linear-gradient(245deg, rgba(35, 90, 122, 0.1), transparent 34%),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(21, 21, 21, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 21, 21, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

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

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

.page-frame {
  position: fixed;
  inset: 12px;
  z-index: 30;
  pointer-events: none;
  border: 1px solid rgba(21, 21, 21, 0.16);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 25;
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr minmax(130px, 180px);
  gap: 20px;
  align-items: center;
  height: var(--header-h);
  padding: 12px clamp(22px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 241, 234, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 850;
}

.brand img {
  width: 130px;
  object-fit: contain;
  padding: 4px 8px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.brand span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--soft-ink);
  font-size: var(--fs-sm);
  font-weight: 760;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a.active {
  color: var(--deep-red);
  background: rgba(215, 25, 32, 0.1);
}

.deck-status {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  justify-self: end;
  width: 100%;
  color: var(--muted);
  font-size: var(--fs-xs);
  font-weight: 850;
}

.status-track {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.12);
}

.status-track i {
  display: block;
  width: 12.5%;
  height: 100%;
  background: var(--red);
  transition: width 280ms ease;
}

main {
  overflow: clip;
}

.section {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-h) + clamp(38px, 5vw, 72px)) clamp(22px, 5vw, 76px) clamp(44px, 6vw, 86px);
  isolation: isolate;
  scroll-margin-top: 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 960px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.kicker {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin: 0 0 16px;
  color: var(--deep-red);
  font-size: var(--fs-xs);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  max-width: 1050px;
  margin-bottom: 20px;
  font-size: var(--fs-xl);
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  font-size: var(--fs-xl);
}

h3 {
  margin-bottom: 12px;
  font-size: var(--fs-lg);
  line-height: 1.18;
}

.intro,
.section-heading p,
.showcase-copy p,
.admin-copy p,
.reach-copy p {
  max-width: 820px;
  color: var(--soft-ink);
  font-size: var(--fs-base);
  line-height: 1.55;
}

.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: clamp(22px, 4vw, 40px);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 253, 248, 0.96), rgba(245, 241, 234, 0.86)),
    var(--bg);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: var(--header-h) 0 auto;
  z-index: -1;
  height: 45%;
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.12), transparent 46%),
    linear-gradient(135deg, rgba(35, 90, 122, 0.08), transparent 58%);
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
}

.hero-main,
.hero-overview {
  border: 1px solid rgba(21, 21, 21, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 430px;
  padding: clamp(26px, 5vw, 56px);
}

.hero-logo-row {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: auto;
  padding-bottom: 34px;
}

.hero-logo-row img {
  width: 142px;
  height: 44px;
  object-fit: contain;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: white;
}

.hero-logo-row img:last-child {
  width: 124px;
  padding: 0;
  border: 0;
  background: transparent;
}

.hero-logo-row span {
  width: 40px;
  height: 1px;
  background: rgba(21, 21, 21, 0.2);
}

.hero-main h1 {
  max-width: 720px;
}

.hero-main .intro {
  max-width: 680px;
}

.hero-overview {
  display: grid;
  grid-template-rows: minmax(210px, 1fr) auto;
  overflow: hidden;
}

.flag-card {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.2), rgba(215, 25, 32, 0.06)),
    #d71920;
}

.flag-card img {
  width: min(260px, 78%);
  border: 1px solid rgba(21, 21, 21, 0.24);
  box-shadow: 0 18px 42px rgba(21, 21, 21, 0.16);
}

.overview-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.overview-list article {
  display: grid;
  gap: 6px;
  padding: 18px 22px;
  background: rgba(255, 253, 248, 0.95);
}

.overview-list span,
.hero-modules span {
  color: var(--deep-red);
  font-size: var(--fs-xs);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.overview-list strong,
.hero-modules strong {
  color: var(--ink);
  font-size: var(--fs-base);
  line-height: 1.35;
}

.hero-modules {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 14px 34px rgba(34, 25, 20, 0.08);
}

.hero-modules article {
  display: grid;
  gap: 12px;
  min-height: 88px;
  padding: 16px 14px;
  background: rgba(255, 253, 248, 0.94);
}

.hero-modules .module-primary {
  background: var(--deep-red);
}

.hero-modules .module-primary span,
.hero-modules .module-primary strong {
  color: white;
}

.hero-modules strong {
  color: var(--soft-ink);
}

.platform-section {
  background: var(--surface);
}

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

.capability,
.flow-card,
.decision-board article,
.timeline article,
.reach-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 18px 42px rgba(34, 25, 20, 0.08);
}

.capability {
  min-height: 260px;
  padding: clamp(20px, 3vw, 30px);
}

.capability-primary {
  border-color: rgba(215, 25, 32, 0.28);
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.1), rgba(255, 253, 248, 0.9)),
    rgba(255, 253, 248, 0.86);
}

.capability-primary h3 {
  color: var(--deep-red);
}

.capability span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: var(--fs-sm);
  font-weight: 900;
}

.capability-primary span {
  background: var(--deep-red);
}

.package-block {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
  margin-top: clamp(28px, 5vw, 56px);
  padding-top: clamp(24px, 4vw, 42px);
  border-top: 1px solid var(--line);
}

.package-block h2 {
  font-size: var(--fs-lg);
}

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

.package-grid article {
  min-height: 220px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(245, 241, 234, 0.72);
}

.package-grid span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--deep-red);
  font-size: var(--fs-xs);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: var(--fs-base);
  line-height: 1.35;
}

.package-grid p {
  margin-bottom: 0;
  color: var(--soft-ink);
  font-size: var(--fs-base);
  line-height: 1.5;
}

.capability p,
.flow-card p,
.decision-board p,
.timeline p,
.reach-grid span,
.metric-row span {
  font-size: var(--fs-base);
  color: var(--soft-ink);
  line-height: 1.5;
}

.showcase-section,
.admin-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
}

.device-stage,
.admin-visual {
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, 0.18);
  border-radius: var(--radius);
  background: #1c1c1b;
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-5deg) translateZ(0);
}

.browser-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: #2a2a28;
}

.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d8d2c8;
}

.browser-bar span:first-child {
  background: var(--red);
}

.device-stage img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  cursor: zoom-in;
}

.interfaces-section {
  overflow: hidden;
  background: var(--surface);
}

.interface-gallery {
  display: grid;
  gap: clamp(26px, 5vw, 62px);
}

.interface-shot {
  position: relative;
  width: 100%;
  margin: 0;
  opacity: 0;
  transform: translate3d(var(--slide-from), 0, 0);
  transition: opacity 820ms ease, transform 820ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.interface-shot.from-right {
  --slide-from: clamp(42px, 9vw, 130px);
}

.interface-shot.from-left {
  --slide-from: clamp(-130px, -9vw, -42px);
}

.interface-shot.in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.interface-shot img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(21, 21, 21, 0.16);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 28px 70px rgba(34, 25, 20, 0.16);
  cursor: zoom-in;
}

.interface-shot figcaption {
  position: absolute;
  left: clamp(18px, 4vw, 56px);
  bottom: clamp(14px, 3vw, 34px);
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: white;
  background: rgba(21, 21, 21, 0.7);
  backdrop-filter: blur(12px);
  font-size: var(--fs-sm);
  font-weight: 820;
}

.clean-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 30px;
  color: var(--soft-ink);
  font-size: var(--fs-base);
  font-weight: 740;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 2px;
  background: var(--red);
}

.split-flow-section {
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.07), transparent 46%),
    var(--bg);
}

.flow-lanes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 30px);
}

.flow-card {
  min-height: 500px;
  padding: clamp(24px, 4vw, 46px);
}

.flow-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: clamp(26px, 6vw, 42px);
}

.flow-title span {
  color: var(--deep-red);
  font-size: var(--fs-xl);
  font-weight: 900;
  line-height: 1;
}

.flow-title strong {
  max-width: 140px;
  color: var(--muted);
  text-align: right;
  text-transform: uppercase;
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
}

.flow-card ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  counter-reset: steps;
}

.flow-card li {
  counter-increment: steps;
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  color: var(--soft-ink);
  font-size: var(--fs-sm);
  font-weight: 760;
}

.flow-card li::before {
  content: "0" counter(steps);
  display: block;
  margin-bottom: 8px;
  color: var(--deep-red);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.demand .flow-title span {
  color: var(--blue);
}

.demand li::before {
  color: var(--blue);
}

.governance-section {
  color: white;
  background:
    linear-gradient(145deg, rgba(159, 17, 23, 0.84), rgba(21, 21, 21, 0.94)),
    #171514;
}

.governance-section .kicker,
.governance-section .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.governance-section .kicker::before {
  background: rgba(255, 255, 255, 0.76);
}

.decision-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.decision-board article {
  min-height: 260px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.decision-board span {
  display: inline-flex;
  margin-bottom: 54px;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--fs-xs);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.decision-board strong {
  display: block;
  margin-bottom: 12px;
  font-size: var(--fs-lg);
}

.decision-board p {
  color: rgba(255, 255, 255, 0.72);
}

.decision-board .accent {
  background: rgba(215, 25, 32, 0.25);
}

.decision-board .approved {
  background: rgba(47, 108, 85, 0.34);
}

.decision-board .review {
  background: rgba(184, 137, 47, 0.3);
}

.admin-section {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  background: var(--surface);
}

.admin-visual {
  transform: perspective(1200px) rotateY(5deg) translateZ(0);
  background: #f4f0e7;
}

.admin-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  cursor: zoom-in;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.metric-row div {
  min-height: 110px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(245, 241, 234, 0.72);
}

.metric-row strong {
  display: block;
  margin-bottom: 18px;
  color: var(--deep-red);
  font-size: var(--fs-lg);
}

.reach-section {
  display: grid;
  align-content: center;
  min-height: 100svh;
  overflow: hidden;
  color: white;
  background: #14212a;
}

.reach-section .map {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(0.7) contrast(1.1);
}

.reach-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(20, 33, 42, 0.94), rgba(20, 33, 42, 0.58));
}

.reach-copy {
  max-width: 960px;
}

.reach-copy .kicker,
.reach-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.reach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(30px, 5vw, 64px);
}

.reach-grid article {
  min-height: 150px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.reach-grid strong {
  display: block;
  margin-bottom: 36px;
  font-size: var(--fs-lg);
}

.reach-grid span {
  color: rgba(255, 255, 255, 0.74);
}

.delivery-section {
  background: var(--bg);
}

.conclusion-section {
  display: grid;
  align-content: center;
  background: var(--bg);
  min-height: auto;
  padding-top: 3rem;
}

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

.timeline article {
  min-height: 250px;
  padding: clamp(22px, 3vw, 34px);
}

.timeline span {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--deep-red);
  font-size: var(--fs-xs);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.closing-band {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  margin-top: clamp(24px, 5vw, 60px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(159, 17, 23, 0.24);
  background: rgba(255, 253, 248, 0.78);
}

.conclusion-section .closing-band {
  margin-top: 0;
}

.closing-logos {
  display: grid;
  gap: 18px;
}

.closing-logos img {
  width: 100%;
  border: 1px solid rgba(21, 21, 21, 0.18);
}

.closing-logos img:last-child {
  padding: 16px;
  background: white;
}

.closing-band h2 {
  max-width: 1020px;
  margin-bottom: 0;
  font-size: var(--fs-xl);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 44px);
  background: rgba(12, 12, 12, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(1180px, 94vw);
  max-height: 82vh;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 180ms ease, max-width 180ms ease, max-height 180ms ease;
}

.lightbox.is-zoomed {
  overflow: auto;
  place-items: start center;
}

.lightbox.is-zoomed img {
  max-width: none;
  max-height: none;
  width: min(1717px, 180vw);
  transform: translateZ(0) scale(1.08);
  transform-origin: top center;
  cursor: zoom-out;
}

.lightbox p {
  max-width: min(1180px, 94vw);
  margin: 14px 0 0;
  color: white;
  font-size: var(--fs-sm);
  font-weight: 760;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: white;
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
  font-size: var(--fs-sm);
  font-weight: 820;
  cursor: pointer;
}

.reveal-up,
.reveal-side {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-side {
  transform: translate3d(-42px, 0, 0);
}

.in-view .reveal-up,
.in-view .reveal-side {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.in-view .capability:nth-child(2),
.in-view .decision-board article:nth-child(2),
.in-view .timeline article:nth-child(2) {
  transition-delay: 80ms;
}

.in-view .capability:nth-child(3),
.in-view .decision-board article:nth-child(3),
.in-view .timeline article:nth-child(3) {
  transition-delay: 160ms;
}

.in-view .capability:nth-child(4),
.in-view .decision-board article:nth-child(4) {
  transition-delay: 240ms;
}

.in-view .capability:nth-child(5) {
  transition-delay: 320ms;
}

.in-view .capability:nth-child(6) {
  transition-delay: 400ms;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-up,
  .reveal-side,
  .interface-shot {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(170px, 240px) 1fr auto;
  }

  .hero-modules,
  .decision-board,
  .reach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .showcase-section,
  .admin-section {
    grid-template-columns: 1fr;
  }

  .admin-copy {
    order: -1;
  }

  .device-stage,
  .admin-visual {
    transform: none;
  }
}

@media (max-width: 820px) {
  :root {
    --header-h: 68px;
  }

  .page-frame {
    inset: 8px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 18px;
  }

  .brand img {
    width: 120px;
  }

  .brand span {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .deck-status {
    width: 112px;
  }

  .section {
    min-height: auto;
    padding: calc(var(--header-h) + 34px) 18px 46px;
  }

  .hero-stage,
  .flow-lanes,
  .timeline,
  .closing-band,
  .package-block,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .hero-main {
    min-height: auto;
    padding: 22px;
  }

  .hero-logo-row {
    margin-bottom: 30px;
    padding-bottom: 0;
  }

  .hero-logo-row img {
    width: 118px;
    height: 38px;
  }

  .hero-logo-row img:last-child {
    width: 104px;
  }

  .flag-card {
    min-height: 160px;
  }

  .hero-modules,
  .capability-grid,
  .decision-board,
  .reach-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .hero-modules article {
    min-height: 54px;
  }

  .capability {
    min-height: auto;
  }

  .package-grid article {
    min-height: auto;
  }

  .capability span,
  .decision-board span,
  .timeline span {
    margin-bottom: 24px;
  }

  .device-stage img,
  .admin-visual img {
    height: auto;
    max-height: none;
  }

  .interface-gallery {
    gap: 32px;
  }

  .interface-shot figcaption {
    position: static;
    border-inline: 0;
    border-radius: 0;
    color: var(--soft-ink);
    background: rgba(255, 253, 248, 0.92);
  }

  .lightbox.is-zoomed img {
    width: 220vw;
  }

  .flow-card {
    min-height: auto;
  }

  .flow-title {
    margin-bottom: 34px;
  }

  .flow-title span {
    font-size: var(--fs-xl);
  }

  .flow-card ol {
    grid-template-columns: 1fr;
  }

  .decision-board article,
  .timeline article,
  .reach-grid article {
    min-height: auto;
  }

  .closing-logos img {
    width: min(100%, 260px);
  }
}
