:root {
  --bg0: #05070b;
  --bg1: #0a0e16;
  --panel: #0d1320;
  --paper: #f4f2ec;
  --ink: #10151c;
  --muted-dark: #8b93a1;
  --muted-light: #5b6470;
  --accent: #ffd60a;
  --rose: #ff4d8d;
  --sky: #3fa9ff;
  --line-dark: rgba(255, 255, 255, .12);
  --line-faint: rgba(255, 255, 255, .07);
  --line-light: rgba(16, 21, 28, .12);
  --radius: 28px;
  --shell: 1240px;
  --display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", "Courier New", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: #e8eaee;
  background: var(--bg0);
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

canvas, img { max-width: 100%; }

a { color: inherit; }

.shell {
  width: min(var(--shell), calc(100% - 44px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 999;
  background: var(--accent);
  color: var(--bg0);
  padding: .7rem 1.1rem;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.skip-link:focus { top: 1rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* ── Type helpers ─────────────────────────────── */

.mono-kicker {
  margin: 0 0 1rem;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
}


.display-xl,
.display-lg {
  margin: 0;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.02;
}

.display-xl { font-size: clamp(2.5rem, 6.4vw, 5.4rem); }
.display-lg { font-size: clamp(1.9rem, 4.2vw, 3.4rem); }

.section-subtitle {
  max-width: 720px;
  margin: 1.1rem 0 0;
  color: var(--muted-dark);
  font-size: clamp(.98rem, 1.4vw, 1.1rem);
  line-height: 1.66;
}


/* ── Header ───────────────────────────────────── */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  padding: 14px clamp(12px, 2vw, 24px) 0;
  pointer-events: none;
}

.header-pill {
  pointer-events: auto;
  max-width: var(--shell);
  margin-inline: auto;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 8px 10px 8px 18px;
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: rgba(10, 14, 22, .68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--accent);
  color: var(--bg0);
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-name {
  font-weight: 600;
  letter-spacing: -.02em;
  font-size: 1.02rem;
  white-space: nowrap;
}

.brand-name em {
  font-style: normal;
  color: var(--muted-dark);
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: .1rem;
}

.site-nav a {
  text-decoration: none;
  color: #cfd4dc;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .68rem .78rem;
  border-radius: 10px;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--accent);
  background: rgba(255, 214, 10, .08);
}

.nav-cta {
  border: 1px solid var(--line-dark);
  margin-left: .35rem;
}

.nav-cta.contact {
  background: var(--accent) !important;
  color: var(--bg0) !important;
  border-color: var(--accent);
  font-weight: 600;
}

.nav-cta.contact:hover { background: #ffe14d !important; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  background: currentColor;
  content: "";
}

.menu-toggle-lines::before { transform: translateY(-6px); }
.menu-toggle-lines::after { transform: translateY(4px); }

/* ── Hero (Orano-style experience slider) ─────── */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 96px clamp(20px, 4vw, 56px) 20px;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(28, 42, 68, .55), transparent 60%),
    var(--bg0);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-frame { position: absolute; inset: 0; pointer-events: none; }

.frame-line { position: absolute; background: var(--line-faint); }
.frame-h { left: 0; right: 0; top: 50%; height: 1px; }
.frame-v { top: 0; bottom: 0; left: 50%; width: 1px; }

.hero-top,
.hero-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  z-index: 3;
}

.hero-top { margin-bottom: 12px; }

.hero-tag {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(232, 234, 238, .66);
}

.tag-tick {
  width: 4px;
  height: 14px;
  background: var(--accent);
}

.scroll-cue .cue-line {
  width: 42px;
  height: 1px;
  background: rgba(232, 234, 238, .4);
  position: relative;
  overflow: hidden;
}

.scroll-cue .cue-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-100%);
  animation: cue 2.4s ease-in-out infinite;
}

@keyframes cue {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

.hero-counter {
  position: relative;
  align-self: center;
  display: flex;
  align-items: center;
  gap: .9rem;
  z-index: 3;
  margin-top: 6px;
  font-family: var(--mono);
  font-size: .8rem;
  letter-spacing: .18em;
}

.counter-current { color: var(--accent); }
.counter-total { color: rgba(232, 234, 238, .45); }

.counter-line {
  position: relative;
  width: 72px;
  height: 1px;
  background: rgba(232, 234, 238, .25);
  overflow: hidden;
}

.counter-line i {
  position: absolute;
  inset: 0;
  transform-origin: left;
  transform: scaleX(0);
  background: var(--accent);
}

.hero.is-auto .counter-line i { animation: fill 7s linear infinite; }

@keyframes fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-stage {
  position: relative;
  z-index: 2;
  flex: 1;
  width: min(880px, 100%);
  margin-inline: auto;
  text-align: center;
  display: grid;
  align-items: center;
}

.hero-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease, visibility 0s linear .7s;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity .8s ease .15s, transform .8s ease .15s, visibility 0s;
}

.slide-kicker {
  margin: 0 0 1.2rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
}

.slide-word {
  margin: 0;
  font-size: clamp(2.6rem, 8.5vw, 6.8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #f2f4f7;
  text-shadow: 0 0 60px rgba(63, 169, 255, .25);
}

.slide-copy {
  max-width: 560px;
  margin: 1.4rem auto 0;
  color: rgba(232, 234, 238, .72);
  font-size: clamp(.95rem, 1.4vw, 1.06rem);
  line-height: 1.7;
}

.btn-enter {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  min-width: 210px;
  min-height: 52px;
  padding: .8rem 2.4rem;
  border: 1px solid rgba(255, 214, 10, .45);
  background: rgba(255, 214, 10, .06);
  color: var(--accent);
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .3s ease, color .3s ease;
}

.btn-enter::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  bottom: -1px;
  width: 5px;
  background: var(--accent);
}

.btn-enter:hover,
.btn-enter:focus-visible {
  background: var(--accent);
  color: var(--bg0);
}

.btn-enter.solid {
  background: var(--accent);
  color: var(--bg0);
  border-color: var(--accent);
}

.btn-enter.solid:hover { background: #ffe14d; }

.hero-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  z-index: 3;
  margin: 20px 0 26px;
}

.hero-arrow {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(232, 234, 238, .28);
  background: transparent;
  color: #e8eaee;
  cursor: pointer;
  transition: border-color .3s, color .3s, transform .3s;
}

.hero-arrow svg { width: 20px; height: 20px; }

.hero-arrow:hover,
.hero-arrow:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.06);
}

.hero-dots { display: flex; gap: .7rem; }

.dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(232, 234, 238, .3);
  cursor: pointer;
  transition: background .3s, transform .3s;
}

.dot.is-active {
  background: var(--accent);
  transform: scale(1.35);
}

/* ── Statement ────────────────────────────────── */

.statement {
  padding: clamp(5rem, 11vw, 9.5rem) 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg0), var(--bg1));
}

.statement .display-xl { max-width: 1000px; margin-inline: auto; }

.statement-sub {
  max-width: 680px;
  margin: 1.6rem auto 0;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.7;
}

/* ── Capabilities ─────────────────────────────── */

.capabilities {
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
  background: var(--bg1);
  scroll-margin-top: 90px;
}

.cap-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.4rem); }

.cap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-faint);
  border-left: 1px solid var(--line-faint);
}

.cap-item {
  position: relative;
  padding: clamp(1.4rem, 2.5vw, 2.2rem);
  border-right: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
  transition: background .35s ease;
}

.cap-item:hover { background: rgba(255, 214, 10, .04); }

.cap-num {
  font-family: var(--mono);
  font-size: .8rem;
  letter-spacing: .2em;
  color: var(--accent);
}

.cap-item h3 {
  margin: .9rem 0 .5rem;
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.2;
}

.cap-item p {
  margin: 0;
  color: var(--muted-dark);
  font-size: .94rem;
  line-height: 1.62;
}

/* ── Sections base ────────────────────────────── */

.section {
  padding: clamp(3.6rem, 7.5vw, 6.5rem) 0;
  scroll-margin-top: 90px;
}

/* ── Run length chart ─────────────────────────── */

.run-section { background: var(--bg0); }

.chart-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
}

.run-chart {
  margin: 0;
  padding: clamp(1.3rem, 3vw, 2.2rem);
  background: var(--panel);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.run-chart-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.run-chart h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: -.02em;
}

.run-chart-head span,
.run-name,
.run-value,
.run-axis {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.run-value { color: #dfe3e9; }

.run-name { text-align: right; }

.run-chart-body {
  display: grid;
  grid-template-columns: 120px 1fr 110px;
  gap: 1.1rem 1.3rem;
  align-items: center;
}

.track {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
}

.track span {
  position: absolute;
  top: 0;
  bottom: 0;
  border-radius: inherit;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(.2, .7, .2, 1) .2s;
}

.reveal.in-view .track span,
.in-view .track span { transform: scaleX(1); }

.track.digital span { left: 0; width: 66%; background: var(--accent); }
.track.sheet span { left: 54%; width: 40%; background: var(--rose); transition-delay: .4s; }
.track.web span { left: 80%; width: 20%; background: var(--sky); transition-delay: .6s; }

.run-axis {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  text-align: center;
  margin-top: .6rem;
  font-size: .68rem;
}

/* ── Process sections (light rounded panels) ──── */

.light-panel {
  background: var(--bg0);
  border-top: 1px solid var(--line-faint);
}

.light-panel.alt { background: var(--bg1); }

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(1.6rem, 3vw, 2.6rem);
}

.split-heading .section-subtitle { max-width: 420px; text-align: right; }

.canvas-card {
  position: relative;
  padding: clamp(.9rem, 1.8vw, 1.4rem);
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background: var(--panel);
  text-align: center;
}

.canvas-card::before {
  content: "● LIVE FEED";
  position: absolute;
  top: 14px;
  left: 20px;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .22em;
  color: var(--accent);
}

.canvas-card::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 20px;
  width: 34px;
  height: 8px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

canvas.web-canvas,
canvas.sheet-canvas,
canvas.digital-canvas {
  display: block;
  margin: 1.4rem auto 0;
  width: 100%;
  max-width: 920px;
  height: auto;
  background: #f0f3f8;
  border-radius: 10px;
  filter: invert(.94) hue-rotate(180deg) saturate(1.25);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08);
}

.caption-pill {
  display: inline-flex;
  margin: .9rem auto .1rem;
  padding: .45rem 1.1rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-dark);
  background: rgba(255, 255, 255, .03);
}

.content-grid {
  display: grid;
  gap: 12px;
  margin-top: clamp(1.4rem, 3vw, 2rem);
}

.five-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.four-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.three-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.info-card {
  padding: 1.25rem;
  border: 1px solid var(--line-faint);
  border-radius: 18px;
  background: var(--panel);
  transition: background .35s ease, border-color .35s ease;
}

.info-card:hover { border-color: var(--line-dark); }

.card-idx {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--accent);
}

.info-card h3 {
  margin: .7rem 0 .4rem;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.25;
  color: #f2f4f7;
}

.info-card p {
  margin: 0;
  color: var(--muted-dark);
  font-size: .9rem;
  line-height: 1.6;
}

.info-card.highlight {
  background: rgba(255, 214, 10, .06);
  border-color: rgba(255, 214, 10, .35);
}

.info-card.highlight p { color: rgba(232, 234, 238, .75); }

/* ── Compare table ────────────────────────────── */

.compare-section { background: var(--bg1); }

.center-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.center-head .section-subtitle { margin-inline: auto; }

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--panel);
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 1.05rem 1.3rem;
  text-align: left;
  border-bottom: 1px solid var(--line-faint);
  vertical-align: top;
  font-size: .95rem;
}

.compare-table thead th {
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--line-dark);
}

.compare-table tbody tr:last-child td { border-bottom: 0; }

.compare-table td { color: #c9cfd8; }

.compare-table td:first-child {
  color: #fff;
  font-weight: 600;
}

.compare-table tbody tr:hover td { background: rgba(255, 255, 255, .025); }

.tag {
  display: inline-flex;
  align-items: center;
  padding: .22rem .6rem;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  white-space: nowrap;
}

.tag.gold { background: rgba(255, 214, 10, .14); color: var(--accent); }
.tag.rose { background: rgba(255, 77, 141, .14); color: #ff7fae; }
.tag.sky { background: rgba(63, 169, 255, .14); color: #7cc4ff; }
.tag.dim { background: rgba(255, 255, 255, .08); color: #aab1bc; }

/* ── Contact ──────────────────────────────────── */

.contact-section {
  padding-top: 0;
  background: var(--bg1);
}

.contact-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: clamp(1.8rem, 4.5vw, 3.4rem);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 85% 20%, rgba(255, 214, 10, .1), transparent 55%),
    var(--panel);
}

.contact-card .section-subtitle { max-width: 560px; }

/* ── Footer ───────────────────────────────────── */

.site-footer {
  background: var(--bg0);
  border-top: 1px solid var(--line-faint);
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.footer-mid { color: rgba(255, 214, 10, .5); letter-spacing: .3em; }

/* ── Preloader ────────────────────────────────── */

html.is-loading { overflow: hidden; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: var(--bg0);
  transition: opacity .8s ease, visibility 0s linear .8s;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner { text-align: center; }

.loader-brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 1.4rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(232, 234, 238, .7);
}

.loader-num {
  font-weight: 600;
  font-size: clamp(4.5rem, 14vw, 9rem);
  line-height: 1;
  letter-spacing: -.03em;
  background: linear-gradient(100deg, #39404b 10%, #f2f4f7 50%, #39404b 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.loader-num em {
  font-style: normal;
  font-size: .4em;
  vertical-align: .12em;
}

.loader-bar {
  width: min(320px, 62vw);
  height: 2px;
  margin: 1.6rem auto 1.1rem;
  background: rgba(255, 255, 255, .12);
  overflow: hidden;
}

.loader-bar i {
  display: block;
  height: 100%;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
}

.loader-note {
  margin: 0;
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

/* ── Reveal on scroll ─────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* ── Responsive ───────────────────────────────── */

@media (max-width: 1120px) {
  .site-nav a { padding: .6rem .55rem; font-size: .66rem; }
  .five-grid, .four-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .chart-layout { grid-template-columns: 1fr; }
  .cap-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 880px) {
  .menu-toggle { display: inline-grid; place-items: center; }

  .site-nav {
    position: fixed;
    top: 88px;
    left: 50%;
    width: min(360px, calc(100vw - 36px));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .4rem;
    padding: .8rem;
    border: 1px solid var(--line-dark);
    border-radius: 20px;
    background: rgba(10, 14, 22, .96);
    backdrop-filter: blur(20px);
    transform: translate(-50%, -10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s;
    text-align: center;
  }

  .site-nav.is-open {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    font-size: .68rem;
  }

  .nav-cta { margin-left: 0; }

  .hero-top .hero-tag.right { display: none; }
  .hero-bottom .hero-tag:first-child { display: none; }
  .hero-bottom { justify-content: center; }
  .frame-v { display: none; }

  .split-heading { display: block; }
  .split-heading .section-subtitle { text-align: left; max-width: 640px; }

  .three-grid { grid-template-columns: 1fr; }
  .contact-card { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; gap: .4rem; text-align: center; }
}

@media (max-width: 560px) {
  .shell { width: calc(100% - 32px); }
  .five-grid, .four-grid, .cap-list { grid-template-columns: 1fr; }
  .brand-name em { display: none; }
  .hero-arrow { width: 46px; height: 46px; }
  .slide-word { letter-spacing: .07em; }
  .slide-copy { font-size: .9rem; line-height: 1.6; }
  .btn-enter { width: auto; min-width: 190px; margin-top: 1.4rem; }
  .run-chart-body { grid-template-columns: 1fr; gap: .5rem; }
  .run-name { text-align: left; margin-top: .9rem; }
  .run-value { margin-top: .35rem; }
  .run-axis { grid-column: 1; }
}

@media (max-height: 700px) {
  .slide-word { font-size: clamp(2rem, 6.5vw, 4.2rem); }
  .slide-copy { margin-top: .8rem; font-size: .92rem; }
  .btn-enter { margin-top: 1.1rem; min-height: 46px; }
  .hero-nav { margin: 12px 0 14px; }
  .hero-arrow { width: 44px; height: 44px; }
}

