:root {
  --bg: #030303;
  --fg: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --faint: rgba(255, 255, 255, 0.12);
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.18);
  --accent: #9dd5ff;
  --accent-strong: #d5ecff;
  --accent-soft: rgba(157, 213, 255, 0.18);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
  --max: 1180px;
  --header-h: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--fg);
  background:
    radial-gradient(circle at 20% 10%, rgba(100,150,190,0.08), transparent 26%),
    radial-gradient(circle at 90% 60%, rgba(255,255,255,0.05), transparent 30%),
    #030303;
  min-height: 100vh;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.12;
  z-index: 3;
  background-image:
    linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

#field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.16;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 70px);
  transition: background 220ms ease, backdrop-filter 220ms ease, border-color 220ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(18px);
  border-color: rgba(157,213,255,0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(157,213,255,0.4);
  border-radius: 50%;
  font-size: 13px;
  letter-spacing: -0.07em;
  box-shadow: 0 0 24px rgba(157,213,255,0.12), inset 0 0 22px rgba(157,213,255,0.08);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.desktop-nav a { position: relative; padding: 7px 0; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-strong);
  box-shadow: 0 0 14px rgba(157,213,255,0.4);
  transition: width 180ms ease;
}
.desktop-nav a:hover::after { width: 100%; }

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: white;
  padding: 10px;
  cursor: pointer;
}
.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}
.menu-open .menu-button span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-button span:nth-child(2) { opacity: 0; }
.menu-open .menu-button span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 15;
  background: rgba(0,0,0,0.94);
  transform: translateX(100%);
  transition: transform 240ms ease;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 22px;
  padding: 100px 34px;
}
.mobile-panel.is-open { transform: translateX(0); }
.mobile-panel a {
  font-size: clamp(28px, 8vw, 58px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.06em;
}

main { position: relative; z-index: 1; }
.section-panel {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) clamp(22px, 5vw, 70px) 74px;
  border-bottom: 1px solid rgba(255,255,255,0.075);
}
.section-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.38) 44%, rgba(0,0,0,0.72) 100%);
  z-index: -1;
}

.hero { align-items: end; }
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 58% 44%, rgba(35,49,69,0.75), transparent 25%),
    radial-gradient(circle at 68% 36%, rgba(255,255,255,0.08), transparent 16%),
    #030405;
}

.organic-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.98;
  filter: contrast(1.08) saturate(0.92);
}

.digital-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(157,213,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157,213,255,0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.22;
  mask-image: radial-gradient(circle at 58% 46%, black 0%, black 36%, transparent 82%);
}

.scanline {
  position: absolute;
  inset: -20% 0 auto 0;
  height: 24%;
  background: linear-gradient(to bottom, rgba(157,213,255,0), rgba(157,213,255,0.07), rgba(157,213,255,0));
  mix-blend-mode: screen;
  animation: scan 7s linear infinite;
  pointer-events: none;
}
@keyframes scan {
  from { transform: translateY(0); }
  to { transform: translateY(480%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.16) 0%, rgba(0,0,0,0.12) 28%, rgba(0,0,0,0.58) 68%, rgba(0,0,0,0.88) 100%),
    radial-gradient(circle at 58% 44%, rgba(157,213,255,0.08), transparent 20%),
    linear-gradient(115deg, rgba(255,255,255,0.05), transparent 34%);
}
.hero-tagline {
  position: absolute;
  top: calc(var(--header-h) + 24px);
  right: clamp(22px, 5vw, 70px);
  z-index: 1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}

.hud-panel {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 8px;
  min-width: 190px;
  padding: 14px 16px;
  border: 1px solid rgba(157,213,255,0.18);
  background: linear-gradient(180deg, rgba(7,12,18,0.48), rgba(7,12,18,0.12));
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 22px rgba(157,213,255,0.05), 0 0 30px rgba(0,0,0,0.18);
}
.hud-panel span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(213,236,255,0.8);
}
.hud-panel-left {
  left: clamp(22px, 5vw, 70px);
  top: calc(var(--header-h) + 44px);
}
.hud-panel-right {
  right: clamp(22px, 5vw, 70px);
  bottom: 100px;
}
.hud-panel::before,
.hud-panel::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: rgba(157,213,255,0.42);
}
.hud-panel::before {
  left: -1px; top: -1px;
  border-left: 1px solid; border-top: 1px solid;
}
.hud-panel::after {
  right: -1px; bottom: -1px;
  border-right: 1px solid; border-bottom: 1px solid;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: auto -12vw -22vh 34vw;
  height: 58vh;
  border: 1px solid rgba(157,213,255,0.12);
  border-radius: 50% 50% 0 0;
  transform: rotate(-5deg);
  filter: blur(0.2px);
}
.orb {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(157,213,255,0.14);
  box-shadow: inset 0 0 45px rgba(157,213,255,0.04), 0 0 80px rgba(157,213,255,0.07);
  pointer-events: none;
}
.orb-one { width: min(48vw, 640px); aspect-ratio: 1; right: -12vw; top: 12vh; }
.orb-two { width: min(24vw, 320px); aspect-ratio: 1; right: 26vw; top: 24vh; opacity: 0.32; }
.grid-line {
  position: absolute;
  left: 52%;
  bottom: -20vh;
  width: 1px;
  height: 78vh;
  background: linear-gradient(to bottom, transparent, rgba(157,213,255,0.36), transparent);
  transform: rotate(18deg);
}

.section-content {
  max-width: 650px;
  width: min(100%, var(--max));
  margin: 0 auto;
}
.section-content.wide { max-width: var(--max); }
.hero-content { margin-left: max(0px, calc((100vw - var(--max)) / 2)); }

.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  margin-bottom: 22px;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 0.91;
  letter-spacing: -0.075em;
}
h1 { font-size: clamp(56px, 9vw, 142px); max-width: 980px; }
h2 { font-size: clamp(42px, 6.3vw, 92px); max-width: 950px; }
h3 { font-size: 22px; margin-bottom: 14px; letter-spacing: -0.04em; }
.lead, .section-content p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
  max-width: 660px;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 170ms ease, background 170ms ease, color 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}
.button.ghost {
  position: relative;
  border: 2px solid rgba(213,236,255,0.84);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(157,213,255,0.08);
}
.button.ghost::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 0;
  background: #fff;
  transition: height 170ms ease;
  z-index: -1;
}
.button.ghost:hover {
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(157,213,255,0.22);
}
.button.ghost:hover::before { height: 100%; }
.button.text { color: rgba(255,255,255,0.86); padding-inline: 0; }
.button.text:hover { color: #fff; transform: translateY(-2px); }

.scroll-cue {
  position: absolute;
  right: clamp(22px, 5vw, 70px);
  bottom: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.68);
}
.scroll-cue::after {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, #fff, transparent);
  animation: cue 1.8s infinite;
}
@keyframes cue {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(10px); opacity: 1; }
}

.split-section {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 540px);
  align-items: center;
  gap: clamp(30px, 7vw, 110px);
  max-width: none;
}
.split-section .section-content { margin: 0; justify-self: start; }
.split-section.reverse { grid-template-columns: minmax(340px, 540px) minmax(0, 1fr); }
.split-section.reverse .section-content { grid-column: 2; }
.split-section.reverse .section-visual { grid-column: 1; grid-row: 1; }

.section-visual {
  justify-self: center;
  width: min(100%, 520px);
  aspect-ratio: 1;
  position: relative;
}
.intelligence-core { display: grid; place-items: center; }
.ring {
  position: absolute;
  border: 1px solid rgba(157,213,255,0.18);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}
.ring-a { width: 92%; height: 92%; border-left-color: rgba(213,236,255,0.72); }
.ring-b { width: 68%; height: 68%; animation-duration: 12s; animation-direction: reverse; border-top-color: rgba(213,236,255,0.78); }
.ring-c { width: 42%; height: 42%; animation-duration: 8s; border-right-color: rgba(213,236,255,0.9); }
.core-dot {
  width: 18px; height: 18px; border-radius: 50%; background: #fff;
  box-shadow: 0 0 46px rgba(157,213,255,0.68);
}
@keyframes spin { to { transform: rotate(360deg); } }

.index-card {
  aspect-ratio: auto;
  min-height: 430px;
  border: 1px solid rgba(157,213,255,0.16);
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(30,60,86,0.08));
  padding: 22px;
  box-shadow: var(--shadow), inset 0 0 34px rgba(157,213,255,0.04);
  backdrop-filter: blur(18px);
}
.index-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(157,213,255,0.14);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.index-header strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}
.index-header strong::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 15px rgba(157,213,255,0.9);
}
.index-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0 8px;
}
.index-metrics div {
  padding: 10px 12px;
  border: 1px solid rgba(157,213,255,0.12);
  background: rgba(10,18,28,0.34);
}
.index-metrics small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(213,236,255,0.55);
  margin-bottom: 6px;
}
.index-metrics b {
  font-size: 14px;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.95);
}
.rank-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 24px 2px;
  border-bottom: 1px solid rgba(157,213,255,0.08);
  color: rgba(255,255,255,0.74);
}
.rank-row b { font-size: 26px; letter-spacing: -0.06em; color: rgba(255,255,255,0.96); }
.rank-row span { font-size: clamp(18px, 2vw, 26px); font-weight: 800; letter-spacing: -0.05em; }
.rank-row em { font-style: normal; font-weight: 900; }
.rank-row.active {
  color: #fff;
  background: rgba(157,213,255,0.10);
  box-shadow: inset 0 0 24px rgba(157,213,255,0.08);
  margin-inline: -10px;
  padding-inline: 12px;
}

.stack-diagram {
  aspect-ratio: auto;
  display: grid;
  gap: 14px;
}
.stack-diagram div {
  min-height: 94px;
  border: 1px solid rgba(157,213,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(20,32,44,0.16));
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(14px);
}
.stack-diagram span {
  font-size: 13px;
  font-weight: 900;
  color: rgba(255,255,255,0.55);
}
.stack-diagram strong {
  font-size: clamp(18px, 2vw, 28px);
  text-transform: uppercase;
  letter-spacing: -0.055em;
  text-align: right;
}

.cards-section { align-items: center; }
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}
.case-grid article {
  min-height: 300px;
  border: 1px solid rgba(157,213,255,0.12);
  background: linear-gradient(155deg, rgba(255,255,255,0.09), rgba(20,32,44,0.08));
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.case-grid article:hover {
  transform: translateY(-8px);
  background: linear-gradient(155deg, rgba(255,255,255,0.14), rgba(28,44,62,0.14));
  border-color: rgba(157,213,255,0.22);
}
.case-grid span {
  display: block;
  margin-bottom: auto;
  color: rgba(255,255,255,0.52);
  font-size: 13px;
  font-weight: 900;
}
.case-grid p { font-size: 15px !important; line-height: 1.6 !important; }

.final-section { align-items: center; text-align: left; }
.final-section .section-content { max-width: 850px; }

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hud-panel-right { display: none; }
}

@media (max-width: 920px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .section-panel { min-height: 92vh; padding-bottom: 52px; }
  .split-section, .split-section.reverse {
    grid-template-columns: 1fr;
    align-items: end;
    gap: 34px;
  }
  .split-section.reverse .section-content,
  .split-section.reverse .section-visual {
    grid-column: auto;
    grid-row: auto;
  }
  .section-visual {
    width: min(100%, 390px);
    opacity: 0.82;
    order: -1;
  }
  .index-card { min-height: auto; }
  .case-grid { grid-template-columns: 1fr; }
  .case-grid article { min-height: 220px; }
  .scroll-cue { display: none; }
  .hero-tagline {
    top: calc(var(--header-h) + 18px);
    right: 18px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }
  .hud-panel-left {
    top: auto;
    bottom: 96px;
    left: 18px;
  }
}

@media (max-width: 560px) {
  :root { --header-h: 66px; }
  .site-header { padding-inline: 18px; }
  .brand span:last-child { font-size: 15px; }
  .brand-mark { width: 34px; height: 34px; }
  .section-panel { padding-inline: 18px; }
  h1 { font-size: clamp(48px, 17vw, 78px); }
  h2 { font-size: clamp(36px, 13vw, 58px); }
  .lead, .section-content p:not(.eyebrow) { font-size: 15px; }
  .button { width: 100%; }
  .button.text { justify-content: flex-start; width: auto; }
  .rank-row { grid-template-columns: 44px 1fr; }
  .rank-row em { grid-column: 2; }
  .stack-diagram div { align-items: flex-start; flex-direction: column; }
  .stack-diagram strong { text-align: left; }
  .hud-panel {
    min-width: 0;
    max-width: calc(100vw - 36px);
    padding: 10px 12px;
  }
  .hud-panel span { font-size: 9px; letter-spacing: 0.12em; }
  .index-metrics { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* AItamins venture-company refinements */
.venture-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.venture-grid article {
  min-height: 330px;
}

.project-card .rank-row {
  grid-template-columns: 52px 1fr minmax(74px, auto);
}

.project-card .rank-row em {
  color: rgba(213,236,255,0.72);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 1120px) {
  .venture-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .venture-grid {
    grid-template-columns: 1fr;
  }
}


/* Clean venture revision */
.venture-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-card .rank-row em {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(213,236,255,0.72);
}

@media (max-width: 1100px) {
  .venture-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .venture-grid {
    grid-template-columns: 1fr;
  }
}


/* Revision v2: quieter typography, cleaner wordmark, contact split */
.brand {
  gap: 0;
}

.brand-word {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 18px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.94);
}

.brand-ai {
  font-weight: 900;
  color: #ffffff;
}

.brand-rest {
  font-weight: 760;
  color: rgba(255, 255, 255, 0.82);
}

.brand-mark {
  display: none;
}

.hero h1,
.hero-content h1,
#hero-title {
  font-size: clamp(42px, 6.25vw, 88px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.065em !important;
}

.section-content h2,
#philosophy-title,
#focus-title,
#system-title,
#approach-title,
#contact-title {
  font-size: clamp(30px, 4.1vw, 56px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.055em !important;
}

.section-content p,
.lead {
  max-width: 760px;
}

.section-content p strong {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(720px, 100%);
  margin: 34px auto 10px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 122px;
  padding: 24px;
  border: 1px solid rgba(157, 213, 255, 0.20);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(157, 213, 255, 0.10), rgba(255,255,255,0.035)),
    rgba(5, 9, 14, 0.42);
  color: #fff;
  text-decoration: none;
  justify-content: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(157, 213, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(157, 213, 255, 0.16), rgba(255,255,255,0.05)),
    rgba(5, 9, 14, 0.56);
}

.contact-card span {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(213, 236, 255, 0.62);
}

.contact-card strong {
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: -0.035em;
  color: rgba(255, 255, 255, 0.94);
}

.final-section .cta-row {
  justify-content: center;
  margin-top: 22px;
}

@media (max-width: 760px) {
  .hero h1,
  .hero-content h1,
  #hero-title {
    font-size: clamp(38px, 12vw, 58px) !important;
    letter-spacing: -0.058em !important;
  }

  .section-content h2,
  #philosophy-title,
  #focus-title,
  #system-title,
  #approach-title,
  #contact-title {
    font-size: clamp(30px, 9vw, 44px) !important;
  }

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


/* Multilingual v3 */
html:lang(ko),
.lang-ko {
  font-family: Inter, "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html:lang(zh-CN),
.lang-zh {
  font-family: Inter, "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid rgba(157, 213, 255, 0.16);
  border-radius: 999px;
  background: rgba(4, 8, 13, 0.36);
  backdrop-filter: blur(16px);
}

.language-switch a,
.mobile-language-switch a {
  color: rgba(221, 238, 255, 0.58);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 7px 10px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.language-switch a:hover,
.language-switch a.active,
.mobile-language-switch a:hover,
.mobile-language-switch a.active {
  color: rgba(255,255,255,0.96);
  background: rgba(157, 213, 255, 0.12);
}

.mobile-language-switch {
  display: flex;
  gap: 6px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Hero: calmer cross-border map after moving organic script to Philosophy */
.hero-market-map {
  overflow: hidden;
}

.market-node {
  position: absolute;
  z-index: 3;
  width: clamp(72px, 8vw, 118px);
  height: clamp(72px, 8vw, 118px);
  border: 1px solid rgba(157, 213, 255, 0.28);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(235, 247, 255, 0.88);
  font-size: clamp(13px, 1.25vw, 18px);
  font-weight: 800;
  letter-spacing: 0.12em;
  background:
    radial-gradient(circle at 50% 50%, rgba(157, 213, 255, 0.18), rgba(157, 213, 255, 0.035) 58%, transparent 72%),
    rgba(4, 8, 12, 0.32);
  box-shadow:
    0 0 42px rgba(119, 187, 255, 0.16),
    inset 0 0 32px rgba(157, 213, 255, 0.08);
  backdrop-filter: blur(8px);
}

.market-node::before,
.market-node::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  inset: -12px;
  border: 1px solid rgba(157, 213, 255, 0.10);
  animation: nodePulse 5.5s ease-in-out infinite;
}

.market-node::after {
  inset: -26px;
  opacity: 0.52;
  animation-delay: 1.3s;
}

.node-cn { top: 25%; right: 24%; }
.node-kr { top: 49%; right: 34%; }
.node-global { bottom: 18%; right: 15%; }

.market-beam {
  position: absolute;
  z-index: 2;
  height: 1px;
  width: 30vw;
  max-width: 480px;
  min-width: 220px;
  right: 20%;
  top: 42%;
  transform-origin: right center;
  background: linear-gradient(90deg, transparent, rgba(157, 213, 255, 0.50), transparent);
  opacity: 0.52;
  filter: drop-shadow(0 0 8px rgba(157, 213, 255, 0.36));
}

.beam-a { transform: rotate(-19deg); }
.beam-b { transform: rotate(8deg); top: 50%; right: 25%; }
.beam-c { transform: rotate(31deg); top: 60%; right: 20%; }

@keyframes nodePulse {
  0%, 100% { transform: scale(0.94); opacity: 0.28; }
  50% { transform: scale(1.08); opacity: 0.72; }
}

/* Philosophy now owns the scripted evolution background */
.philosophy-evolution {
  position: relative;
  overflow: hidden;
}

.evolution-visual {
  position: relative;
  min-height: min(64vh, 620px);
  border: 1px solid rgba(157, 213, 255, 0.14);
  border-radius: 34px;
  background: radial-gradient(circle at center, rgba(118, 184, 255, 0.10), rgba(2, 5, 8, 0.20) 55%, rgba(2, 5, 8, 0.50));
  box-shadow: inset 0 0 80px rgba(116, 195, 255, 0.06), 0 24px 80px rgba(0,0,0,0.26);
  overflow: hidden;
}

.section-organic-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.95;
}

.section-grid,
.section-scanline,
.section-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.section-grid {
  opacity: 0.42;
}

.section-scanline {
  opacity: 0.38;
}

.section-overlay {
  background:
    radial-gradient(circle at 50% 48%, rgba(157, 213, 255, 0.04), transparent 44%),
    linear-gradient(90deg, rgba(2, 4, 8, 0.46), transparent 40%, rgba(2, 4, 8, 0.28));
}

.lang-ko .section-content p,
.lang-zh .section-content p {
  line-height: 1.82;
  word-break: keep-all;
}

.lang-zh .section-content p {
  letter-spacing: 0.01em;
}

@media (max-width: 920px) {
  .language-switch {
    display: none;
  }

  .node-cn { top: 22%; right: 16%; }
  .node-kr { top: 45%; right: 31%; }
  .node-global { bottom: 19%; right: 10%; }

  .market-beam {
    right: 11%;
    width: 54vw;
  }

  .evolution-visual {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .market-node {
    opacity: 0.75;
  }

  .node-cn { top: 19%; right: 10%; }
  .node-kr { top: 38%; right: 28%; }
  .node-global { bottom: 22%; right: 7%; }

  .market-beam {
    opacity: 0.35;
  }

  .evolution-visual {
    min-height: 360px;
    border-radius: 24px;
  }
}


/* Final v5: Chinese card containment + Korean contact single-line refinement */
.lang-zh .case-grid article {
  overflow: hidden;
}

.lang-zh .case-grid article p {
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.62;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.lang-zh .case-grid article h3 {
  font-size: clamp(21px, 2vw, 28px);
}

.lang-ko #contact .section-content > p {
  max-width: none;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .lang-ko #contact .section-content > p {
    white-space: normal;
  }
}
