:root {
  --bg: #070b18;
  --surface: #0b1020;
  --surface-2: #10172a;
  --ink: #f8fafc;
  --muted: #a8b3c7;
  --line: rgba(248, 250, 252, .12);
  --accent: #ff2d6d;
  --accent-2: #ff7a5c;
  --max: 1180px;
  --radius: 8px;
  color-scheme: dark;
}

html[data-theme="light"] {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-2: #edf2f8;
  --ink: #0b1020;
  --muted: #526176;
  --line: rgba(11, 16, 32, .12);
  --accent: #e91f5f;
  --accent-2: #ec694f;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Inter, Geist, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(rgba(248, 250, 252, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 250, 252, .035) 1px, transparent 1px),
    radial-gradient(circle at 76% 8%, rgba(255, 45, 109, .16), transparent 26%),
    var(--bg);
  background-size: 72px 72px, 72px 72px, auto, auto;
}
html[data-theme="light"] body {
  background:
    linear-gradient(rgba(11, 16, 32, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 16, 32, .055) 1px, transparent 1px),
    radial-gradient(circle at 76% 8%, rgba(233, 31, 95, .12), transparent 26%),
    #f7f9fc;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 4px; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(248, 250, 252, .08);
  background: rgba(7, 11, 24, .82);
  backdrop-filter: blur(18px);
}
.nav { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo-frame {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5px;
  border: 1px solid rgba(248, 250, 252, .18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 122, 92, .22), transparent 48%),
    rgba(248, 250, 252, .055);
  box-shadow: 0 14px 34px rgba(255, 45, 109, .12);
}
.brand-logo-wide, .brand-logo-icon, .brand-logo-icon-light { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-logo-wide { display: none; }
.brand-logo-icon { display: block; }
.brand-logo-icon-light { display: none; }
html[data-theme="light"] .brand-logo-icon { display: none; }
html[data-theme="light"] .brand-logo-icon-light { display: block; }
.brand-word {
  display: grid;
  gap: 2px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 840;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}
.brand-word span:last-child {
  color: rgba(248, 250, 252, .72);
  font-size: 11px;
  letter-spacing: .28em;
}
.nav-links { display: flex; align-items: center; gap: 26px; color: #dbe5f5; font-size: 14px; font-weight: 650; }
.nav-links a:not(.button) { color: rgba(248, 250, 252, .78); transition: color .2s ease; }
.nav-links a:not(.button):hover, .nav-links a[aria-current="page"] { color: var(--ink); }

.theme-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, .045);
  color: var(--ink);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.theme-toggle:hover { transform: translateY(-2px); border-color: rgba(248, 250, 252, .26); background: rgba(248, 250, 252, .08); }
.theme-toggle::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: inset -6px -5px 0 0 currentColor;
}

html[data-theme="light"] .theme-toggle::before {
  background: currentColor;
  box-shadow:
    0 -8px 0 -6px currentColor,
    0 8px 0 -6px currentColor,
    8px 0 0 -6px currentColor,
    -8px 0 0 -6px currentColor,
    6px 6px 0 -6px currentColor,
    -6px -6px 0 -6px currentColor,
    6px -6px 0 -6px currentColor,
    -6px 6px 0 -6px currentColor;
}

html[data-theme="light"] .site-header {
  border-bottom-color: rgba(11, 16, 32, .08);
  background: rgba(247, 249, 252, .82);
}
html[data-theme="light"] .brand-logo-frame,
html[data-theme="light"] .button,
html[data-theme="light"] .theme-toggle {
  background: rgba(255, 255, 255, .72);
}
html[data-theme="light"] .brand-word span:last-child,
html[data-theme="light"] .nav-links a:not(.button) {
  color: rgba(11, 16, 32, .68);
}
html[data-theme="light"] .button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
}
html[data-theme="light"] .lead {
  color: #3f4d63;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 250, 252, .045);
  color: var(--ink);
  font-weight: 740;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); border-color: rgba(248, 250, 252, .26); background: rgba(248, 250, 252, .08); }
.button.primary { border-color: transparent; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 18px 46px rgba(255, 45, 109, .24); }
.arrow { transition: transform .2s ease; }
.button:hover .arrow { transform: translateX(3px); }

.page-hero { min-height: 630px; display: grid; align-items: center; padding: 92px 0 76px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr); align-items: center; gap: 72px; }
.eyebrow { margin: 0 0 20px; color: var(--accent); font-size: 12px; font-weight: 820; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(52px, 7.4vw, 104px); line-height: .94; letter-spacing: 0; }
h2 { font-size: clamp(32px, 4.5vw, 58px); line-height: 1.03; letter-spacing: 0; }
h3 { font-size: 20px; letter-spacing: 0; }
.lead { max-width: 680px; margin-bottom: 32px; color: #c7d1e4; font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.signal-field { position: relative; aspect-ratio: 1; max-width: 480px; margin-left: auto; }
.signal-field::before, .signal-field::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(248, 250, 252, .13);
  border-radius: 50%;
  animation: orbit 16s linear infinite;
}
.signal-field::before { inset: 9%; border-top-color: var(--accent); border-right-color: rgba(255, 122, 92, .5); }
.signal-field::after { inset: 24%; animation-direction: reverse; animation-duration: 11s; border-bottom-color: var(--accent-2); }
.signal-core {
  position: absolute;
  inset: 35%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(248, 250, 252, .2);
  border-radius: var(--radius);
  background: rgba(11, 16, 32, .86);
  box-shadow: 0 0 70px rgba(255, 45, 109, .24);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  animation: breathe 3.2s ease-in-out infinite;
}
html[data-theme="light"] .signal-core,
html[data-theme="light"] .card,
html[data-theme="light"] .metric-row,
html[data-theme="light"] .timeline,
html[data-theme="light"] .value-grid,
html[data-theme="light"] .opening-list article,
html[data-theme="light"] .process-steps article {
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 22px 60px rgba(15, 23, 42, .08);
}
.signal {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 18px var(--accent);
  animation: drift 5s ease-in-out infinite;
}
.signal:nth-child(2) { left: 10%; top: 47%; }
.signal:nth-child(3) { right: 14%; top: 20%; animation-delay: -1.6s; }
.signal:nth-child(4) { right: 7%; bottom: 22%; animation-delay: -3.1s; }

.content-band { padding: 92px 0; border-top: 1px solid var(--line); background: rgba(11, 16, 32, .55); }
html[data-theme="light"] .content-band {
  background: rgba(255, 255, 255, .45);
}
.section-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 46px; }
.section-intro p { color: var(--muted); line-height: 1.72; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { min-height: 240px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(7, 11, 24, .64); }
.card-index { display: block; margin-bottom: 48px; color: var(--accent-2); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.card p { color: var(--muted); line-height: 1.68; }
.detail-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; padding: 92px 0; }
.detail-grid p { color: var(--muted); line-height: 1.72; }
.detail-list { border-top: 1px solid var(--line); }
.detail-row { display: grid; grid-template-columns: 170px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.detail-row b { font-size: 14px; }
.detail-row p { margin: 0; }
.contact-address { font-style: normal; }
.contact-address a { color: #ffd4df; font-weight: 760; word-break: break-word; }
.legal-details {
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
}
.legal-details h2 {
  max-width: 420px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
}

.about-hero {
  min-height: calc(100svh - 88px);
  display: grid;
  align-items: center;
  padding: 82px 0 66px;
  overflow: hidden;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 64px;
  align-items: center;
}
.about-copy { position: relative; z-index: 2; }
.photo-stack {
  position: relative;
  min-height: 640px;
  isolation: isolate;
}
.photo-stack::before {
  content: "";
  position: absolute;
  inset: 7% 0 10% 12%;
  border: 1px solid rgba(248, 250, 252, .12);
  background:
    linear-gradient(rgba(248, 250, 252, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 250, 252, .035) 1px, transparent 1px),
    rgba(11, 16, 32, .42);
  background-size: 42px 42px;
  z-index: -1;
}
html[data-theme="light"] .photo-stack::before,
html[data-theme="light"] .career-photo-grid::before {
  background:
    linear-gradient(rgba(11, 16, 32, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 16, 32, .055) 1px, transparent 1px),
    rgba(255, 255, 255, .48);
}
.photo-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(248, 250, 252, .15);
  border-radius: var(--radius);
  background: rgba(11, 16, 32, .72);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .34);
}
html[data-theme="light"] .photo-card,
html[data-theme="light"] .gallery-grid figure,
html[data-theme="light"] .career-photo-grid figure,
html[data-theme="light"] .culture-gallery figure {
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .1);
}
.photo-card img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04);
}
.photo-card-large {
  inset: 0 6% 14% 0;
  animation: revealRise .9s ease both, imageFloat 7s ease-in-out infinite;
}
.photo-card-large::after,
.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 11, 24, .42));
}
.photo-card-small {
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 1.04;
  animation: revealRise .9s .16s ease both, imageFloat 7s -2s ease-in-out infinite;
}
.pulse-panel {
  position: absolute;
  left: -22px;
  bottom: 52px;
  width: min(240px, 45%);
  padding: 18px;
  border: 1px solid rgba(248, 250, 252, .17);
  border-radius: var(--radius);
  background: rgba(7, 11, 24, .84);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .32);
  animation: revealRise .9s .28s ease both;
}
html[data-theme="light"] .pulse-panel {
  background: rgba(255, 255, 255, .86);
}
.pulse-panel span {
  display: block;
  height: 2px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), transparent);
  transform-origin: left;
  animation: scanLine 2.8s ease-in-out infinite;
}
.pulse-panel b {
  display: block;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: .14em;
  line-height: 2;
  text-transform: uppercase;
}
.section-intro.compact { align-items: start; margin-bottom: 28px; }
.about-metrics {
  padding: 0 0 92px;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 16, 32, .62);
  overflow: hidden;
}
.metric-row div {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 28px;
  border-right: 1px solid var(--line);
}
.metric-row div:last-child { border-right: 0; }
.metric-row b {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}
.metric-row span {
  color: var(--muted);
  font-weight: 740;
}
.motion-cards .card {
  position: relative;
  overflow: hidden;
}
.motion-cards .card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), transparent);
  transform: scaleX(.3);
  transform-origin: left;
  transition: transform .25s ease;
}
.motion-cards .card:hover::after { transform: scaleX(1); }
.people-section {
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 64px;
  align-items: center;
  padding: 102px 0;
}
.people-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.72;
}
.gallery-grid {
  display: grid;
  grid-template-columns: .82fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 16px;
}
.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(248, 250, 252, .14);
  border-radius: var(--radius);
  background: rgba(11, 16, 32, .62);
}
html[data-theme="light"] h3,
html[data-theme="light"] .pulse-panel b {
  color: var(--ink);
}
.gallery-grid .gallery-tall { grid-row: span 2; }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 11, 24, .62);
  overflow: hidden;
}
.timeline article {
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid var(--line);
}
.timeline article:last-child { border-right: 0; }
.timeline span {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.timeline p { color: var(--muted); line-height: 1.68; }

.career-hero {
  min-height: calc(100svh - 88px);
  display: grid;
  align-items: center;
  padding: 84px 0 76px;
  overflow: hidden;
}
.career-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(460px, 1.12fr);
  gap: 64px;
  align-items: center;
}
.career-hero-copy { position: relative; z-index: 2; }
.career-photo-grid {
  display: grid;
  grid-template-columns: .78fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 16px;
  position: relative;
}
.career-photo-grid::before {
  content: "";
  position: absolute;
  inset: -30px 42px 36px -34px;
  border: 1px solid rgba(248, 250, 252, .12);
  background:
    linear-gradient(rgba(248, 250, 252, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 250, 252, .035) 1px, transparent 1px),
    rgba(11, 16, 32, .36);
  background-size: 42px 42px;
  z-index: -1;
}
.career-photo-grid figure,
.culture-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(248, 250, 252, .14);
  border-radius: var(--radius);
  background: rgba(11, 16, 32, .62);
}
.career-photo-grid figure { animation: revealRise .8s ease both; }
.career-photo-grid figure:nth-child(2) { animation-delay: .12s; }
.career-photo-grid figure:nth-child(3) { animation-delay: .22s; }
.career-photo-grid img,
.culture-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.04);
}
.career-photo-grid figure::after,
.culture-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(7, 11, 24, .38));
}
.career-photo-main { grid-row: span 2; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 11, 24, .62);
  overflow: hidden;
}
.value-grid article {
  min-height: 270px;
  padding: 26px;
  border-right: 1px solid var(--line);
}
.value-grid article:last-child { border-right: 0; }
.value-grid span,
.opening-list span,
.process-steps span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.value-grid p,
.opening-list p,
.process-steps p,
.career-cta p { color: var(--muted); line-height: 1.68; }
.culture-section,
.process-section,
.career-cta { padding: 96px 0; }
.culture-gallery {
  display: grid;
  grid-template-columns: 1.25fr .85fr .9fr;
  grid-template-rows: 250px 250px;
  gap: 16px;
}
.culture-gallery figure:first-child { grid-row: span 2; }
.culture-gallery figure:last-child { grid-column: span 2; }
.opening-list {
  display: grid;
  gap: 14px;
}
.opening-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 11, 24, .62);
  transition: transform .2s ease, border-color .2s ease;
}
.opening-list article:hover {
  transform: translateY(-2px);
  border-color: rgba(248, 250, 252, .24);
}
.opening-list span { margin-bottom: 14px; color: var(--accent); }
.opening-list h3 { margin-bottom: 10px; font-size: clamp(24px, 3vw, 36px); }
.opening-list p { margin: 0; max-width: 720px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.process-steps article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 45, 109, .12), transparent 42%),
    rgba(11, 16, 32, .62);
}
.career-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin-bottom: 28px;
}
.career-cta h2 { margin-bottom: 18px; }
.career-cta p:not(.eyebrow) { max-width: 720px; margin-bottom: 0; }

.site-footer { padding: 42px 0; border-top: 1px solid var(--line); color: var(--muted); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 28px;
}
.site-footer b {
  display: block;
  margin-bottom: 13px;
  color: var(--ink);
}
.site-footer p { margin-bottom: 10px; color: var(--muted); line-height: 1.64; }
.site-footer a {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  transition: color .2s ease;
}
.site-footer a:hover { color: var(--ink); }
.site-footer .brand { margin-bottom: 18px; }
.site-footer .muted { color: var(--muted); }

@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes breathe { 50% { transform: scale(1.05); box-shadow: 0 0 90px rgba(255, 45, 109, .34); } }
@keyframes drift { 50% { transform: translate(18px, -14px) scale(1.6); } }
@keyframes revealRise { from { opacity: 0; transform: translateY(24px) scale(.985); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes imageFloat { 50% { transform: translateY(-10px); } }
@keyframes scanLine { 0%, 100% { transform: scaleX(.28); opacity: .55; } 50% { transform: scaleX(1); opacity: 1; } }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .page-hero { min-height: auto; }
  .hero-grid, .section-intro, .detail-grid, .about-hero-grid, .people-section, .career-hero-grid, .career-cta { grid-template-columns: 1fr; gap: 46px; }
  .signal-field { width: min(100%, 430px); margin: 0 auto; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .card-index { margin-bottom: 32px; }
  .about-hero { min-height: auto; }
  .photo-stack { min-height: 560px; }
  .career-hero { min-height: auto; }
  .career-photo-grid { grid-template-rows: 220px 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .metric-row, .timeline, .value-grid, .process-steps { grid-template-columns: repeat(2, 1fr); }
  .metric-row div:nth-child(2) { border-right: 0; }
  .metric-row div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .timeline article:nth-child(2) { border-right: 0; }
  .timeline article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .value-grid article:nth-child(2) { border-right: 0; }
  .value-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .culture-gallery { grid-template-columns: 1fr 1fr; }
  .culture-gallery figure:first-child,
  .culture-gallery figure:last-child { grid-row: auto; grid-column: auto; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav { height: 70px; }
  .brand-logo-frame { width: 54px; height: 54px; padding: 4px; }
  .brand-word { display: none; }
  .page-hero { padding: 70px 0 58px; }
  h1 { font-size: clamp(48px, 16vw, 72px); }
  .hero-actions .button { width: 100%; }
  .signal-field { max-width: 330px; }
  .content-band, .detail-grid { padding: 64px 0; }
  .detail-row { grid-template-columns: 1fr; gap: 8px; }
  .about-hero { padding: 70px 0 56px; }
  .career-hero { padding: 70px 0 56px; }
  .photo-stack { min-height: 460px; }
  .photo-card-large { inset: 0 0 18% 0; }
  .photo-card-small { width: 54%; }
  .pulse-panel { left: 14px; bottom: 30px; width: 190px; }
  .about-metrics, .people-section { padding: 64px 0; }
  .culture-section,
  .process-section,
  .career-cta { padding: 64px 0; }
  .metric-row, .timeline, .gallery-grid, .career-photo-grid, .culture-gallery, .value-grid, .process-steps, .opening-list article { grid-template-columns: 1fr; }
  .career-photo-grid,
  .culture-gallery { grid-template-rows: none; }
  .career-photo-grid figure,
  .culture-gallery figure { min-height: 240px; }
  .career-photo-main { grid-row: auto; min-height: 330px; }
  .metric-row div,
  .timeline article,
  .value-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .metric-row div:last-child,
  .timeline article:last-child,
  .value-grid article:last-child { border-bottom: 0; }
  .gallery-grid { grid-template-rows: none; }
  .gallery-grid figure { min-height: 240px; }
  .gallery-grid .gallery-tall { grid-row: auto; min-height: 320px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
