@font-face {
  font-family: "N27";
  src: url("../fonts/n27/n27-regular-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "N27";
  src: url("../fonts/n27/n27-medium-webfont.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "N27";
  src: url("../fonts/n27/n27-bold-webfont.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #030817;
  --midnight: #071226;
  --panel: #0b1830;
  --panel-2: #10213d;
  --line: rgba(176, 188, 255, .2);
  --text: #f6f7fb;
  --fog: #b8c3d8;
  --lime: #caff4f;
  --mint: #55dfc3;
  --violet: #aaa5ff;
  --coral: #ff7e86;
  --shell: min(1320px, calc(100vw - 48px));
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: "N27", Inter, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

* {
  box-sizing: border-box;
}

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

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

.site-shell {
  width: var(--shell);
  margin-inline: auto;
}

.nav-wrap {
  position: sticky;
  top: 12px;
  z-index: 50;
  display: grid;
  grid-template-columns: 92px 1fr 210px;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
  padding: 9px 14px;
  border: 1px solid rgba(3, 8, 23, .18);
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(22px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.brand-lockup img {
  height: 34px;
  width: auto;
  filter: none;
  transition: filter .25s ease;
}

.partner-lockup {
  justify-self: end;
}

.partner-lockup img {
  max-height: 34px;
  width: auto;
  filter: invert(1);
  transition: filter .25s ease;
}

.mobile-nav-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  align-content: center;
  justify-items: center;
  gap: 5px;
  border: 1px solid rgba(3, 8, 23, .22);
  background: rgba(255, 255, 255, .12);
  color: #020817;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.mobile-nav-toggle:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

.nav-wrap.nav-scrolled .mobile-nav-toggle {
  border-color: rgba(246, 247, 251, .2);
  background: rgba(246, 247, 251, .06);
  color: var(--paper);
}

.nav-wrap.mobile-menu-open .mobile-nav-toggle {
  border-color: rgba(202, 255, 79, .56);
  background: var(--lime);
  color: #020817;
}

.mobile-nav-toggle .burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: opacity .2s ease, transform .2s ease;
}

.nav-wrap.mobile-menu-open .mobile-nav-toggle .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-wrap.mobile-menu-open .mobile-nav-toggle .burger-line:nth-child(2) {
  opacity: 0;
}

.nav-wrap.mobile-menu-open .mobile-nav-toggle .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 1.7vw, 24px);
  color: rgba(3, 8, 23, .78);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .25s ease;
}

.nav-wrap.nav-scrolled {
  top: 18px;
  grid-template-columns: 112px 1fr 255px;
  gap: 30px;
  padding: 13px 18px;
}

.nav-wrap.nav-scrolled .brand-lockup img {
  height: 43px;
  filter: invert(1);
}

.nav-wrap.nav-scrolled .partner-lockup img {
  max-height: 41px;
  filter: none;
}

.nav-links a {
  transition: color .2s ease;
}

.nav-links a:hover {
  color: #000;
}

.nav-wrap.nav-scrolled {
  border-color: var(--line);
  background: rgba(3, 8, 23, .86);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.nav-wrap.nav-scrolled .nav-links {
  color: var(--fog);
}

.nav-wrap.nav-scrolled .nav-links a:hover {
  color: var(--mint);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  margin-top: -80px;
  padding: 170px 0 48px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(115deg, rgba(202, 255, 79, .82), rgba(85, 223, 195, .82) 32%, rgba(170, 165, 255, .78) 66%, rgba(255, 126, 134, .84)),
    url("../images/ikim-identity-gradient.png");
  background-size: cover;
  background-position: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 255, 255, .42), transparent 28%),
    radial-gradient(circle at 16% 85%, rgba(255, 255, 255, .28), transparent 30%);
  pointer-events: none;
}

.wave-layer {
  position: absolute;
  left: -12vw;
  right: -12vw;
  z-index: -2;
  height: 34vh;
  border-radius: 45% 55% 48% 52%;
  filter: blur(34px);
  opacity: .34;
  transform-origin: center;
  animation: wave-drift 18s ease-in-out infinite alternate;
}

.wave-layer-a {
  top: 18%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .18) 14%, rgba(3, 8, 23, .2) 46%, rgba(255, 255, 255, .2) 72%, transparent 100%);
}

.wave-layer-b {
  top: 42%;
  background: linear-gradient(90deg, transparent 0%, rgba(3, 8, 23, .18) 20%, rgba(255, 255, 255, .22) 54%, rgba(3, 8, 23, .12) 82%, transparent 100%);
  animation-duration: 23s;
  animation-direction: alternate-reverse;
}

.wave-layer-c {
  top: 62%;
  height: 26vh;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .18) 24%, rgba(3, 8, 23, .12) 58%, rgba(255, 255, 255, .16) 80%, transparent 100%);
  animation-duration: 28s;
}

@keyframes wave-drift {
  0% {
    transform: translate3d(-5%, -2%, 0) rotate(-3deg) scaleX(1);
  }
  100% {
    transform: translate3d(5%, 3%, 0) rotate(3deg) scaleX(1.08);
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .78fr);
  gap: clamp(36px, 5.6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 250px);
}

.hero-explore {
  position: absolute;
  left: 50%;
  bottom: clamp(22px, 3vw, 40px);
  z-index: 3;
  display: inline-grid;
  justify-items: center;
  gap: 10px;
  color: #020817;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-explore i {
  width: 18px;
  height: 34px;
  border: 1.5px solid rgba(3, 8, 23, .78);
  border-radius: 999px;
  position: relative;
}

.hero-explore i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #020817;
  transform: translateX(-50%);
  animation: explore-down 1.45s ease-in-out infinite;
}

@keyframes explore-down {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 14px);
  }
}

.hero-copy {
  max-width: 840px;
}

.kicker {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-section .kicker {
  color: rgba(3, 8, 23, .82);
}

.hero-copy h1,
.section-intro h2,
.section-headline-row h2,
.story-copy h2,
.contact-band h2 {
  margin: 0;
  color: white;
  font-size: clamp(58px, 8.3vw, 132px);
  font-weight: 800;
  line-height: .88;
  letter-spacing: 0;
}

.hero-section .hero-copy h1 {
  color: #020817;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .18);
}

.hero-lede,
.section-intro p,
.section-headline-row p,
.story-copy p {
  max-width: 780px;
  margin: 28px 0 0;
  color: rgba(246, 247, 251, .78);
  font-size: clamp(14px, 1.16vw, 18px);
  line-height: 1.65;
}

.hero-section .hero-lede {
  color: rgba(3, 8, 23, .76);
  max-width: 680px;
  font-size: clamp(12px, .9vw, 15px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button-primary,
.button-secondary,
.paper-card a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--lime);
  background: var(--lime);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.button-secondary,
.paper-card a {
  border-color: rgba(246, 247, 251, .22);
  background: rgba(246, 247, 251, .04);
  color: var(--mint);
}

.button-primary:hover,
.button-secondary:hover,
.paper-card a:hover {
  transform: translateY(-2px);
}

.hero-section .button-primary {
  border-color: #020817;
  background: #020817;
  color: white;
}

.hero-section .button-secondary {
  border-color: rgba(3, 8, 23, .32);
  background: rgba(255, 255, 255, .18);
  color: #020817;
}

.signal-row span,
.paper-card span,
.repo-grid span,
.team-grid p,
.contact-grid span {
  display: block;
  color: var(--fog);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: clamp(520px, 56vw, 720px);
  display: grid;
  align-items: center;
  justify-items: end;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 11% 0 8% 12%;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(3, 8, 23, .24), transparent 62%);
  filter: blur(28px);
}

.hero-visual > img {
  width: min(100%, 560px);
  max-height: 82vh;
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 36px 70px rgba(3, 8, 23, .34));
}

.section-block,
.split-story,
.contact-band {
  padding: clamp(108px, 12vw, 176px) 0;
  border-bottom: 1px solid var(--line);
}

.section-intro {
  max-width: 1020px;
}

.section-intro.compact {
  max-width: 900px;
}

.section-intro p + p {
  margin-top: 18px;
}

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

.section-headline-row h2,
.section-intro h2,
.story-copy h2,
.contact-band h2 {
  font-size: clamp(48px, 5.5vw, 86px);
  line-height: .96;
}

.mission-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.mission-card {
  min-height: 340px;
  padding: clamp(32px, 4.6vw, 58px);
  color: var(--ink);
}

.mission-card span {
  font-weight: 800;
}

.mission-card h3 {
  margin: 84px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 800;
  line-height: .92;
}

.mission-card p {
  max-width: 500px;
  margin: 18px 0 0;
  color: rgba(3, 8, 23, .72);
  font-size: 17px;
  line-height: 1.45;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, .72fr);
  gap: clamp(56px, 8vw, 118px);
  align-items: start;
}

.about-copy {
  position: sticky;
  top: 130px;
}

.mission-list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 14px;
  padding-left: 34px;
}

.mission-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--lime), var(--mint), var(--violet));
}

.mission-list .mission-card {
  min-height: 0;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 26px;
  row-gap: 8px;
  padding: 34px 0 38px;
  border-bottom: 1px solid rgba(176, 188, 255, .18);
  background: transparent;
  color: var(--paper);
}

.mission-list .mission-card:last-child {
  border-bottom: 0;
}

.mission-list .mission-card .health-icon {
  grid-column: 1;
  grid-row: 1 / 4;
  width: 86px;
  height: 86px;
  align-self: start;
  filter: invert(1);
}

.mission-list .mission-card span {
  grid-column: 2;
  grid-row: 1;
  color: var(--mint);
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 900;
  line-height: .82;
}

.mission-list .mission-card h3 {
  grid-column: 2;
  grid-row: 2;
  margin: 8px 0 0;
  color: var(--paper);
  font-size: clamp(25px, 2.2vw, 36px);
  line-height: 1;
}

.mission-list .mission-card p {
  grid-column: 2;
  grid-row: 3;
  max-width: 540px;
  margin: 6px 0 0;
  color: rgba(246, 247, 251, .68);
  font-size: 14px;
  line-height: 1.55;
}

.tone-lime { background: var(--lime); }
.tone-mint { background: var(--mint); }
.tone-violet { background: var(--violet); }
.tone-coral { background: var(--coral); }

.split-story {
  display: grid;
  grid-template-columns: minmax(520px, 760px) minmax(0, 1fr);
  gap: clamp(52px, 7vw, 104px);
  align-items: center;
}

.story-media {
  display: grid;
  gap: 46px;
}

.story-image {
  position: relative;
  border: 1px solid var(--line);
}

.story-image::after {
  content: "";
  position: absolute;
  inset: 24px -24px -20px 24px;
  z-index: -1;
  background: var(--violet);
}

.story-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(.9) contrast(1.02);
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.signal-row div,
.stack-grid article,
.team-grid article,
.paper-card,
.repo-grid a,
.contact-grid > * {
  border: 1px solid var(--line);
  background: var(--midnight);
}

.signal-row div {
  padding: 20px 22px;
}

.signal-row strong {
  display: block;
  color: var(--lime);
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 62px;
}

.stack-grid article {
  min-height: 340px;
  padding: 34px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  color: var(--ink);
  border: 0;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.stack-grid article:nth-child(1) {
  background: var(--lime);
}

.stack-grid article:nth-child(2) {
  background: var(--mint);
}

.stack-grid article:nth-child(3) {
  background: var(--violet);
}

.stack-grid article:nth-child(4) {
  background: var(--coral);
}

.stack-grid article:hover {
  transform: translateY(-6px);
  filter: saturate(1.08) brightness(1.02);
}

.stack-grid img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  margin: 0 auto 42px;
}

.stack-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.05;
}

.stack-grid p {
  margin: 18px 0 0;
  color: rgba(3, 8, 23, .72);
  font-size: 16px;
  line-height: 1.55;
}

.stack-grid .health-icon.light {
  padding: 0;
  border: 0;
  background: transparent;
  filter: none;
}

.tech-slider {
  margin-top: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(202, 255, 79, .08), rgba(85, 223, 195, .08), rgba(170, 165, 255, .08), rgba(255, 126, 134, .08)),
    var(--midnight);
  overflow: hidden;
}

.tech-slider-window {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.tech-slider-window::before,
.tech-slider-window::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 120px;
  pointer-events: none;
}

.tech-slider-window::before {
  left: 0;
  background: linear-gradient(90deg, var(--midnight), rgba(7, 18, 38, 0));
}

.tech-slider-window::after {
  right: 0;
  background: linear-gradient(270deg, var(--midnight), rgba(7, 18, 38, 0));
}

.tech-slider-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: tech-scroll 42s linear infinite;
}

.tech-slider:hover .tech-slider-track {
  animation-play-state: paused;
}

.tech-slider-track article {
  width: 178px;
  min-height: 132px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(176, 188, 255, .18);
  background: rgba(3, 8, 23, .62);
  text-align: center;
}

.tech-slider-track img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.tech-slider-track span {
  color: var(--paper);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.tech-slider-track small {
  color: rgba(246, 247, 251, .56);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.paper-list {
  display: grid;
  gap: 22px;
  margin-top: 62px;
}

.paper-card {
  position: relative;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 46px;
  min-height: 260px;
  padding: 44px 52px;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.paper-card:hover {
  transform: translateY(-4px);
  border-color: rgba(85, 223, 195, .5);
  background: var(--panel);
}

.paper-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--mint);
}

.paper-card.accent-violet::before { background: var(--violet); }
.paper-card.accent-coral::before { background: var(--coral); }
.paper-card.accent-lime::before { background: var(--lime); }

.paper-card span {
  color: var(--mint);
}

.paper-card h3 {
  margin: 0;
  max-width: 920px;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 800;
  line-height: 1.04;
}

.paper-card p {
  margin: 18px 0 0;
  color: var(--fog);
  font-size: 17px;
}

.paper-card a {
  margin-top: 28px;
}

.repo-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
}

.repo-toolbar span {
  color: var(--fog);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.repo-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
  padding: 22px;
  border: 1px solid rgba(176, 188, 255, .12);
  background:
    linear-gradient(90deg, rgba(176,188,255,.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(176,188,255,.08) 1px, transparent 1px);
  background-size: 96px 96px;
}

.repo-card {
  position: relative;
  min-height: 255px;
  grid-column: span 4;
  padding: 28px;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.repo-card:nth-child(1),
.repo-card:nth-child(7) {
  grid-column: span 5;
}

.repo-card:nth-child(4),
.repo-card:nth-child(10) {
  grid-column: span 5;
  margin-top: 44px;
}

.repo-card:nth-child(3n) {
  margin-top: 24px;
}

.repo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(170, 165, 255, .55);
  background: var(--panel);
}

.repo-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--mint);
}

.repo-card.category-ai::before {
  background: var(--violet);
}

.repo-card.category-data::before {
  background: var(--mint);
}

.repo-card span {
  color: var(--coral);
}

.repo-card h3 {
  margin: 50px 0 0;
  color: white;
  font-size: clamp(25px, 2.35vw, 38px);
  font-weight: 800;
  line-height: .98;
  overflow-wrap: anywhere;
}

.repo-card p {
  min-height: 74px;
  margin: 18px 0 0;
  color: var(--fog);
  font-size: 16px;
  line-height: 1.5;
}

.repo-card div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.repo-card strong,
.repo-card em {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 0 10px;
  color: var(--text);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.repo-card em {
  color: var(--fog);
}

.news-marquee {
  position: relative;
  margin-top: 62px;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 24px 0;
}

.news-marquee::before,
.news-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(12vw, 160px);
  pointer-events: none;
}

.news-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink), transparent);
}

.news-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink), transparent);
}

.news-track {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: news-scroll 44s linear infinite;
}

.news-marquee:hover .news-track {
  animation-play-state: paused;
}

.news-track article {
  position: relative;
  width: clamp(360px, 29vw, 500px);
  min-height: 280px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  background: var(--midnight);
  overflow: hidden;
  transition: border-color .2s ease, background .2s ease;
}

.news-track article:hover {
  border-color: rgba(255, 126, 134, .58);
  background: var(--panel);
}

.news-track article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--coral);
}

.news-track article:nth-child(3n + 1)::before {
  background: var(--mint);
}

.news-track article:nth-child(3n + 2)::before {
  background: var(--violet);
}

.news-track a {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 30px;
}

.news-track span {
  color: var(--coral);
}

.news-track h3 {
  margin: 52px 0 0;
  padding: 0;
  font-size: clamp(25px, 2.2vw, 36px);
  font-weight: 800;
  line-height: 1.02;
}

.news-track p {
  margin: 18px 0 0;
  color: var(--fog);
  font-size: 16px;
  line-height: 1.5;
}

@keyframes news-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 11px));
  }
}

@keyframes tech-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(192px, 1fr));
  gap: 16px;
  margin-top: 62px;
}

.team-grid article {
  padding: 12px;
  transition: transform .2s ease, border-color .2s ease;
}

.team-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(202, 255, 79, .46);
}

.team-grid img,
.team-grid .placeholder div {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-grid .placeholder div {
  display: grid;
  place-items: center;
  background: var(--violet);
  color: var(--ink);
  font-size: clamp(44px, 4.5vw, 64px);
  font-weight: 800;
}

.team-grid .placeholder:nth-of-type(4n + 1) div { background: var(--mint); }
.team-grid .placeholder:nth-of-type(4n + 2) div { background: var(--lime); }
.team-grid .placeholder:nth-of-type(4n + 3) div { background: var(--coral); }

.team-grid h3 {
  margin: 14px 0 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.12;
}

.team-grid p {
  margin-top: 7px;
}

.contact-band {
  display: grid;
  grid-template-columns: .9fr 1.2fr;
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.contact-grid {
  display: grid;
  gap: 18px;
}

.contact-grid > * {
  padding: 36px;
}

.contact-grid strong {
  display: block;
  margin-top: 14px;
  font-size: clamp(26px, 2.4vw, 40px);
  line-height: 1.06;
}

.contact-grid .hire {
  background: var(--lime);
  color: var(--ink);
}

.contact-grid .hire span {
  color: rgba(3, 8, 23, .7);
}

.site-footer {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 42px 0;
  color: var(--fog);
}

.site-footer img {
  height: 48px;
  width: auto;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: var(--mint);
}

@media (max-width: 1120px) {
  .nav-wrap,
  .hero-grid,
  .split-story,
  .about-layout,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .about-copy {
    position: static;
  }

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

  .contact-copy {
    min-height: 0;
  }

  .partner-lockup {
    display: none;
  }

  .nav-links {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero-visual {
    min-height: auto;
    justify-items: center;
  }

  .hero-visual > img {
    width: min(100%, 560px);
    max-height: none;
  }

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

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

  .repo-card,
  .repo-card:nth-child(1),
  .repo-card:nth-child(4),
  .repo-card:nth-child(7),
  .repo-card:nth-child(10),
  .repo-card:nth-child(3n) {
    grid-column: span 1;
    margin-top: 0;
    transform: none;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100vw - 28px, 1320px);
  }

  body {
    font-size: 16px;
  }

  .nav-wrap {
    top: 0;
    margin-top: 0;
  }

  .hero-section {
    min-height: auto;
    margin-top: 0;
    padding: 56px 0 70px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .mission-board,
  .stack-grid,
  .repo-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual > img {
    width: min(112vw, 430px);
  }

  .section-block,
  .split-story,
  .contact-band {
    padding: 82px 0;
  }

  .mission-card {
    min-height: 250px;
  }

  .section-headline-row {
    display: block;
  }

  .section-headline-row .button-secondary {
    margin-top: 24px;
  }

  .paper-card {
    grid-template-columns: 1fr;
    padding: 30px;
  }

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

  .news-track article {
    width: min(82vw, 390px);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

/* Polished Health Icons refinement layer */
body {
  font-size: 16px;
  line-height: 1.6;
}

.hero-copy h1 {
  max-width: 1080px;
  font-size: clamp(60px, 8.2vw, 124px);
  line-height: .9;
}

.section-headline-row h2,
.section-intro h2,
.story-copy h2,
.contact-band h2 {
  max-width: 960px;
  font-size: clamp(38px, 4.5vw, 72px);
  line-height: .98;
}

.hero-lede,
.section-intro p,
.section-headline-row p,
.story-copy p {
  font-size: clamp(13px, .94vw, 16px);
  line-height: 1.62;
}

.kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid currentColor;
  color: var(--mint);
  background: rgba(85, 223, 195, .08);
  font-size: 10px;
  letter-spacing: .14em;
}

.hero-section .kicker {
  border-color: rgba(3, 8, 23, .34);
  background: rgba(255, 255, 255, .18);
  color: #020817;
}

#about-us .kicker,
#open-source .kicker { color: var(--lime); background: rgba(202, 255, 79, .08); }
#technologies .kicker,
#news .kicker { color: var(--mint); background: rgba(85, 223, 195, .08); }
#papers .kicker { color: var(--violet); background: rgba(170, 165, 255, .09); }
#team .kicker,
#ahoy .kicker { color: var(--coral); background: rgba(255, 126, 134, .08); }

.button-primary,
.button-secondary,
.paper-card a {
  min-height: 42px;
  padding: 0 16px;
  font-size: 10px;
  border-radius: 999px;
}

.health-icon {
  width: 54px;
  height: 54px;
  padding: 11px;
  border: 1px solid rgba(3, 8, 23, .16);
  background: rgba(255, 255, 255, .2);
  object-fit: contain;
}

.health-icon.light {
  border-color: rgba(246, 247, 251, .16);
  background: rgba(246, 247, 251, .055);
  filter: invert(1);
}

.mission-card {
  position: relative;
  min-height: 390px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto auto auto;
  row-gap: 12px;
  padding: clamp(28px, 3vw, 42px);
}

.mission-card .health-icon {
  grid-column: 1;
  grid-row: 1;
  width: clamp(132px, 9vw, 170px);
  height: clamp(132px, 9vw, 170px);
  padding: 0;
  border: 0;
  background: transparent;
  margin: 0;
}

.mission-card span {
  grid-column: 1;
  grid-row: 3;
  display: block;
  color: rgba(3, 8, 23, .88);
  font-size: clamp(42px, 4.5vw, 72px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .9;
}

.mission-card h3 {
  grid-column: 1;
  grid-row: 4;
  margin: 6px 0 0;
  font-size: clamp(24px, 1.8vw, 30px);
  line-height: 1.02;
}

.mission-card p {
  grid-column: 1;
  grid-row: 5;
  max-width: 430px;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.5;
}

.mission-list .mission-card {
  min-height: 0;
  grid-template-columns: 92px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 26px;
  row-gap: 8px;
  padding: 34px 0 38px;
  border-bottom: 1px solid rgba(176, 188, 255, .18);
  background: transparent;
  color: var(--paper);
}

.mission-list .mission-card .health-icon {
  grid-column: 1;
  grid-row: 1 / 4;
  width: 86px;
  height: 86px;
  align-self: start;
  filter: invert(1);
}

.mission-list .mission-card span {
  grid-column: 2;
  grid-row: 1;
  color: var(--mint);
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 900;
  line-height: .82;
}

.mission-list .mission-card h3 {
  grid-column: 2;
  grid-row: 2;
  margin: 8px 0 0;
  color: var(--paper);
  font-size: clamp(25px, 2.2vw, 36px);
  line-height: 1;
}

.mission-list .mission-card p {
  grid-column: 2;
  grid-row: 3;
  max-width: 540px;
  margin: 6px 0 0;
  color: rgba(246, 247, 251, .68);
  font-size: 14px;
  line-height: 1.55;
}

.stack-grid article {
  min-height: 330px;
  padding: 34px;
}

.stack-grid .health-icon {
  width: 104px;
  height: 104px;
  margin: 0 auto 42px;
}

.stack-grid h3 {
  font-size: 26px;
}

.stack-grid p,
.repo-card p,
.news-track p {
  font-size: 15px;
}

.paper-card {
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 34px;
  min-height: 220px;
  padding: 34px 42px;
  align-items: start;
}

.paper-card .health-icon {
  margin-top: -4px;
}

.paper-card h3 {
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.14;
}

.paper-card p {
  font-size: 15px;
}

.repo-grid {
  border-radius: 18px;
  padding: clamp(18px, 2.5vw, 34px);
  background:
    radial-gradient(circle at 12% 8%, rgba(85, 223, 195, .13), transparent 28%),
    linear-gradient(90deg, rgba(176,188,255,.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(176,188,255,.055) 1px, transparent 1px);
  background-size: auto, 112px 112px, 112px 112px;
}

.repo-card,
.news-track article,
.stack-grid article,
.paper-card,
.team-grid article,
.contact-grid > * {
  border-radius: 18px;
}

.repo-card h3 {
  margin-top: 42px;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.06;
}

.news-track article {
  width: clamp(350px, 28vw, 470px);
  min-height: 260px;
}

.news-track a {
  min-height: 260px;
  padding: 28px;
}

.news-track .health-icon {
  margin-bottom: 34px;
}

.news-track h3 {
  margin: 0;
  font-size: clamp(21px, 1.8vw, 29px);
  line-height: 1.12;
}

.team-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}

.team-grid h3 {
  font-size: 16px;
}

.contact-grid > * {
  min-height: 132px;
  padding: 26px 28px;
}

.contact-band h2 {
  font-size: clamp(34px, 3.8vw, 60px);
  line-height: 1;
}

.contact-grid span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-grid strong {
  margin-top: 12px;
  font-size: clamp(17px, 1.35vw, 23px);
  font-weight: 750;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.gradient-word {
  background: linear-gradient(90deg, var(--lime), var(--mint), var(--violet), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#ahoy.contact-band {
  position: relative;
  grid-template-columns: minmax(0, .9fr) minmax(390px, .72fr);
  align-items: stretch;
  padding: clamp(56px, 7vw, 92px);
  border: 1px solid rgba(176, 188, 255, .2);
  background:
    linear-gradient(135deg, rgba(202, 255, 79, .11), rgba(85, 223, 195, .06) 36%, rgba(170, 165, 255, .08) 70%, rgba(255, 126, 134, .09)),
    var(--midnight);
  overflow: hidden;
}

#ahoy.contact-band::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, var(--lime), var(--mint), var(--violet), var(--coral));
}

.contact-copy {
  display: grid;
  align-content: space-between;
  min-height: 360px;
}

#ahoy.contact-band h2 {
  max-width: 620px;
  font-size: clamp(28px, 3.5vw, 55px);
  line-height: 1;
}

#ahoy .contact-grid {
  align-content: stretch;
  gap: 14px;
}

#ahoy .contact-grid span {
  font-size: 8px;
  letter-spacing: .14em;
}

#ahoy .contact-grid > * {
  position: relative;
  min-height: 118px;
  padding: 24px 26px;
  border-color: rgba(246, 247, 251, .18);
  background: rgba(3, 8, 23, .48);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

#ahoy .contact-grid > *:hover {
  transform: translateX(4px);
  border-color: rgba(85, 223, 195, .46);
  background: rgba(3, 8, 23, .68);
}

#ahoy .contact-grid .contact-primary {
  min-height: 154px;
  border-color: rgba(202, 255, 79, .48);
  background: linear-gradient(135deg, rgba(202, 255, 79, .94), rgba(85, 223, 195, .82));
  color: var(--ink);
}

#ahoy .contact-grid .contact-primary span,
#ahoy .contact-grid .contact-primary em {
  color: rgba(3, 8, 23, .68);
}

#ahoy .contact-grid .hire {
  background: rgba(255, 126, 134, .12);
  color: var(--paper);
}

#ahoy .contact-grid .hire span,
#ahoy .contact-grid .hire em {
  color: rgba(246, 247, 251, .58);
}

#ahoy .contact-grid strong {
  font-size: clamp(12px, .9vw, 15px);
}

#ahoy .contact-grid em {
  display: block;
  margin-top: 10px;
  color: rgba(246, 247, 251, .5);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.to-top-button {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 60;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(246, 247, 251, .18);
  border-radius: 999px;
  background: rgba(3, 8, 23, .86);
  color: white;
  font-size: 22px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
}

.to-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.to-top-button:hover,
.to-top-button:focus-visible {
  border-color: var(--mint);
  outline: none;
}

.site-footer {
  display: block;
  width: 100%;
  margin-top: 0;
  padding: 0;
  border-top: 1px solid rgba(176, 188, 255, .16);
  background:
    linear-gradient(90deg, var(--lime), var(--mint), var(--violet), var(--coral)) top / 100% 5px no-repeat,
    #020713;
  color: var(--fog);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) repeat(3, minmax(150px, .82fr));
  gap: clamp(28px, 4.5vw, 64px);
  padding: clamp(50px, 6vw, 74px) 0 34px;
}

.footer-brand {
  max-width: 760px;
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.footer-logos img {
  width: auto;
  max-width: 210px;
  object-fit: contain;
}

.footer-logos img:nth-child(1) {
  height: 44px;
}

.footer-logos img:nth-child(2) {
  height: 42px;
}

.footer-logos img:nth-child(3) {
  height: 62px;
  padding: 9px;
  border-radius: 14px;
  background: white;
}

.footer-brand p {
  margin: 0;
  color: rgba(246, 247, 251, .72);
  font-size: 17px;
  line-height: 1.55;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
  font-size: 0;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer nav h2 {
  margin: 0 0 10px;
  color: rgba(246, 247, 251, .9);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-footer nav a,
.site-footer nav span {
  color: rgba(246, 247, 251, .58);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.42;
}

.site-footer nav a:hover {
  color: var(--mint);
}

.site-footer .footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer .footer-social-link svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(176, 188, 255, .14);
  color: rgba(246, 247, 251, .4);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-bottom a:hover {
  color: var(--lime);
}

@media (max-width: 1120px) {
  .paper-card {
    grid-template-columns: minmax(130px, 180px) minmax(0, 1fr);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .hero-copy h1 {
    font-size: clamp(44px, 13vw, 68px);
  }

  .section-headline-row h2,
  .section-intro h2,
  .story-copy h2,
  .contact-band h2 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .paper-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px;
  }

  .paper-card .health-icon {
    margin-top: 0;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-logos {
    align-items: flex-start;
  }

  .mission-card {
    min-height: 340px;
    grid-template-columns: 1fr;
  }

  .mission-card .health-icon {
    width: 124px;
    height: 124px;
    padding: 0;
  }

  .mission-list {
    padding-left: 24px;
  }

  .mission-list .mission-card {
    min-height: 0;
    grid-template-columns: 68px minmax(0, 1fr);
    column-gap: 18px;
    padding: 28px 0 32px;
  }

  .mission-list .mission-card .health-icon {
    width: 62px;
    height: 62px;
  }

  .story-media {
    gap: 38px;
  }

  .tech-slider-window {
    padding: 18px 0;
  }

  .tech-slider-window::before,
  .tech-slider-window::after {
    width: 48px;
  }

  .tech-slider-track article {
    width: 172px;
    min-height: 150px;
    padding: 20px;
  }

  .tech-slider-track img {
    width: 48px;
    height: 48px;
  }

  .tech-slider-track span {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tech-slider-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    padding: 0 18px;
  }
}

/* Requested layout refinements */
.kicker {
  margin: 0 0 32px;
}

.section-intro.compact .kicker,
.section-intro .kicker,
.section-headline-row .kicker,
.story-copy .kicker,
.contact-band .kicker {
  margin-bottom: 30px;
}

/* Contact reset: calmer final CTA with extra footer breathing room */
#ahoy.contact-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 4vw, 52px);
  margin-top: clamp(78px, 9vw, 132px);
  margin-bottom: clamp(80px, 9vw, 140px);
  padding: clamp(44px, 6vw, 78px);
  border: 1px solid rgba(3, 8, 23, .18);
  border-radius: 18px;
  background:
    linear-gradient(115deg, rgba(202, 255, 79, .86), rgba(85, 223, 195, .84) 32%, rgba(170, 165, 255, .78) 66%, rgba(255, 126, 134, .82)),
    url("../images/ikim-identity-gradient.png");
  background-size: cover;
  background-position: center;
  color: var(--ink);
  overflow: hidden;
}

#ahoy.contact-band::before {
  content: none;
}

#ahoy .contact-copy {
  min-height: 0;
  align-content: start;
  max-width: 960px;
}

#ahoy.contact-band .kicker {
  justify-self: start;
  width: max-content;
  min-width: 118px;
  justify-content: center;
  border-color: rgba(3, 8, 23, .36);
  background: rgba(255, 255, 255, .2);
  color: #020817;
}

#ahoy.contact-band h2 {
  max-width: 920px;
  color: #020817;
  font-size: clamp(34px, 4.8vw, 76px);
  line-height: .96;
}

#ahoy .gradient-word {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #020817;
  text-decoration: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: .12em;
}

#ahoy .contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

#ahoy .contact-grid > * {
  min-height: 176px;
  display: grid;
  align-content: space-between;
  padding: clamp(24px, 2.8vw, 34px);
  border: 1px solid rgba(3, 8, 23, .28);
  border-radius: 8px;
  background: #020817;
  color: var(--paper);
  box-shadow: none;
}

#ahoy .contact-grid > *:hover {
  transform: translateY(-3px);
  border-color: rgba(3, 8, 23, .62);
  background: #071226;
}

#ahoy .contact-grid > *:nth-child(1) {
  background: #020817;
}

#ahoy .contact-grid > *:nth-child(2) {
  background: #020817;
}

#ahoy .contact-grid > *:nth-child(3) {
  background: #020817;
}

#ahoy .contact-grid .contact-primary span,
#ahoy .contact-grid .contact-primary em,
#ahoy .contact-grid span,
#ahoy .contact-grid em,
#ahoy .contact-grid .hire span,
#ahoy .contact-grid .hire em {
  color: rgba(246, 247, 251, .58);
}

#ahoy .contact-grid strong,
#ahoy .contact-grid .contact-primary strong,
#ahoy .contact-grid .hire strong {
  color: var(--paper);
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.15;
}

#ahoy .contact-grid > *:nth-child(1) strong {
  color: var(--lime);
}

#ahoy .contact-grid > *:nth-child(2) strong {
  color: var(--mint);
}

#ahoy .contact-grid > *:nth-child(3) strong {
  color: var(--violet);
}

#ahoy + .site-footer,
.site-footer {
  margin-top: clamp(42px, 6vw, 92px);
}

#open-source .section-intro p {
  max-width: 720px;
}

#open-source .repo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 0;
  border: 0;
  background: transparent;
}

#open-source .repo-card,
#open-source .repo-card:nth-child(1),
#open-source .repo-card:nth-child(4),
#open-source .repo-card:nth-child(7),
#open-source .repo-card:nth-child(10),
#open-source .repo-card:nth-child(3n) {
  grid-column: auto;
  margin-top: 0;
}

#open-source .repo-card {
  min-height: 270px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(246, 247, 251, .045), rgba(246, 247, 251, .018)),
    var(--midnight);
}

#open-source .repo-card h3 {
  margin-top: 46px;
}

.footer-logos {
  display: grid;
  justify-items: start;
  gap: 14px;
  margin-bottom: 24px;
  width: min(100vw - 48px, 760px);
}

.footer-logos img,
.footer-logos img:nth-child(1) {
  width: min(100%, 360px);
  height: auto;
  max-width: 360px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-logos .footer-secondary-mark {
  width: min(100%, 760px);
  max-width: 760px;
  opacity: 1;
}

.footer-description {
  max-width: 285px;
  color: rgba(246, 247, 251, .58);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 980px) {
  .mission-board {
    grid-template-columns: 1fr;
  }

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

  #open-source .repo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  #open-source .repo-grid {
    grid-template-columns: 1fr;
  }

  #ahoy.contact-band {
    padding: 36px 22px 52px;
    border-radius: 14px;
  }

  #ahoy.contact-band h2 {
    font-size: clamp(30px, 10vw, 46px);
  }

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

/* IKIM editorial geometry: no rounded UI corners */
.button-primary,
.button-secondary,
.paper-card a,
.repo-grid,
.repo-card,
.news-track article,
.stack-grid article,
.paper-card,
.team-grid article,
.contact-grid > *,
#ahoy.contact-band,
.to-top-button,
.mobile-nav-toggle,
.health-icon,
.hero-explore i,
.hero-explore i::before,
.footer-logos img {
  border-radius: 0;
}

/* Mobile navigation and small-screen hardening */
body.mobile-menu-active {
  overflow: hidden;
}

@media (max-width: 1120px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav-wrap,
  .nav-wrap.nav-scrolled {
    position: sticky;
    top: 8px;
    grid-template-columns: auto auto 1fr auto;
    gap: clamp(10px, 2.6vw, 18px);
    width: min(100vw - 24px, 1320px);
    margin-top: 8px;
    padding: 10px clamp(12px, 2.4vw, 18px);
    border-color: rgba(176, 188, 255, .18);
    background: rgba(3, 8, 23, .9);
    box-shadow: 0 14px 42px rgba(0, 0, 0, .2);
  }

  .brand-lockup,
  .partner-lockup {
    position: relative;
    z-index: 74;
  }

  .brand-lockup img,
  .nav-wrap.nav-scrolled .brand-lockup img {
    height: 34px;
    filter: invert(1);
  }

  .partner-lockup {
    display: flex;
    justify-self: start;
    align-items: center;
  }

  .partner-lockup img,
  .nav-wrap.nav-scrolled .partner-lockup img {
    max-width: min(28vw, 152px);
    max-height: 30px;
    filter: none;
  }

  .mobile-nav-toggle {
    position: relative;
    z-index: 74;
    display: grid;
    align-self: center;
    width: 40px;
    height: 40px;
    border-color: rgba(246, 247, 251, .22);
    background: rgba(246, 247, 251, .06);
    color: var(--paper);
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    align-content: start;
    justify-items: stretch;
    gap: 8px;
    padding: clamp(104px, 13vh, 132px) clamp(24px, 7vw, 64px) 42px;
    overflow-y: auto;
    color: var(--paper);
    background:
      linear-gradient(145deg, rgba(3, 8, 23, .96), rgba(7, 18, 38, .98)),
      radial-gradient(circle at 14% 8%, rgba(85, 223, 195, .2), transparent 32%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .24s ease, visibility .24s ease, transform .24s ease;
  }

  .nav-wrap.mobile-menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: clamp(44px, 6.2vh, 58px);
    border-top: 1px solid rgba(176, 188, 255, .14);
    color: var(--paper);
    font-size: clamp(20px, 4.8vw, 30px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
    text-transform: none;
  }

  .nav-links a:last-child {
    border-bottom: 1px solid rgba(176, 188, 255, .18);
  }

  .nav-links a:hover,
  .nav-wrap.nav-scrolled .nav-links a:hover,
  .imprint-page .nav-links a:hover {
    color: var(--mint);
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100vw - 24px, 1320px);
  }

  .nav-wrap,
  .nav-wrap.nav-scrolled {
    grid-template-columns: auto auto 1fr auto;
    width: min(100vw - 20px, 1320px);
    gap: 10px;
  }

  .partner-lockup img,
  .nav-wrap.nav-scrolled .partner-lockup img {
    max-width: min(31vw, 124px);
    max-height: 26px;
  }

  .mobile-nav-toggle {
    width: 38px;
    height: 38px;
  }

  .mobile-nav-toggle .burger-line {
    width: 18px;
  }

  .nav-links {
    gap: 6px;
    padding: 94px 22px 34px;
  }

  .nav-links a {
    min-height: 43px;
    font-size: clamp(18px, 6.2vw, 24px);
  }

  .hero-section {
    min-height: auto;
    padding: 112px 0 86px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1,
  .hero-section .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(50px, 15.2vw, 74px);
    line-height: .9;
  }

  .hero-lede,
  .hero-section .hero-lede,
  .section-intro p,
  .section-headline-row p,
  .story-copy p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .button-primary,
  .button-secondary {
    justify-content: center;
    width: 100%;
    min-height: 46px;
  }

  .hero-visual > img {
    display: none;
  }

  .hero-explore {
    bottom: 20px;
  }

  .section-block,
  .split-story,
  .contact-band,
  #ahoy.contact-band {
    padding-block: 68px;
  }

  .section-headline-row {
    display: grid;
    gap: 22px;
  }

  .section-headline-row h2,
  .section-intro h2,
  .story-copy h2,
  .contact-band h2,
  #ahoy.contact-band h2 {
    font-size: clamp(32px, 10.2vw, 46px);
    line-height: .96;
  }

  .mission-list {
    padding-left: 16px;
  }

  .mission-list .mission-card {
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 16px;
    padding: 24px 0 28px;
  }

  .mission-list .mission-card .health-icon {
    width: 54px;
    height: 54px;
  }

  .signal-row,
  .stack-grid,
  #open-source .repo-grid,
  .contact-grid,
  #ahoy .contact-grid {
    grid-template-columns: 1fr;
  }

  .story-image,
  .story-image img {
    aspect-ratio: 4 / 3;
  }

  .stack-grid article,
  #open-source .repo-card,
  #ahoy .contact-grid > *,
  .paper-card {
    min-height: 0;
    padding: 24px;
  }

  #open-source .repo-card h3 {
    margin-top: 34px;
  }

  .paper-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .team-grid article {
    padding: 10px;
  }

  .team-grid img,
  .team-grid .placeholder div {
    aspect-ratio: 1;
  }

  .team-grid h3 {
    font-size: 14px;
    line-height: 1.08;
  }

  .team-grid p {
    font-size: 9px;
  }

  .news-track article {
    width: min(82vw, 330px);
  }

  .tech-slider-track article {
    width: 158px;
    min-height: 138px;
    padding: 18px;
  }

  .footer-grid,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-logos {
    width: 100%;
  }

  .footer-logos img,
  .footer-logos img:nth-child(1) {
    width: min(100%, 300px);
  }

  .to-top-button {
    right: 16px;
    bottom: 16px;
  }

  .legal-hero {
    padding-top: 120px;
  }
}

@media (min-width: 1121px) {
  .nav-wrap.mobile-menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* Minimal imprint page */
.imprint-page .nav-wrap {
  border-color: var(--line);
  background: rgba(3, 8, 23, .9);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.imprint-page .brand-lockup img {
  filter: invert(1);
}

.imprint-page .partner-lockup img {
  filter: none;
}

.imprint-page .mobile-nav-toggle {
  border-color: rgba(246, 247, 251, .2);
  background: rgba(246, 247, 251, .06);
  color: var(--paper);
}

.imprint-page .nav-wrap.mobile-menu-open .mobile-nav-toggle {
  border-color: rgba(202, 255, 79, .56);
  background: var(--lime);
  color: #020817;
}

.imprint-page .nav-links,
.imprint-page .nav-links a {
  color: var(--fog);
}

.imprint-page .nav-links a:hover {
  color: var(--mint);
}

.legal-hero {
  padding: clamp(150px, 16vw, 220px) 0 clamp(54px, 8vw, 96px);
}

.legal-hero h1 {
  max-width: 920px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(58px, 8vw, 128px);
  font-weight: 800;
  line-height: .9;
}

.legal-hero p:not(.kicker) {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(246, 247, 251, .68);
  font-size: clamp(14px, 1.1vw, 18px);
  line-height: 1.6;
}

.legal-panel {
  display: grid;
  max-width: min(100vw - 48px, 1040px);
  margin-bottom: clamp(80px, 10vw, 150px);
  border-top: 1px solid var(--line);
}

.legal-section {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  padding: clamp(28px, 4vw, 46px) 0;
  border-bottom: 1px solid var(--line);
}

.legal-copy {
  max-width: 720px;
}

.legal-eyebrow {
  margin: 0;
  color: var(--mint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.legal-section h2 {
  margin: 0 0 18px;
  color: var(--paper);
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 800;
  line-height: 1;
}

.legal-section p {
  margin: 0 0 16px;
  color: rgba(246, 247, 251, .68);
  font-size: 15px;
  line-height: 1.62;
}

.legal-copy p + p {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(176, 188, 255, .12);
}

.legal-copy p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: var(--lime);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (max-width: 760px) {
  .legal-panel {
    max-width: min(100vw - 28px, 980px);
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
