:root {
  --ink: #24303a;
  --muted: #6a7378;
  --line: #e2e5e1;
  --paper: #f4f5f2;
  --white: #fbfcfb;
  --accent: #2f9f96;
  --soft: #e8f3f1;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

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

.shell { width: min(1180px, calc(100% - 48px)); margin: auto; }

section[id],
.statement,
.visual-break { scroll-margin-top: 88px; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  z-index: 80;
}

.skip:focus { left: 8px; }

:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 3px;
}

.nav {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(244, 245, 242, .88);
  border-bottom: 1px solid rgba(36, 48, 58, .08);
  backdrop-filter: blur(16px);
}

.nav-bar {
  width: min(1180px, calc(100% - 48px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  text-decoration: none;
  color: inherit;
}

.brandmark {
  width: auto;
  height: 34px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.brand-name {
  font: 700 14px/1 Manrope, sans-serif;
  letter-spacing: .16em;
}

.brand-name span { color: var(--accent); }

.brand-legal {
  font: 500 10px/1 Inter, sans-serif;
  letter-spacing: .02em;
  color: #8a9390;
}

.nav nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav a,
footer a {
  text-decoration: none;
  color: inherit;
  font-size: 13px;
}

.nav nav a {
  position: relative;
  padding: 8px 0;
  color: var(--muted);
  transition: color .35s var(--ease);
}

.nav nav a:hover,
.nav nav a.is-current { color: var(--ink); }

.nav nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.nav nav a:hover::after,
.nav nav a.is-current::after { transform: scaleX(1); }

.menu-btn {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  font: 600 12px Inter;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  padding: 8px 10px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff !important;
  text-decoration: none;
  border: 0;
  font: 600 14px Inter;
  cursor: pointer;
  isolation: isolate;
  transition: background .4s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.08) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s var(--ease);
  z-index: -1;
}

.btn:hover::before { transform: translateX(120%); }

.btn i {
  font-style: normal;
  display: inline-block;
  transition: transform .4s var(--ease);
}

.btn:hover i { transform: translate(3px, -2px); }

.btn.next:hover i { transform: translateX(4px); }

.btn.small {
  padding: 10px 14px;
  font-size: 12px;
  margin-left: 8px;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background: #dfe3df;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
}

.hero-media img {
  filter: saturate(.78) contrast(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg,
    rgba(244, 245, 242, .9) 0%,
    rgba(244, 245, 242, .68) 28%,
    rgba(244, 245, 242, .28) 58%,
    rgba(244, 245, 242, .08) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 118px 0 72px;
}

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

.eyebrow {
  font-size: 11px;
  letter-spacing: .2em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero h1,
.shell h2,
.fit h2,
.technology h2,
.statement h2,
.guarantee h2 {
  font: 600 clamp(46px, 6.2vw, 88px) / .98 Manrope, sans-serif;
  margin: 0;
  letter-spacing: -.055em;
}

.hero h1 span,
h2 span { color: #8a9390; }

html.has-motion .hero-copy {
  animation: up .85s var(--ease) both;
}

.hero-copy > p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  margin: 28px 0 0;
}

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

.textlink {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: .04em;
}

.textlink span {
  display: inline-block;
  margin-left: 6px;
  transition: transform .4s var(--ease);
}

.textlink:hover span { transform: translateY(3px); }

.core-wrap {
  position: relative;
  width: min(540px, 44vw);
  aspect-ratio: 1;
  margin-left: auto;
}

.core-wrap::before {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 245, 242, .42) 0%, rgba(244, 245, 242, .08) 62%, transparent 74%);
  pointer-events: none;
}

.core-scene {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translate3d(var(--tx, 0), var(--ty, 0), 0);
  transition: transform .6s var(--ease-out);
}

.core-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.core-cross line {
  stroke: #dde1dd;
  stroke-width: .6;
}

.tick-ring {
  fill: none;
  stroke: #cfd5d1;
  stroke-width: 7;
  stroke-dasharray: 1.15 16.5;
}

.ring {
  fill: none;
  stroke: #d5dbd7;
  stroke-width: 1;
}

.r-dash {
  stroke: #b7c4bf;
  stroke-dasharray: 2 7;
}

.tick-inner {
  fill: none;
  stroke: #d0d7d3;
  stroke-width: 4;
  stroke-dasharray: .8 11.2;
}

.r-inner { stroke: #c3d0cb; }
.r-mid { stroke: #d8ddd9; }

.link {
  fill: none;
  stroke: #c5cec9;
  stroke-width: 1;
}

.node-dot { fill: var(--accent); }

.core-disc { fill: var(--ink); }
.core-rim {
  fill: none;
  stroke: #3d4b54;
  stroke-width: 1;
}

.status-dot { fill: var(--accent); }

.core-label {
  fill: #fff;
  font: 700 15px Manrope, sans-serif;
  letter-spacing: .18em;
}

.core-sub {
  fill: #9aa5a0;
  font: 600 7px Inter, sans-serif;
  letter-spacing: .22em;
}

.spin { transform-origin: 260px 260px; }

.spin-slow { animation: spin 72s linear infinite; }
.spin-slower { animation: spin-rev 96s linear infinite; }

.data-pulse {
  fill: var(--accent);
  opacity: 0;
  offset-rotate: 0deg;
}

.p1 {
  offset-path: path("M260 188 L260 88");
  animation: travel 7.5s var(--ease-out) infinite;
}

.p2 {
  offset-path: path("M328 218 C368 186 402 168 438 152");
  animation: travel 9s var(--ease-out) 2.2s infinite;
}

.p3 {
  offset-path: path("M318 312 C372 348 408 372 438 392");
  animation: travel 8.5s var(--ease-out) 4.4s infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-rev { to { transform: rotate(-360deg); } }

@keyframes travel {
  0%, 16% { offset-distance: 0%; opacity: 0; }
  24% { opacity: .85; }
  72% { offset-distance: 100%; opacity: .4; }
  86%, 100% { offset-distance: 100%; opacity: 0; }
}

.core-node {
  position: absolute;
  padding: 7px 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 8px;
  letter-spacing: .14em;
  color: var(--ink);
}

.n1 { left: 42%; top: 2%; transform: translateX(-50%); }
.n2 { right: -2%; top: 22%; }
.n3 { right: 0; bottom: 14%; }

section { padding: 120px 0; }

.outcomes {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.outcomes-structure {
  position: sticky;
  top: 18vh;
  height: 0;
  pointer-events: none;
}

.outcomes-structure svg {
  position: absolute;
  right: min(4vw, 40px);
  width: min(520px, 46vw);
  opacity: .28;
  transform: rotate(var(--os-rot, 0deg));
  transition: transform .8s var(--ease), opacity .6s var(--ease);
}

.os-ring,
.os-line {
  fill: none;
  stroke: #c5cdc8;
  stroke-width: .8;
  transition: stroke .6s var(--ease), stroke-dasharray .8s var(--ease);
}

.os-ring.b { stroke-dasharray: 3 8; }
.outcomes[data-word="1"] { --os-rot: 12deg; }
.outcomes[data-word="2"] { --os-rot: -8deg; }
.outcomes[data-word="3"] { --os-rot: 18deg; }

.outcome-list { margin-top: 72px; }

.outcome-list article {
  border-top: 1px solid var(--line);
  padding: 36px 0 32px;
}

.outcome-list article:last-child { border-bottom: 1px solid var(--line); }

.outcome-word {
  margin: 0;
  font: 700 clamp(26px, 3.4vw, 44px) / 1 Manrope, sans-serif;
  letter-spacing: -.04em;
  color: var(--ink);
}

.outcome-word.is-long {
  font-size: clamp(24px, 3.1vw, 40px);
}

html.has-motion .outcome-word {
  opacity: .22;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

html.has-motion .outcome-list article.is-in .outcome-word {
  opacity: 1;
  transform: none;
}

.outcome-body {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: end;
  margin-top: 18px;
}

.outcome-list b,
.fitgrid b {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: .12em;
}

.outcome-list h3 {
  font: 500 clamp(20px, 2.6vw, 32px) / 1.2 Manrope, sans-serif;
  margin: 0;
  letter-spacing: -.03em;
  color: var(--muted);
  white-space: nowrap;
}

.responsibility {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0;
}

.responsibility h2 { margin-bottom: 72px; }

.flow {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 180px minmax(0, .72fr) 150px;
  align-items: center;
  min-height: 340px;
}

.flow > * { min-width: 0; }

.flow-sources {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 340px;
}

.flow-sources span,
.flow-company {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  padding: 13px 10px;
  font-size: 9px;
  letter-spacing: .14em;
  text-align: center;
  transition: opacity .55s var(--ease), transform .55s var(--ease), border-color .4s var(--ease);
}

.flow-company { line-height: 1.45; }

html.has-motion .flow:not(.is-in) .flow-sources span {
  opacity: 0;
  transform: translateX(-10px);
}

html.has-motion .flow:not(.is-in) .flow-company {
  opacity: 0;
  transform: translateX(10px);
}

.flow.is-in .flow-sources span:nth-child(1) { transition-delay: .05s; }
.flow.is-in .flow-sources span:nth-child(2) { transition-delay: .12s; }
.flow.is-in .flow-sources span:nth-child(3) { transition-delay: .19s; }
.flow.is-in .flow-sources span:nth-child(4) { transition-delay: .26s; }
.flow.is-in .flow-sources span:nth-child(5) { transition-delay: .33s; }
.flow.is-in .flow-company { transition-delay: .55s; }

.flow svg {
  width: 100%;
  height: 340px;
  overflow: visible;
}

.flow path {
  fill: none;
  stroke: #c0c9c4;
  stroke-width: 1.25;
  stroke-dasharray: 8 8;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.1s var(--ease);
}

html.has-motion .flow:not(.is-in) path { stroke-dashoffset: 240; }
.flow.is-in .flow-in path:nth-child(1) { transition-delay: .15s; }
.flow.is-in .flow-in path:nth-child(2) { transition-delay: .22s; }
.flow.is-in .flow-in path:nth-child(3) { transition-delay: .29s; }
.flow.is-in .flow-in path:nth-child(4) { transition-delay: .36s; }
.flow.is-in .flow-in path:nth-child(5) { transition-delay: .43s; }
.flow.is-in .flow-out path { transition-delay: .48s; }

.flow-core {
  padding: 28px 12px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  text-align: center;
  transition: opacity .55s var(--ease) .5s, transform .55s var(--ease) .5s;
}

html.has-motion .flow:not(.is-in) .flow-core {
  opacity: 0;
  transform: translateY(8px);
}

.flow-core small {
  display: block;
  font-size: 7px;
  color: #8ea096;
  letter-spacing: .16em;
  margin-bottom: 10px;
}

.flow-core strong { font: 600 18px Manrope, sans-serif; letter-spacing: .06em; }

.bigline {
  font: 500 clamp(25px, 3.2vw, 42px) Manrope, sans-serif;
  text-align: center;
  margin: 72px 0 0;
}

.bigline span { color: var(--accent); }

.guarantee {
  background: #24303a;
  color: #fff;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 112px 0;
}

.guarantee .eyebrow { color: #7ec9c2; }

.guarantee-kicker {
  margin: 0 0 18px;
  font-size: 11px;
  letter-spacing: .22em;
  color: #9aa5a0;
}

.guarantee-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.guarantee h2 span { color: #6d756f; }

.status {
  font-size: 9px;
  letter-spacing: .14em;
  border: 1px solid #3c474e;
  padding: 12px 14px;
  border-radius: 8px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
  animation: status-pulse 2.8s var(--ease) infinite;
}

.status b { color: #7ec9c2; margin-left: 12px; }

@keyframes status-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  border-top: 1px solid #3c474e;
  border-bottom: 1px solid #3c474e;
}

.metrics div {
  padding: 28px 28px 24px 0;
  border-right: 1px solid #3c474e;
}

.metrics div:last-child { border-right: 0; padding-right: 0; }

.metrics div:not(:first-child) { padding-left: 28px; }

.metrics strong {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font: 600 clamp(42px, 5.4vw, 72px) / .95 Manrope, sans-serif;
  letter-spacing: -.055em;
  white-space: nowrap;
}

.metrics strong small {
  font-size: .36em;
  letter-spacing: .12em;
  color: #9aa5a0;
}

.metrics span {
  display: block;
  margin-top: 14px;
  line-height: 1.4;
  color: #c5cdc8;
}

.metrics em {
  display: block;
  font-style: normal;
  font-size: 8px;
  letter-spacing: .16em;
  color: #6f7a72;
  margin-top: 28px;
}

.uptime {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin: 42px 0 8px;
  font-size: 8px;
  letter-spacing: .18em;
  color: #6f7a72;
}

.uptime-line {
  position: relative;
  height: 1px;
  background: #3c474e;
  overflow: hidden;
}

.uptime-line i {
  position: absolute;
  top: 50%;
  width: 72px;
  height: 1px;
  background: var(--accent);
  transform: translateY(-50%);
  animation: uptime-sweep 6.5s var(--ease-out) infinite;
}

@keyframes uptime-sweep {
  0% { left: -72px; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

blockquote {
  font: 500 clamp(28px, 3.6vw, 44px) / 1.2 Manrope, sans-serif;
  margin: 36px 0 0;
  color: #9ca49f;
}

blockquote b { color: #fff; }

.guarantee .legal {
  display: block;
  color: #6f7a72;
  margin: 28px 0 0;
  font-size: 12px;
}

.visual-break {
  position: relative;
  margin: 0;
  width: 100%;
  overflow: hidden;
  background: #1b242b;
}

.visual-break img {
  width: 100%;
  height: min(62vh, 720px);
  object-fit: cover;
  object-position: center;
  filter: saturate(.82) contrast(1.04);
}

.visual-break::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.visual-break.tone-ink::after {
  background: linear-gradient(180deg, rgba(27, 36, 43, .08) 28%, rgba(27, 36, 43, .58) 100%);
}

.visual-break.tone-ink:not(:has(figcaption))::after {
  background: linear-gradient(180deg, rgba(27, 36, 43, .06), rgba(27, 36, 43, .22));
}

.visual-break.tone-paper {
  background: var(--paper);
}

.visual-break.tone-paper img {
  height: min(56vh, 640px);
  object-position: center 58%;
  filter: saturate(.7) contrast(1.02);
}

.visual-break.tone-paper::after {
  background:
    linear-gradient(180deg, var(--paper) 0%, transparent 8%, transparent 90%, var(--white) 100%);
}

.visual-break figcaption {
  position: absolute;
  left: max(24px, calc((100% - 1180px) / 2));
  right: 24px;
  bottom: clamp(24px, 4vw, 48px);
  z-index: 1;
  max-width: min(34ch, 86%);
  color: #fbfcfb;
}

.visual-break figcaption span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: #7ec9c2;
  margin-bottom: 12px;
}

.visual-break figcaption p {
  margin: 0;
  font: 500 clamp(20px, 2.6vw, 32px) / 1.2 Manrope, sans-serif;
  letter-spacing: -.03em;
}

.visual-break.has-claim figcaption {
  max-width: none;
}

.visual-break.has-claim figcaption p {
  font: 600 clamp(28px, 4.4vw, 56px) / .98 Manrope, sans-serif;
  letter-spacing: -.045em;
}

.statement {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 0;
}

.statement h2 { max-width: 14ch; }

.visual-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(86vh, 860px);
  padding: 96px 0 72px;
  overflow: hidden;
  background: #1b242b;
}

.visual-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(.75) contrast(1.04) brightness(.92);
}

.visual-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27, 36, 43, .12) 12%, rgba(27, 36, 43, .28) 48%, rgba(27, 36, 43, .78) 100%);
  pointer-events: none;
}

.visual-stage .shell {
  position: relative;
  z-index: 1;
}

.visual-stage h2 { color: #fbfcfb; }

.visual-stage h2 span { color: #c5cdc8; }

.technology {
  background: #eef1ed;
  padding: 150px 0;
}

.tech-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.technology p,
.cost > p {
  color: var(--muted);
  line-height: 1.7;
}

.technology p { max-width: 420px; }

.technology h2 { margin-bottom: 24px; }
.technology p { margin: 0; }

.layers { position: relative; }

.result { display: flex; flex-direction: column; gap: 8px; }

.result span {
  background: var(--white);
  border: 1px solid #d8dfda;
  border-radius: 10px;
  padding: 20px 24px;
  font: 600 22px Manrope, sans-serif;
  letter-spacing: .05em;
  transition: border-color .4s var(--ease);
}

.layers.is-open .result span,
.layers:hover .result span { border-color: #c5d4ce; }

.under-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .6s var(--ease);
}

.layers.is-open .under-wrap,
.layers:hover .under-wrap { grid-template-rows: 1fr; }

@media (max-width: 800px), (hover: none) {
  .under-wrap { grid-template-rows: 1fr; }
}

.under {
  overflow: hidden;
  min-height: 0;
}

.under-label {
  margin: 22px 0 12px;
  font-size: 8px;
  letter-spacing: .18em;
  color: var(--muted);
}

.under-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 4px;
}

.under-grid span {
  font-size: 10px;
  border: 1px solid #cbd4ce;
  border-radius: 99px;
  padding: 8px 12px;
  color: #5f6864;
  background: rgba(255,255,255,.45);
}

.cost { padding: 140px 0; }
.cost h2 { margin-bottom: 64px; }

.equation {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 18px;
}

.equation div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}

.equation div:hover {
  border-color: #c9d4ce;
  transform: translateY(-2px);
}

.equation div strong {
  font: 600 54px Manrope, sans-serif;
  color: #c3cac6;
}

.equation div span {
  font-size: 12px;
  letter-spacing: .1em;
  font-weight: 700;
}

.equation i {
  font: 400 34px Manrope, sans-serif;
  align-self: center;
  color: #9ca49f;
}

.equation .accent {
  background: var(--soft);
  border-color: #c7d9d4;
}

.cost > p { margin: 36px 0 0; font-size: 18px; }

.fit {
  background: var(--white);
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 140px 0;
}

.fitline {
  font: 500 clamp(28px, 4vw, 50px) Manrope, sans-serif;
  color: var(--accent);
  margin: 56px 0 80px;
}

.fitgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.fitgrid article {
  padding: 28px 28px 8px 0;
  border-right: 1px solid var(--line);
  transition: opacity .4s var(--ease);
}

.fitgrid:hover article { opacity: .42; }
.fitgrid article:hover { opacity: 1; }

.fitgrid article:last-child { border-right: 0; }
.fitgrid h3 { font: 600 24px / 1.2 Manrope, sans-serif; margin: 12px 0 0; }

.apply {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  padding: 120px 0 140px;
}

.apply-copy p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
}

.apply-copy h2 { margin-bottom: 24px; }

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  transition: border-color .4s var(--ease);
}

.form:focus-within { border-color: #c5d4ce; }

.progress {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
}

.progress span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f0f2f0;
  font-size: 10px;
  transition: background .4s var(--ease), color .4s var(--ease);
}

.progress span.active {
  background: var(--ink);
  color: #fff;
}

.form-step { display: none; }

.form-step.active {
  display: block;
  animation: form-in .45s var(--ease) both;
}

.success { display: none; }

.success.is-on {
  display: block;
  animation: form-in .5s var(--ease) both;
}

@keyframes form-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.form label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin: 17px 0;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f7f8f6;
  font: 14px Inter, sans-serif;
  outline: none;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border-color: #8bb8b2;
  background: #fff;
}

.form .btn { margin-top: 12px; width: 100%; }

.form .btn:disabled {
  cursor: wait;
  opacity: .65;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  display: none;
  margin: 14px 0 0;
  color: #9b3b32;
  font-size: 14px;
  line-height: 1.5;
}

.form-error.is-on { display: block; }

.success strong { font: 600 30px Manrope, sans-serif; }
.success p { color: var(--muted); line-height: 1.6; }

footer {
  background: #1b242b;
  color: #fff;
  padding: 70px 0;
}

.footer-logo {
  display: block;
  margin: 0;
  width: fit-content;
}

.footer-logo img {
  width: min(280px, 100%);
  height: auto;
  display: block;
}

footer .shell {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  position: relative;
}

footer p { color: #78817b; }

footer a {
  display: block;
  color: #aab2ad;
  margin: 0 0 12px;
  width: fit-content;
  position: relative;
  transition: color .35s var(--ease);
}

footer a:hover { color: #fff; }

footer small {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #657069;
  font-size: 9px;
  letter-spacing: .08em;
}

footer a.is-current { color: #fff; }

.legal-page {
  padding: 140px 0 120px;
}

.legal-head {
  max-width: 16ch;
  margin-bottom: 28px;
}

.legal-head h1 {
  font: 600 clamp(40px, 5.4vw, 72px) / .98 Manrope, sans-serif;
  letter-spacing: -.055em;
  margin: 0;
}

.legal-switch {
  display: flex;
  gap: 20px;
  margin: 0 0 56px;
}

.legal-switch a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
}

.legal-switch a:hover,
.legal-switch a[aria-current="page"] { color: var(--ink); }

.legal-switch a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--ink);
}

.legal-body {
  max-width: 68ch;
}

.legal-page .legal-body h2 {
  font: 600 clamp(22px, 2.4vw, 28px) / 1.2 Manrope, sans-serif;
  letter-spacing: -.03em;
  margin: 48px 0 14px;
}

.legal-body h3 {
  font: 600 17px / 1.35 Manrope, sans-serif;
  margin: 28px 0 10px;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.legal-body p { margin: 0 0 14px; }

.legal-body ul {
  margin: 0 0 16px;
  padding-left: 1.2em;
}

.legal-body li + li { margin-top: 6px; }

.legal-body a {
  color: var(--ink);
  text-underline-offset: 3px;
}

.legal-facts {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 10px 24px;
  margin: 8px 0 28px;
}

.legal-facts dt {
  margin: 0;
  padding-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.legal-facts dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.placeholder {
  display: inline;
  background: var(--soft);
  color: var(--ink);
  border-radius: 4px;
  padding: 0 .28em;
  font-style: normal;
}

.legal-note {
  margin-top: 56px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.legal-note p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.65;
}

.reveal-in {
  opacity: 1;
  transform: none;
  animation: up .7s var(--ease) both;
}

html.has-motion .reveal:not(.is-in) {
  opacity: 0;
  transform: translateY(16px);
}

html.has-motion .reveal.is-in {
  animation: up .7s var(--ease) both;
}

html.has-motion .visual-break.reveal:not(.is-in) {
  transform: none;
}

html.has-motion .visual-break.reveal.is-in {
  animation: visual-in .9s var(--ease) both;
}

@keyframes visual-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .hero-inner { gap: 36px; }
  .core-wrap { width: min(440px, 42vw); }
  .flow {
    grid-template-columns: 140px 1fr 150px;
    gap: 20px;
  }
  .flow svg { display: none; }
  .equation div { padding: 22px; }
  .equation div strong { font-size: 42px; }
  .apply { gap: 48px; }
  .n3 { right: 0; }
}

@media (max-width: 800px) {
  .shell,
  .nav-bar { width: min(100% - 32px, 1180px); }

  .menu-btn { display: inline-flex; }
  .btn.small {
    margin-left: 0;
    padding: 9px 11px;
    font-size: 11px;
    white-space: nowrap;
  }
  .brand-name { letter-spacing: .1em; }

  .nav nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    margin: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    background: rgba(251, 252, 251, .98);
    border: 1px solid rgba(36, 48, 58, .08);
    border-radius: 12px;
  }

  .nav.is-open nav { display: flex; }

  .nav nav a {
    padding: 14px 16px;
    font-size: 15px;
    color: var(--ink);
  }

  .nav nav a::after { display: none; }

  .hero {
    min-height: 100svh;
    align-items: stretch;
  }

  .hero-media img { object-position: center 40%; }

  .hero::after {
    background: linear-gradient(180deg,
      rgba(244, 245, 242, .2) 0%,
      rgba(244, 245, 242, .12) 28%,
      rgba(244, 245, 242, .48) 62%,
      rgba(244, 245, 242, .9) 100%);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: end;
    min-height: 100svh;
    padding: 112px 0 48px;
  }

  .core-wrap { display: none; }

  .core-node { font-size: 7px; padding: 6px 8px; }
  .n2 { right: 0; }
  .n3 { right: 0; bottom: 10%; }

  .spin-slow,
  .spin-slower,
  .data-pulse,
  .p1, .p2, .p3 { animation: none; }

  .data-pulse { opacity: 0; }

  .outcomes-structure { display: none; }

  .outcome-list article { padding: 36px 0 28px; }

  .outcome-body { grid-template-columns: 40px 1fr; }
  .outcome-list h3 { white-space: normal; }

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

  .metrics div {
    border-right: 1px solid #3c474e;
    border-bottom: 1px solid #3c474e;
    padding: 24px 16px 24px 0;
  }

  .metrics div:not(:first-child) { padding-left: 16px; }
  .metrics div:nth-child(2n) { border-right: 0; padding-right: 0; }
  .metrics div:nth-child(n+3) { border-bottom: 0; }

  .guarantee,
  .responsibility,
  .fit {
    min-height: auto;
    padding: 88px 0;
  }

  .visual-break img,
  .visual-break.tone-paper img {
    height: min(50vh, 560px);
  }

  .visual-break figcaption {
    left: 16px;
    right: 16px;
    bottom: 22px;
    max-width: min(34ch, 92%);
  }

  .visual-break.has-claim figcaption {
    max-width: min(16ch, 92%);
  }

  .visual-stage {
    min-height: min(72vh, 640px);
    padding: 88px 0 56px;
  }

  .visual-stage > img { object-position: center 38%; }

  .guarantee-head { display: block; }
  .status { margin-top: 28px; display: inline-flex; }

  .flow {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
  }

  .flow-sources {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .flow-sources span,
  .flow-company { transform: none; }

  .flow-core { order: 2; }
  .flow-company { order: 3; padding: 20px; }

  .fitgrid,
  .tech-inner,
  .apply { grid-template-columns: 1fr; }

  .fitgrid:hover article { opacity: 1; }

  .equation { grid-template-columns: 1fr; }
  .equation i { text-align: center; }
  .equation div:hover { transform: none; }

  .layers.is-open .under-wrap,
  .layers:hover .under-wrap { grid-template-rows: 1fr; }

  .apply { gap: 44px; }

  footer .shell { grid-template-columns: 1fr 1fr; }
  footer .shell > div:first-child { grid-column: 1 / -1; }

  section { padding: 88px 0; }

  .legal-page { padding: 112px 0 88px; }

  .legal-facts {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }

  .legal-facts dt { padding-top: 12px; }
}

@media (max-width: 520px) {
  .hero h1,
  .shell h2,
  .fit h2,
  .technology h2,
  .statement h2,
  .guarantee h2,
  .legal-head h1 { font-size: clamp(34px, 10.5vw, 58px); }

  .hero-media img { object-position: center 22%; }

  .outcome-word { font-size: clamp(22px, 6.4vw, 32px); }
  .outcome-word.is-long { font-size: clamp(20px, 5.6vw, 28px); }
}

@media (max-width: 420px) {
  .nav .btn.small i { display: none; }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero-inner { padding: 80px 0 24px; }
  .core-wrap { display: none; }

  .visual-break img,
  .visual-break.tone-paper img {
    height: min(78vh, 360px);
  }

  .visual-stage {
    min-height: 100vh;
    padding: 0 0 32px;
  }
}

@media print {
  html.has-motion .reveal,
  html.has-motion .outcome-word,
  html.has-motion .flow-sources span,
  html.has-motion .flow-company,
  html.has-motion .flow-core {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  html.has-motion .flow path { stroke-dashoffset: 0 !important; }
  .under-wrap { grid-template-rows: 1fr !important; }
  .nav { position: static; }
  .legal-page { padding: 48px 0; }
  .hero,
  .guarantee,
  .responsibility,
  .fit,
  .statement { min-height: 0; }

  .visual-stage { min-height: 0; padding: 48px 0; }
  .visual-stage > img,
  .visual-break img,
  .hero-media img { height: 240px; position: relative; }
  .hero,
  .hero-inner { min-height: 0; }
  .hero::after { display: none; }
  .core-wrap { display: none; }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal-ready,
  .reveal,
  .outcome-word,
  .flow-sources span,
  .flow-company,
  .flow-core {
    opacity: 1 !important;
    transform: none !important;
  }

  .flow path { stroke-dashoffset: 0 !important; }

  .under-wrap { grid-template-rows: 1fr; }

  .core-scene { transform: none !important; }

  .data-pulse { opacity: 0; }
}
