:root {
  --brand-cyan: #02d3eb;
  --brand-blue: #3f8ff5;
  --brand-sky: #bfd8f5;
  --brand-navy: #07152e;
  --brand-white: #ffffff;
  --brand-blue-text: #1769b8;
  --brand-cyan-text: #007780;
  --surface-soft: #f4f3ee;
  --surface-blue: #e9f0f8;
  --text: var(--brand-navy);
  --text-muted: #4e596b;
  --line: rgba(7, 21, 46, 0.17);
  --line-light: rgba(255, 255, 255, 0.16);
  --gradient-brand: linear-gradient(
    135deg,
    var(--brand-blue),
    var(--brand-cyan)
  );
  --shadow-soft: 0 24px 80px rgba(7, 21, 46, 0.1);
  --container: 1240px;
  --header-height: 88px;
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--brand-white);
  color: var(--text);
  font-family:
    "Helvetica Neue", Arial, "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--brand-cyan-text);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--brand-navy);
  color: white;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(254, 254, 254, 0.9);
  backdrop-filter: blur(16px);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(4, 20, 55, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), 1320px);
  height: 100%;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  text-decoration: none;
}

.brand-symbol {
  width: 46px;
  height: 46px;
}

.wordmark {
  display: flex;
  align-items: baseline;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
}

.wordmark-g,
.wordmark-y {
  color: var(--brand-navy);
}

.wordmark-l,
.wordmark-n {
  color: var(--brand-blue);
}

.wordmark-t {
  color: var(--brand-cyan);
}

.wordmark-y {
  position: relative;
}

.wordmark-y i {
  position: absolute;
  top: -0.24em;
  right: -0.12em;
  width: 0.24em;
  height: 0.24em;
  border-radius: 50%;
  background: var(--brand-blue);
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-navigation a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-navigation > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--brand-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-navigation > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0 20px;
  border-radius: 999px;
  background: var(--brand-navy);
  color: white;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.nav-cta:hover {
  background: #0b2a63;
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--surface-soft);
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-navy);
  transition: transform 220ms var(--ease);
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--header-height);
  overflow: hidden;
  background:
    linear-gradient(rgba(73, 155, 254, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 155, 254, 0.035) 1px, transparent 1px),
    var(--brand-white);
  background-size: 48px 48px;
}

.hero::after {
  position: absolute;
  inset: var(--header-height) 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: 8%;
  right: -12%;
  width: 52vw;
  height: 52vw;
  background: radial-gradient(
    circle,
    rgba(174, 210, 253, 0.42),
    transparent 70%
  );
}

.hero-glow-two {
  bottom: -22%;
  left: -14%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(2, 211, 235, 0.1), transparent 70%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
  min-height: calc(100svh - var(--header-height) - 88px);
  padding-block: clamp(64px, 8vw, 112px);
}

.eyebrow,
.section-label,
.card-en,
.value-en,
.visual-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #274d81;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--gradient-brand);
  content: "";
}

.hero-title {
  margin: 28px 0 0;
  font-size: clamp(48px, 5.5vw, 82px);
  font-weight: 750;
  line-height: 1.24;
  letter-spacing: -0.055em;
}

.hero-title span {
  background: linear-gradient(90deg, #187cf6, var(--brand-cyan-text) 85%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero-description {
  max-width: 660px;
  margin: 32px 0 0;
  color: var(--text-muted);
  font-size: clamp(16px, 1.3vw, 18px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    transform 200ms var(--ease),
    box-shadow 200ms ease,
    background 200ms ease;
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 200ms var(--ease);
}

.button-primary {
  background: var(--brand-navy);
  box-shadow: 0 12px 28px rgba(4, 20, 55, 0.18);
  color: white;
}

.button-primary:hover {
  background: #0b2a63;
  box-shadow: 0 16px 34px rgba(4, 20, 55, 0.24);
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translateX(3px);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  font-weight: 700;
  text-underline-offset: 6px;
  text-decoration-color: var(--brand-blue);
  text-decoration-thickness: 2px;
}

.text-link:hover {
  color: #155eb8;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-frame {
  position: relative;
  width: min(100%, 510px);
  aspect-ratio: 1;
  border: 1px solid rgba(73, 155, 254, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, white 0 29%, transparent 30%),
    radial-gradient(
      circle at 50% 50%,
      rgba(174, 210, 253, 0.2),
      rgba(255, 255, 255, 0.8) 65%
    );
  box-shadow: var(--shadow-soft);
}

.visual-frame::before,
.visual-frame::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.visual-frame::before {
  inset: 12%;
  border: 1px dashed rgba(73, 155, 254, 0.32);
}

.visual-frame::after {
  inset: 31%;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(234, 243, 255, 0.85)
  );
  box-shadow: 0 18px 50px rgba(73, 155, 254, 0.15);
}

.orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-outer {
  inset: 4%;
  border: 1px solid rgba(2, 211, 235, 0.13);
}

.orbit-inner {
  inset: 22%;
  border: 1px solid rgba(4, 20, 55, 0.09);
}

.orbit-dot {
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--brand-cyan);
  box-shadow: 0 0 0 5px rgba(2, 211, 235, 0.12);
}

.orbit-dot-one {
  top: 16%;
  right: 21%;
}

.orbit-dot-two {
  bottom: 14%;
  left: 24%;
  background: var(--brand-blue);
  box-shadow: 0 0 0 5px rgba(73, 155, 254, 0.12);
}

.visual-center {
  position: absolute;
  inset: 31%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.visual-center img {
  width: 65%;
  margin-block: 8px 4px;
}

.visual-kicker {
  color: #52617d;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.visual-name {
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.28em;
  transform: translateX(0.14em);
}

.orbit-label {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(73, 155, 254, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(4, 20, 55, 0.08);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.orbit-label span {
  color: #3268a6;
  font-size: 9px;
  font-weight: 800;
}

.orbit-label strong {
  font-size: 10px;
  letter-spacing: 0.12em;
}

.orbit-label-one {
  top: 12%;
  left: 4%;
}

.orbit-label-two {
  right: -3%;
  bottom: 29%;
}

.orbit-label-three {
  bottom: 3%;
  left: 10%;
}

.principle-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.principle-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 64px);
  min-height: 88px;
  color: #263a60;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.principle-strip-inner i,
.site-footer i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-cyan);
}

.section {
  position: relative;
  padding-block: clamp(96px, 11vw, 160px);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #37547b;
}

.section-label span {
  color: var(--brand-blue-text);
}

.section-heading h2,
.values-heading h2,
.vision h2 {
  margin: 24px 0 0;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 730;
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.35fr);
  gap: clamp(48px, 9vw, 140px);
  align-items: end;
  margin-top: clamp(64px, 9vw, 112px);
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.about-marker {
  display: flex;
  align-items: flex-end;
  gap: 18px;
}

.about-marker > span {
  background: var(--gradient-brand);
  background-clip: text;
  color: transparent;
  font-size: clamp(76px, 9vw, 132px);
  font-weight: 850;
  line-height: 0.8;
  letter-spacing: -0.08em;
  -webkit-background-clip: text;
}

.marker-line {
  width: 1px;
  height: 72px;
  background: var(--line);
}

.about-marker small {
  color: #51627e;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.16em;
}

.about-copy {
  max-width: 650px;
  justify-self: end;
}

.about-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 17px;
}

.about-copy .about-lead {
  margin-bottom: 28px;
  color: var(--brand-navy);
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.statement-grid {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 1fr) 1fr;
  align-items: center;
  gap: 40px;
  margin-top: clamp(88px, 11vw, 160px);
  padding: 48px clamp(28px, 5vw, 64px);
  border: 1px solid rgba(73, 155, 254, 0.14);
  border-radius: var(--radius-medium);
  background: var(--surface-soft);
}

.statement-grid p {
  margin: 0;
  font-size: clamp(18px, 2.3vw, 30px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.12em;
}

.statement-grid p:last-child {
  text-align: right;
}

.statement-connector {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 0;
}

.statement-connector::before {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-cyan));
  content: "";
}

.statement-connector i {
  z-index: 1;
  width: 12px;
  height: 12px;
  border: 3px solid var(--surface-soft);
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: 0 0 0 1px var(--brand-blue);
}

.statement-connector i:nth-child(2) {
  background: var(--brand-cyan);
  box-shadow: 0 0 0 1px var(--brand-cyan);
}

.work {
  background: var(--surface-soft);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
}

.section-intro {
  max-width: 410px;
  margin: 0 0 8px;
  color: var(--text-muted);
}

.work-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: clamp(56px, 7vw, 88px) 0 0;
  padding: 0;
  list-style: none;
}

.work-card {
  min-width: 0;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(73, 155, 254, 0.15);
  border-radius: var(--radius-medium);
  background: white;
  box-shadow: 0 12px 40px rgba(25, 86, 166, 0.04);
  transition:
    border-color 220ms ease,
    transform 220ms var(--ease),
    box-shadow 220ms ease;
}

.work-card:hover {
  border-color: rgba(73, 155, 254, 0.4);
  box-shadow: 0 24px 56px rgba(25, 86, 166, 0.1);
  transform: translateY(-6px);
}

.work-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.card-number {
  color: #5b6b85;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.work-card svg {
  width: 48px;
  height: 48px;
  padding: 10px;
  border-radius: 14px;
  background: var(--surface-blue);
  fill: none;
  stroke: var(--brand-blue-text);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.card-en {
  margin-top: 56px;
  color: var(--brand-blue-text);
}

.work-card h3 {
  margin: 12px 0 18px;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.work-card > p:last-child {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
}

.values {
  overflow: hidden;
  background: var(--brand-navy);
  color: white;
}

.values::before {
  position: absolute;
  top: 0;
  right: 12%;
  width: 1px;
  height: 100%;
  background: var(--line-light);
  content: "";
}

.values-glow {
  position: absolute;
  top: -40%;
  right: -15%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(73, 155, 254, 0.25),
    transparent 68%
  );
  pointer-events: none;
}

.values .container {
  position: relative;
  z-index: 1;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.67);
}

.section-label-light span {
  color: var(--brand-cyan);
}

.values-heading h2 {
  max-width: 720px;
}

.value-list {
  margin-top: clamp(64px, 8vw, 104px);
  border-top: 1px solid var(--line-light);
}

.value-item {
  display: grid;
  grid-template-columns: 64px minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  padding-block: clamp(32px, 4vw, 52px);
  border-bottom: 1px solid var(--line-light);
}

.value-number {
  align-self: start;
  padding-top: 5px;
  color: var(--brand-sky);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.value-en {
  margin-bottom: 12px;
  color: var(--brand-cyan);
}

.value-item h3 {
  margin: 0;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.value-description {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
}

.vision {
  overflow: hidden;
  text-align: center;
}

.vision::before,
.vision::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.vision::before {
  top: 10%;
  left: -10%;
  width: 32vw;
  height: 32vw;
  background: radial-gradient(
    circle,
    rgba(174, 210, 253, 0.25),
    transparent 70%
  );
}

.vision::after {
  right: -8%;
  bottom: -25%;
  width: 34vw;
  height: 34vw;
  background: radial-gradient(circle, rgba(2, 211, 235, 0.12), transparent 70%);
}

.vision-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vision-inner > img {
  width: 104px;
  height: 104px;
  margin-bottom: 36px;
}

.vision h2 {
  font-size: clamp(44px, 6vw, 76px);
}

.vision h2::after {
  display: block;
  width: 48px;
  height: 4px;
  margin: 36px auto;
  border-radius: 99px;
  background: var(--gradient-brand);
  content: "";
}

.vision-inner > p:not(.section-label) {
  margin: 0;
  color: var(--text-muted);
  font-size: 17px;
}

.text-link-large {
  margin-top: 36px;
}

.site-footer {
  padding: 56px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.footer-main,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-main > p {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  color: #354a6d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: #59667c;
  font-size: 12px;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

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

.hero-copy .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.hero-copy .reveal:nth-child(3) {
  transition-delay: 130ms;
}

.hero-copy .reveal:nth-child(4) {
  transition-delay: 190ms;
}

.hero-visual.reveal {
  transition-delay: 120ms;
}

.work-card:nth-child(2),
.value-item:nth-child(2) {
  transition-delay: 70ms;
}

.work-card:nth-child(3),
.value-item:nth-child(3) {
  transition-delay: 140ms;
}

@media (max-width: 1024px) {
  :root {
    --header-height: 72px;
  }

  .site-navigation {
    gap: 20px;
  }

  .site-navigation a {
    font-size: 12px;
  }

  .hero-layout {
    grid-template-columns: 1fr 0.82fr;
    gap: 32px;
  }

  .hero-title {
    font-size: clamp(46px, 6.5vw, 66px);
  }

  .orbit-label-two {
    right: -6%;
  }

  .section-heading-row {
    align-items: start;
    flex-direction: column;
  }

  .work-card {
    padding: 28px;
  }

  .value-item {
    grid-template-columns: 48px minmax(240px, 0.85fr) 1fr;
    gap: 28px;
  }
}

@media (max-width: 800px) {
  .container,
  .header-inner {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-navigation {
    gap: 0;
  }

  .site-navigation a {
    display: none;
  }

  .site-navigation .nav-cta {
    display: inline-flex;
    min-height: 44px;
    margin: 0;
    padding: 0 14px;
    font-size: 11px;
  }

  .menu-ready .menu-button {
    position: relative;
    display: block;
  }

  .menu-ready .site-navigation {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    max-height: 0;
    padding: 0 16px;
    overflow-x: hidden;
    overflow-y: auto;
    border-bottom: 1px solid transparent;
    background: rgba(254, 254, 254, 0.98);
    visibility: hidden;
    opacity: 0;
    transition:
      max-height 300ms var(--ease),
      padding 300ms var(--ease),
      opacity 180ms ease,
      visibility 180ms ease;
  }

  .menu-ready .site-navigation.is-open {
    max-height: calc(100svh - var(--header-height));
    padding-block: 16px 24px;
    border-color: var(--line);
    visibility: visible;
    opacity: 1;
  }

  .menu-ready .site-navigation a {
    display: inline-flex;
    min-height: 52px;
    padding-inline: 12px;
    font-size: 14px;
  }

  .menu-ready .site-navigation > a:not(.nav-cta)::after {
    display: none;
  }

  .menu-ready .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 72px 84px;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-title {
    font-size: clamp(44px, 10.2vw, 66px);
  }

  .hero-visual {
    padding: 8px 7vw 0;
  }

  .visual-frame {
    max-width: 500px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-copy {
    justify-self: start;
  }

  .statement-grid {
    grid-template-columns: 1fr;
  }

  .statement-grid p:last-child {
    text-align: left;
  }

  .statement-connector {
    width: 1px;
    height: 72px;
    margin-left: 12px;
    flex-direction: column;
  }

  .statement-connector::before {
    inset: 0 auto 0 50%;
    width: 1px;
    height: auto;
  }

  .work-list {
    grid-template-columns: 1fr;
  }

  .work-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 28px;
  }

  .work-card-top {
    grid-row: 1 / span 3;
    flex-direction: column;
    justify-content: flex-start;
    gap: 28px;
  }

  .card-en {
    margin-top: 0;
  }

  .work-card h3 {
    margin-top: 8px;
  }

  .value-item {
    grid-template-columns: 44px 1fr;
  }

  .value-description {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .desktop-only {
    display: none;
  }

  .brand-symbol {
    width: 42px;
    height: 42px;
  }

  .wordmark {
    font-size: 21px;
  }

  .hero-layout {
    padding-top: 56px;
  }

  .hero-title {
    margin-top: 22px;
    font-size: clamp(40px, 11.5vw, 56px);
    line-height: 1.28;
  }

  .hero-description {
    margin-top: 24px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
  }

  .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-visual {
    padding-inline: 4vw;
  }

  .orbit-label {
    min-height: 36px;
    padding: 0 10px;
  }

  .orbit-label-one {
    left: -2%;
  }

  .orbit-label-two {
    right: -4%;
  }

  .orbit-label-three {
    left: 4%;
  }

  .principle-strip-inner {
    gap: 10px;
    justify-content: space-between;
    min-height: 72px;
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .principle-strip-inner i {
    width: 4px;
    height: 4px;
  }

  .section-heading h2,
  .values-heading h2 {
    font-size: clamp(36px, 10vw, 50px);
  }

  .about-grid {
    margin-top: 48px;
  }

  .about-marker > span {
    font-size: 88px;
  }

  .statement-grid {
    margin-top: 80px;
    padding: 32px 24px;
  }

  .work-card {
    display: block;
    padding: 28px 24px;
  }

  .work-card-top {
    flex-direction: row;
    justify-content: space-between;
  }

  .card-en {
    margin-top: 40px;
  }

  .value-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-description {
    grid-column: 1;
  }

  .value-number {
    padding-top: 0;
  }

  .vision-inner > img {
    width: 88px;
    height: 88px;
  }

  .vision h2 {
    font-size: clamp(40px, 11vw, 54px);
  }

  .vision-inner > p:not(.section-label) {
    font-size: 16px;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main > p {
    gap: 9px;
    font-size: 8px;
  }

  .footer-bottom {
    margin-top: 36px;
  }
}

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

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

  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Desktop refinement — the mobile composition will be tuned separately. */
@media (min-width: 801px) {
  body {
    background: var(--brand-white);
  }

  .container {
    width: min(calc(100% - 96px), var(--container));
  }

  .site-header {
    height: var(--header-height);
    border-bottom-color: var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
  }

  .site-header.is-scrolled {
    box-shadow: none;
  }

  .header-inner {
    width: min(calc(100% - 96px), 1380px);
  }

  .brand {
    gap: 14px;
  }

  .brand-symbol {
    width: 42px;
    height: 42px;
  }

  .wordmark {
    font-size: 25px;
    letter-spacing: 0.18em;
  }

  .site-navigation {
    gap: clamp(22px, 2.8vw, 42px);
  }

  .site-navigation a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
  }

  .site-navigation > a:not(.nav-cta)::after {
    bottom: 4px;
    height: 1px;
  }

  .nav-cta {
    min-height: 46px;
    padding: 0 22px;
    border-radius: 2px;
    background: var(--brand-navy);
  }

  .nav-cta:hover {
    background: #10284e;
    transform: none;
  }

  .hero {
    min-height: 0;
    background: var(--surface-soft);
  }

  .hero::before {
    position: absolute;
    inset: var(--header-height) 50% 88px auto;
    width: 1px;
    background: rgba(7, 21, 46, 0.08);
    content: "";
  }

  .hero::after {
    top: var(--header-height);
    background: var(--line);
  }

  .hero-layout {
    grid-template-columns: minmax(520px, 1.15fr) minmax(380px, 0.85fr);
    gap: clamp(64px, 8vw, 128px);
    min-height: calc(100svh - var(--header-height) - 88px);
    padding-block: clamp(72px, 8vh, 108px);
  }

  .eyebrow {
    gap: 16px;
    color: #536078;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
  }

  .eyebrow::before {
    width: 44px;
    height: 1px;
    background: var(--brand-blue);
  }

  .hero-title {
    max-width: 760px;
    margin-top: 34px;
    color: var(--brand-navy);
    font-size: clamp(62px, 5.4vw, 86px);
    font-weight: 650;
    line-height: 1.24;
    letter-spacing: -0.065em;
  }

  .hero-title span {
    background: none;
    color: var(--brand-blue-text);
    -webkit-text-fill-color: currentColor;
  }

  .hero-description {
    max-width: 640px;
    margin-top: 36px;
    color: #3d485a;
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 2;
  }

  .hero-actions {
    gap: 34px;
    margin-top: 46px;
  }

  .button {
    min-height: 56px;
    padding-inline: 26px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
  }

  .button-primary {
    box-shadow: none;
  }

  .button-primary:hover {
    box-shadow: none;
    transform: none;
  }

  .text-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration-thickness: 1px;
  }

  .hero-visual {
    justify-content: flex-end;
  }

  .visual-frame {
    display: flex;
    width: min(100%, 460px);
    aspect-ratio: 4 / 5;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 32px;
    border: 0;
    border-radius: 0;
    background: var(--brand-navy);
    box-shadow: none;
  }

  .visual-frame::before {
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
  }

  .visual-frame::after {
    inset: auto;
    width: 70%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #10294f;
    box-shadow: none;
  }

  .visual-index,
  .visual-fields,
  .visual-name,
  .visual-symbol {
    position: relative;
    z-index: 2;
  }

  .visual-index {
    position: absolute;
    top: 42px;
    left: 44px;
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.22em;
  }

  .visual-symbol {
    width: 52%;
    height: auto;
    margin-top: 10px;
  }

  .visual-name {
    margin: 10px 0 0;
    color: white;
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 750;
    line-height: 1;
    letter-spacing: 0.2em;
    transform: translateX(0.1em);
  }

  .visual-fields {
    position: absolute;
    right: 44px;
    bottom: 42px;
    left: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.18em;
  }

  .visual-fields i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--brand-cyan);
  }

  .principle-strip {
    border: 0;
    background: var(--brand-navy);
  }

  .principle-strip-inner {
    min-height: 88px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.32em;
  }

  .section {
    padding-block: clamp(120px, 11vw, 168px);
  }

  .section-label {
    color: #536078;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
  }

  .section-heading h2,
  .values-heading h2,
  .vision h2 {
    margin-top: 28px;
    font-size: clamp(48px, 4.8vw, 68px);
    font-weight: 600;
    line-height: 1.34;
    letter-spacing: -0.055em;
  }

  .about-grid {
    grid-template-columns: minmax(240px, 0.7fr) minmax(520px, 1.3fr);
    align-items: start;
    gap: clamp(72px, 11vw, 160px);
    margin-top: clamp(72px, 8vw, 112px);
    padding-top: 48px;
  }

  .about-marker {
    align-items: center;
  }

  .about-marker > span {
    background: none;
    color: var(--brand-blue);
    font-size: clamp(88px, 9vw, 128px);
    font-weight: 700;
    -webkit-text-fill-color: currentColor;
  }

  .about-copy p {
    color: #4b5668;
    font-size: 16px;
    line-height: 2.05;
  }

  .about-copy .about-lead {
    margin-bottom: 34px;
    color: var(--brand-navy);
    font-size: clamp(28px, 2.6vw, 38px);
    font-weight: 600;
    line-height: 1.65;
  }

  .statement-grid {
    grid-template-columns: 1fr minmax(220px, 0.8fr) 1fr;
    margin-top: clamp(96px, 10vw, 152px);
    padding: 44px 0;
    border: solid var(--line);
    border-width: 1px 0;
    border-radius: 0;
    background: transparent;
  }

  .statement-grid p {
    font-size: clamp(18px, 2vw, 26px);
    font-weight: 650;
    letter-spacing: 0.16em;
  }

  .statement-connector::before {
    background: var(--line);
  }

  .statement-connector i {
    width: 9px;
    height: 9px;
    border-color: white;
    background: var(--brand-blue);
    box-shadow: none;
  }

  .work {
    background: var(--surface-soft);
  }

  .section-heading-row {
    align-items: end;
    flex-direction: row;
  }

  .section-intro {
    max-width: 390px;
    color: #4b5668;
    font-size: 15px;
    line-height: 1.9;
  }

  .work-list {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(48px, 7vw, 96px);
    margin-top: clamp(64px, 7vw, 96px);
  }

  .work-card {
    padding: 30px 0 0;
    border: solid var(--brand-navy);
    border-width: 2px 0 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .work-card:hover {
    border-color: var(--brand-blue);
    box-shadow: none;
    transform: none;
  }

  .card-number,
  .card-type {
    color: #5a6576;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
  }

  .card-type {
    color: var(--brand-blue-text);
  }

  .card-en {
    margin-top: clamp(64px, 7vw, 92px);
    color: var(--brand-blue-text);
    font-size: 10px;
  }

  .work-card h3 {
    margin: 14px 0 22px;
    font-size: clamp(34px, 3.4vw, 48px);
    font-weight: 600;
  }

  .work-card > p:last-child {
    max-width: 470px;
    color: #4b5668;
    font-size: 15px;
    line-height: 2;
  }

  .values {
    background: var(--brand-navy);
  }

  .values-glow {
    display: none;
  }

  .values::before {
    right: 8%;
    background: rgba(255, 255, 255, 0.09);
  }

  .section-label-light {
    color: rgba(255, 255, 255, 0.56);
  }

  .value-list {
    margin-top: clamp(72px, 8vw, 108px);
  }

  .value-item {
    grid-template-columns: 54px minmax(310px, 0.8fr) minmax(0, 1fr);
    gap: clamp(36px, 6vw, 90px);
    padding-block: clamp(38px, 4.2vw, 56px);
  }

  .value-en {
    font-size: 10px;
  }

  .value-item h3 {
    font-size: clamp(28px, 2.7vw, 38px);
    font-weight: 550;
    line-height: 1.55;
  }

  .value-description {
    font-size: 15px;
    line-height: 2;
  }

  .vision::before,
  .vision::after {
    display: none;
  }

  .vision-inner > img {
    width: 90px;
    height: 90px;
    margin-bottom: 40px;
  }

  .vision h2 {
    font-size: clamp(56px, 5.8vw, 80px);
  }

  .vision h2::after {
    width: 36px;
    height: 3px;
    margin-block: 40px;
    background: var(--brand-cyan);
  }

  .vision-inner > p:not(.section-label) {
    color: #4b5668;
    font-size: 16px;
    line-height: 2.1;
  }

  .text-link-large {
    margin-top: 40px;
  }

  .site-footer {
    padding: 56px 0 30px;
    background: var(--surface-soft);
  }

  .footer-main > p {
    color: #3e4a5d;
    letter-spacing: 0.24em;
  }
}

/* Mobile refinement */
@media (max-width: 800px) {
  :root {
    --header-height: 68px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 16px);
  }

  body {
    background: var(--brand-white);
    font-size: 15px;
    line-height: 1.8;
  }

  .container,
  .header-inner {
    width: min(calc(100% - 40px), var(--container));
  }

  .site-header {
    height: var(--header-height);
    border-bottom-color: var(--line);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
  }

  .site-header.is-scrolled {
    box-shadow: none;
  }

  .brand {
    gap: 10px;
  }

  .brand-symbol {
    width: 34px;
    height: 34px;
  }

  .wordmark {
    font-size: 18px;
    letter-spacing: 0.16em;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
  }

  .menu-button span {
    left: 12px;
    width: 18px;
    height: 1px;
  }

  .menu-ready .site-navigation {
    inset: var(--header-height) 0 auto;
    gap: 0;
    padding-inline: 20px;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0.99);
  }

  .menu-ready .site-navigation.is-open {
    max-height: calc(100svh - var(--header-height));
    padding-block: 12px 24px;
    border-color: var(--line);
  }

  .menu-ready .site-navigation a {
    min-height: 58px;
    padding-inline: 4px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
  }

  .menu-ready .site-navigation .nav-cta {
    justify-content: center;
    min-height: 52px;
    margin-top: 20px;
    padding-inline: 18px;
    border: 0;
    border-radius: 2px;
    background: var(--brand-navy);
    color: white;
  }

  .hero {
    min-height: 0;
    background: var(--surface-soft);
  }

  .hero::after {
    top: var(--header-height);
    background: var(--line);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 52px;
    min-height: 0;
    padding-block: 56px 64px;
  }

  .eyebrow {
    gap: 12px;
    color: #536078;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
  }

  .eyebrow::before {
    width: 28px;
    height: 1px;
    background: var(--brand-blue);
  }

  .hero-title {
    margin-top: 26px;
    color: var(--brand-navy);
    font-size: clamp(36px, 10vw, 46px);
    font-weight: 650;
    line-height: 1.32;
    letter-spacing: -0.06em;
  }

  .hero-title span {
    background: none;
    color: var(--brand-blue-text);
    -webkit-text-fill-color: currentColor;
  }

  .desktop-only {
    display: none;
  }

  .hero-description {
    margin-top: 26px;
    color: #3d485a;
    font-size: 14px;
    line-height: 1.95;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
  }

  .button {
    width: 100%;
    min-height: 54px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
  }

  .button-primary {
    box-shadow: none;
  }

  .hero-actions .text-link {
    justify-content: center;
    min-height: 46px;
    font-size: 12px;
    font-weight: 600;
  }

  .hero-visual {
    padding: 0;
  }

  .visual-frame {
    display: flex;
    width: min(100%, 420px);
    aspect-ratio: 4 / 5;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 24px;
    border: 0;
    border-radius: 0;
    background: var(--brand-navy);
  }

  .visual-frame::before {
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
  }

  .visual-frame::after {
    inset: auto;
    width: 72%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #10294f;
    box-shadow: none;
  }

  .visual-index,
  .visual-fields,
  .visual-name,
  .visual-symbol {
    position: relative;
    z-index: 2;
  }

  .visual-index {
    position: absolute;
    top: 32px;
    left: 34px;
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.2em;
  }

  .visual-symbol {
    width: 54%;
    height: auto;
  }

  .visual-name {
    margin: 8px 0 0;
    color: white;
    font-size: clamp(34px, 11vw, 48px);
    font-weight: 750;
    line-height: 1;
    letter-spacing: 0.18em;
    transform: translateX(0.09em);
  }

  .visual-fields {
    position: absolute;
    right: 32px;
    bottom: 32px;
    left: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 6px;
    font-weight: 700;
    letter-spacing: 0.14em;
  }

  .visual-fields i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--brand-cyan);
  }

  .principle-strip {
    border: 0;
    background: var(--brand-navy);
  }

  .principle-strip-inner {
    min-height: 64px;
    gap: 9px;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.7);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.12em;
  }

  .principle-strip-inner i {
    width: 4px;
    height: 4px;
  }

  .section {
    padding-block: 92px;
  }

  .section-label {
    gap: 10px;
    color: #536078;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
  }

  .section-heading h2,
  .values-heading h2,
  .vision h2 {
    margin-top: 22px;
    font-size: clamp(34px, 9.4vw, 42px);
    font-weight: 600;
    line-height: 1.42;
    letter-spacing: -0.055em;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    margin-top: 52px;
    padding-top: 28px;
    border-top-color: var(--line);
  }

  .about-marker {
    align-items: center;
    gap: 14px;
  }

  .about-marker > span {
    background: none;
    color: var(--brand-blue);
    font-size: 72px;
    font-weight: 700;
    -webkit-text-fill-color: currentColor;
  }

  .marker-line {
    height: 48px;
  }

  .about-marker small {
    font-size: 8px;
    line-height: 1.55;
    letter-spacing: 0.14em;
  }

  .about-copy {
    justify-self: stretch;
  }

  .about-copy .about-lead {
    margin-bottom: 26px;
    font-size: clamp(24px, 7vw, 30px);
    font-weight: 600;
    line-height: 1.65;
  }

  .about-copy p {
    color: #4b5668;
    font-size: 14px;
    line-height: 2;
  }

  .statement-grid {
    grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
    gap: 12px;
    margin-top: 68px;
    padding: 28px 0;
    border: solid var(--line);
    border-width: 1px 0;
    border-radius: 0;
    background: transparent;
  }

  .statement-grid p {
    font-size: clamp(11px, 3.4vw, 14px);
    font-weight: 650;
    line-height: 1.4;
    letter-spacing: 0.12em;
  }

  .statement-grid p:last-child {
    text-align: right;
  }

  .statement-connector {
    width: auto;
    height: auto;
    margin: 0;
    flex-direction: row;
  }

  .statement-connector::before {
    inset: auto 0;
    width: auto;
    height: 1px;
    background: var(--line);
  }

  .statement-connector i {
    width: 7px;
    height: 7px;
    border-width: 2px;
    border-color: white;
    box-shadow: none;
  }

  .section-heading-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .section-intro {
    max-width: none;
    margin: 0;
    color: #4b5668;
    font-size: 14px;
    line-height: 1.9;
  }

  .work {
    background: var(--surface-soft);
  }

  .work-list {
    grid-template-columns: 1fr;
    gap: 56px;
    margin-top: 56px;
  }

  .work-card {
    display: block;
    padding: 24px 0 0;
    border: solid var(--brand-navy);
    border-width: 2px 0 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .work-card:hover {
    border-color: var(--brand-navy);
    box-shadow: none;
    transform: none;
  }

  .work-card-top {
    flex-direction: row;
    justify-content: space-between;
  }

  .card-number,
  .card-type {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.18em;
  }

  .card-number {
    color: #5a6576;
  }

  .card-type {
    color: var(--brand-blue-text);
  }

  .card-en {
    margin-top: 46px;
    color: var(--brand-blue-text);
    font-size: 9px;
  }

  .work-card h3 {
    margin: 12px 0 18px;
    font-size: 34px;
    font-weight: 600;
  }

  .work-card > p:last-child {
    color: #4b5668;
    font-size: 14px;
    line-height: 2;
  }

  .values {
    background: var(--brand-navy);
  }

  .values::before,
  .values-glow {
    display: none;
  }

  .section-label-light {
    color: rgba(255, 255, 255, 0.56);
  }

  .value-list {
    margin-top: 54px;
  }

  .value-item {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 18px;
    padding-block: 32px;
  }

  .value-number {
    grid-column: 1;
    grid-row: 1;
    padding-top: 3px;
    font-size: 9px;
  }

  .value-item > div {
    grid-column: 2;
    grid-row: 1;
  }

  .value-en {
    margin-bottom: 10px;
    font-size: 9px;
  }

  .value-item h3 {
    font-size: clamp(25px, 7vw, 30px);
    font-weight: 550;
    line-height: 1.55;
  }

  .value-description {
    grid-column: 2;
    grid-row: 2;
    max-width: none;
    font-size: 14px;
    line-height: 1.95;
  }

  .vision::before,
  .vision::after {
    display: none;
  }

  .vision-inner > img {
    width: 72px;
    height: 72px;
    margin-bottom: 32px;
  }

  .vision h2 {
    font-size: clamp(34px, 9.4vw, 42px);
  }

  .vision h2::after {
    width: 30px;
    height: 3px;
    margin: 32px auto;
    background: var(--brand-cyan);
  }

  .vision-inner > p:not(.section-label) {
    color: #4b5668;
    font-size: 14px;
    line-height: 2;
  }

  .text-link-large {
    margin-top: 30px;
    font-size: 12px;
  }

  .site-footer {
    padding: 44px 0 24px;
    background: var(--surface-soft);
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .footer-main > p {
    gap: 9px;
    color: #3e4a5d;
    font-size: 7px;
    letter-spacing: 0.14em;
  }

  .footer-main > p i {
    width: 4px;
    height: 4px;
  }

  .footer-bottom {
    gap: 10px;
    margin-top: 32px;
    padding-top: 20px;
  }

  .footer-bottom p {
    font-size: 10px;
    line-height: 1.7;
  }

  .reveal-ready .reveal {
    transform: translateY(16px);
  }
}

@media (max-width: 360px) {
  .container,
  .header-inner {
    width: min(calc(100% - 32px), var(--container));
  }

  .wordmark {
    font-size: 17px;
  }

  .hero-title {
    font-size: 34px;
  }

  .visual-fields {
    gap: 8px;
    font-size: 5px;
  }

  .statement-grid {
    grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
  }
}
