:root {
  --black: #0c0d0e;
  --black-2: #141516;
  --ink: #111214;
  --paper: #f3f3f0;
  --paper-2: #e8e8e4;
  --grey: #a5a8aa;
  --line-dark: rgba(255,255,255,.14);
  --line-light: rgba(17,18,20,.15);
  --ease: cubic-bezier(.22,.61,.36,1);
  --page: clamp(22px, 4.5vw, 76px);
  --font-sans: "Manrope", "Avenir Next", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 400;
  font-optical-sizing: auto;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.hero h1,
.section-grid h2,
.principles-head h2,
.focus-copy h2,
.arrival-top h2,
.statement,
.capability-card h3,
.principle-row h3,
.contact-email,
.logo,
.footer-brand {
  font-family: var(--font-sans);
  font-synthesis: none;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: #d9d9d2; color: #0b0c0d; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  padding: 0 var(--page);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, color .35s ease, height .35s ease;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(12,13,14,.86);
  backdrop-filter: blur(18px);
  border-color: rgba(255,255,255,.1);
}
.logo {
  justify-self: start;
  font-size: 31px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: -.065em;
  transform: translateY(-1px);
}
.nav { display: flex; align-items: center; gap: 32px; }
.nav a,
.header-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .012em;
  opacity: .82;
  transition: opacity .2s ease;
}
.nav a:hover, .header-cta:hover { opacity: 1; }
.header-cta { justify-self: end; }
.header-cta span { margin-left: 6px; }

.section-dark { background: var(--black); color: #fff; }
.section-light { background: var(--paper); color: var(--ink); }
.section-neutral { background: #dededa; color: var(--ink); }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 150px var(--page) 72px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 2vw;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 44vw;
  height: 44vw;
  right: -13vw;
  top: 7vh;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.055), rgba(255,255,255,0) 68%);
  pointer-events: none;
}
.hero-copy { max-width: 760px; position: relative; z-index: 3; }
.eyebrow {
  margin: 0 0 28px;
  font-size: 10px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: .19em;
  color: rgba(255,255,255,.52);
}
.eyebrow.dark { color: rgba(17,18,20,.5); }
.hero h1,
.section-grid h2,
.principles-head h2,
.focus-copy h2,
.arrival-top h2 {
  margin: 0;
  font-weight: 450;
  letter-spacing: -.055em;
  line-height: .95;
}
.hero h1 { font-size: clamp(58px, 6.9vw, 126px); }
.hero-sub {
  max-width: 610px;
  margin: 35px 0 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
  letter-spacing: -.015em;
}
.hero-actions { margin-top: 42px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 620;
  letter-spacing: .01em;
  transition: transform .25s var(--ease), background .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: #f5f5f1; color: #0f1011; }
.button-light:hover { background: #fff; }
.text-link {
  position: relative;
  font-size: 12px;
  color: rgba(255,255,255,.76);
  padding-bottom: 5px;
}
.text-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: rgba(255,255,255,.35);
  transform-origin: right;
  transition: transform .25s var(--ease);
}
.text-link:hover::after { transform: scaleX(.25); }
.text-link span { padding-left: 4px; }

.hero-visual { position: relative; min-height: 650px; display: grid; place-items: center; }
.visual-shell {
  width: min(100%, 700px);
  aspect-ratio: 1;
  position: relative;
  transition: transform .55s var(--ease);
}
.hero-svg { width: 100%; height: 100%; overflow: visible; }
.grid path { stroke: rgba(255,255,255,.09); stroke-width: .8; fill: none; }
.room-lines path { stroke: url(#fadeStroke); stroke-width: 1.25; fill: none; }
.scan-rings circle {
  fill: none;
  stroke: rgba(255,255,255,.12);
  stroke-width: 1;
  transform-origin: center;
  animation: scanPulse 5.8s ease-in-out infinite;
}
.scan-rings circle:nth-child(2) { animation-delay: -.8s; }
.scan-rings circle:nth-child(3) { animation-delay: -1.6s; }
.scan-rings circle:nth-child(4) { animation-delay: -2.4s; }
.scan-rings circle:nth-child(5) { animation-delay: -3.2s; }
.route { fill: none; stroke-linecap: round; }
.route-base { stroke: rgba(255,255,255,.18); stroke-width: 2; }
.route-motion {
  stroke: #efefec;
  stroke-width: 2.2;
  stroke-dasharray: 5 14;
  animation: routeTravel 4.2s linear infinite;
}
.obstacles > * { fill: rgba(255,255,255,.035); stroke: rgba(255,255,255,.22); stroke-width: 1; }
.robot-node circle, .robot-node path { vector-effect: non-scaling-stroke; }
.robot-halo { fill: rgba(255,255,255,.06); stroke: rgba(255,255,255,.28); stroke-width: 1; }
.robot-core { fill: #f3f3ee; }
.robot-node path { stroke: rgba(255,255,255,.72); stroke-width: 1.5; }
.micro-points circle { fill: rgba(255,255,255,.72); animation: flicker 3.2s ease-in-out infinite; }
.micro-points circle:nth-child(even) { animation-delay: -1.4s; }
.visual-label {
  position: absolute;
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  font-weight: 520;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.48);
  white-space: nowrap;
}
.visual-label span { color: rgba(255,255,255,.22); margin-right: 10px; }
.label-a { left: 2%; top: 31%; }
.label-b { right: -2%; top: 45%; }
.label-c { left: 22%; bottom: 7%; }
.hero-bottom {
  position: absolute;
  left: var(--page); right: var(--page); bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  font-size: 9px;
  letter-spacing: .18em;
  color: rgba(255,255,255,.36);
}
.hero-bottom-center { justify-self: center; }
.hero-bottom span:last-child { justify-self: end; }

.intro-section { padding: 128px var(--page) 110px; position: relative; }
.section-number {
  position: absolute;
  top: 40px;
  right: var(--page);
  font-size: 10px;
  letter-spacing: .18em;
  color: rgba(17,18,20,.38);
}
.section-grid {
  display: grid;
  grid-template-columns: .48fr 1.1fr .8fr;
  gap: clamp(30px, 5vw, 90px);
  align-items: start;
  padding-bottom: 95px;
}
.section-grid h2,
.principles-head h2,
.focus-copy h2,
.arrival-top h2 { font-size: clamp(48px, 5.8vw, 105px); }
.lead-copy {
  margin: 2px 0 0;
  max-width: 560px;
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.55;
  letter-spacing: -.02em;
  color: rgba(17,18,20,.68);
}
.capability-grid {
  border-top: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.capability-card {
  min-height: 420px;
  padding: 24px 32px 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line-light);
}
.capability-card:first-child { border-left: 1px solid var(--line-light); }
.card-index { font-size: 10px; letter-spacing: .14em; color: rgba(17,18,20,.38); }
.capability-card h3 { margin: 0 0 15px; font-size: 31px; line-height: 1; letter-spacing: -.035em; font-weight: 500; }
.capability-card p { margin: 0; color: rgba(17,18,20,.58); line-height: 1.55; font-size: 14px; max-width: 340px; }
.card-icon { position: relative; width: 150px; height: 110px; align-self: center; }
.icon-perceive span {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  border: 1px solid rgba(17,18,20,.28);
  border-radius: 50%;
}
.icon-perceive span:nth-child(1) { width: 78px; height: 78px; }
.icon-perceive span:nth-child(2) { width: 132px; height: 132px; opacity: .45; }
.icon-perceive i { position: absolute; left: calc(50% - 4px); top: calc(50% - 4px); width: 8px; height: 8px; border-radius: 50%; background: var(--ink); }
.icon-adapt { display: grid; place-items: center; width: 170px; }
.icon-adapt svg { width: 100%; }
.icon-adapt path { fill: none; stroke: rgba(17,18,20,.65); stroke-width: 1.25; }
.icon-adapt circle { fill: var(--ink); }
.icon-care { display: grid; place-items: center; }
.care-ring { position: absolute; border: 1px solid rgba(17,18,20,.25); border-radius: 50%; }
.care-ring.r1 { width: 86px; height: 86px; }
.care-ring.r2 { width: 124px; height: 124px; border-style: dashed; opacity: .65; }
.care-dot { width: 16px; height: 16px; background: var(--ink); border-radius: 50%; }

.statement-section {
  min-height: 760px;
  position: relative;
  padding: 135px var(--page);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
.statement-wrap { position: relative; z-index: 2; }
.statement {
  margin: 0;
  max-width: 1150px;
  font-size: clamp(56px, 7.2vw, 128px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 420;
}
.statement em { font-family: var(--font-sans); font-style: italic; font-weight: 360; letter-spacing: -.035em; }
.orbital-art {
  position: absolute;
  width: min(50vw, 720px);
  aspect-ratio: 1;
  right: -5vw;
  bottom: -27%;
}
.orbit { position: absolute; inset: 50%; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit-1 { width: 38%; height: 38%; }
.orbit-2 { width: 68%; height: 68%; border-style: dashed; animation: rotate 28s linear infinite; }
.orbit-3 { width: 100%; height: 100%; opacity: .5; }
.orbital-core { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: #f3f3ef; left: 50%; top: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 80px 28px rgba(255,255,255,.1); }

.principles-section { position: relative; padding: 126px var(--page) 110px; }
.principles-head { display: grid; grid-template-columns: .48fr 1.8fr; gap: 50px; padding-bottom: 88px; }
.principles-list { border-top: 1px solid var(--line-light); }
.principle-row {
  display: grid;
  grid-template-columns: 80px minmax(260px, .8fr) 1.35fr 24px;
  gap: 30px;
  align-items: center;
  min-height: 126px;
  border-bottom: 1px solid var(--line-light);
}
.principle-no { font-size: 10px; color: rgba(17,18,20,.38); letter-spacing: .14em; }
.principle-row h3 { margin: 0; font-size: clamp(22px, 2.2vw, 36px); font-weight: 520; letter-spacing: -.035em; }
.principle-row p { margin: 0; max-width: 530px; font-size: 14px; line-height: 1.6; color: rgba(17,18,20,.58); }
.row-mark { font-size: 22px; font-weight: 300; color: rgba(17,18,20,.45); }

.focus-section {
  min-height: 820px;
  padding: 120px var(--page);
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 8vw;
  align-items: center;
}
.focus-copy { max-width: 670px; }
.focus-copy p:not(.eyebrow) { max-width: 560px; font-size: 18px; line-height: 1.58; letter-spacing: -.015em; color: rgba(17,18,20,.68); }
.focus-copy .muted-copy { font-size: 13px; color: rgba(17,18,20,.45); margin-top: 26px; }
.focus-visual {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #161719;
  box-shadow: 0 34px 80px rgba(0,0,0,.16);
}
.floor-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.78), rgba(0,0,0,.15));
}
.clean-track {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.54), transparent);
  transform-origin: left center;
}
.track-1 { left: 13%; top: 25%; width: 70%; transform: rotate(12deg); }
.track-2 { left: 20%; top: 46%; width: 62%; transform: rotate(-17deg); }
.track-3 { left: 33%; top: 63%; width: 56%; transform: rotate(8deg); }
.track-4 { left: 12%; top: 75%; width: 43%; transform: rotate(-5deg); }
.clean-node {
  position: absolute;
  left: 52%; top: 46%;
  width: 98px; height: 98px;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(255,255,255,.03);
  box-shadow: 0 0 0 38px rgba(255,255,255,.025), 0 0 0 90px rgba(255,255,255,.014);
  display: grid; place-items: center;
  animation: nodeDrift 7s ease-in-out infinite;
}
.clean-node::before, .clean-node::after {
  content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.13);
}
.clean-node::before { width: 182px; height: 182px; }
.clean-node::after { width: 288px; height: 288px; border-style: dashed; }
.clean-node span { width: 20px; height: 20px; background: #f2f2ed; border-radius: 50%; box-shadow: 0 0 50px 14px rgba(255,255,255,.1); }
.focus-caption { position: absolute; left: 24px; right: 24px; bottom: 20px; display: flex; justify-content: space-between; font-family: var(--font-sans); font-variant-numeric: tabular-nums; font-weight: 520; font-size: 8px; letter-spacing: .12em; color: rgba(255,255,255,.36); }

.arrival-section { padding: 130px var(--page) 84px; }
.arrival-top { display: grid; grid-template-columns: .48fr 1.8fr; gap: 50px; padding-bottom: 90px; }
.arrival-grid { border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); display: grid; grid-template-columns: .95fr 1.05fr; }
.arrival-copy { padding: 48px 7vw 48px 0; }
.arrival-copy > p:first-child { margin: 0; font-size: clamp(19px, 1.7vw, 28px); line-height: 1.48; letter-spacing: -.02em; color: rgba(255,255,255,.78); }
.arrival-small { margin: 36px 0 0; max-width: 550px; font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.42); }
.arrival-contact {
  min-height: 270px;
  padding: 42px 0 42px 4vw;
  border-left: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  align-items: end;
  transition: background .3s ease;
}
.arrival-contact:hover { background: rgba(255,255,255,.035); }
.contact-label { grid-column: 1 / -1; align-self: start; font-size: 9px; letter-spacing: .18em; color: rgba(255,255,255,.38); }
.contact-email { font-size: clamp(24px, 3vw, 54px); letter-spacing: -.04em; font-weight: 430; }
.contact-arrow { font-size: 28px; color: rgba(255,255,255,.5); margin-bottom: 3px; }
.coming-soon { margin-top: 55px; display: flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.48); }
.coming-dot { width: 7px; height: 7px; border-radius: 50%; background: #dcdcd7; box-shadow: 0 0 0 5px rgba(255,255,255,.07); animation: statusPulse 2.4s ease-in-out infinite; }

.site-footer {
  padding: 40px var(--page) 42px;
  background: var(--black);
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: .7fr 1.4fr .7fr;
  gap: 40px;
  align-items: end;
  color: #fff;
}
.footer-brand { font-size: clamp(46px, 5vw, 86px); font-weight: 650; letter-spacing: -.065em; line-height: .8; }
.footer-meta { font-size: 11px; line-height: 1.55; color: rgba(255,255,255,.38); }
.footer-meta p { margin: 0 0 4px; }
.footer-right { display: flex; gap: 24px; justify-content: flex-end; font-size: 11px; color: rgba(255,255,255,.48); }
.footer-right a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.capability-card:nth-child(2).reveal { transition-delay: .08s; }
.capability-card:nth-child(3).reveal { transition-delay: .16s; }

@keyframes scanPulse {
  0%,100% { opacity: .28; }
  50% { opacity: .8; }
}
@keyframes routeTravel { to { stroke-dashoffset: -76; } }
@keyframes flicker { 0%,100% { opacity: .2; } 50% { opacity: 1; } }
@keyframes rotate { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes nodeDrift { 0%,100% { transform: translate(-50%,-50%) translate(0,0); } 50% { transform: translate(-50%,-50%) translate(26px,-17px); } }
@keyframes statusPulse { 0%,100% { opacity: .45; } 50% { opacity: 1; } }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 155px; }
  .hero-copy { max-width: 850px; }
  .hero-visual { min-height: 540px; margin-top: 15px; }
  .visual-shell { width: min(84vw, 620px); }
  .section-grid { grid-template-columns: .35fr 1fr; }
  .section-grid .lead-copy { grid-column: 2; }
  .capability-card { min-height: 380px; }
  .focus-section { grid-template-columns: 1fr; gap: 70px; }
  .focus-copy { max-width: 800px; }
  .focus-visual { min-height: 570px; }
  .site-footer { grid-template-columns: 1fr 1.3fr; }
  .footer-right { grid-column: 2; }
}

@media (max-width: 760px) {
  :root { --page: 20px; }
  .site-header { height: 68px; }
  .site-header.scrolled { height: 62px; }
  .logo { font-size: 28px; }
  .header-cta { font-size: 10px; }
  .hero { min-height: auto; padding-top: 125px; padding-bottom: 88px; }
  .hero h1 { font-size: clamp(53px, 15vw, 82px); }
  .hero-sub { margin-top: 26px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 32px; }
  .hero-visual { min-height: 395px; margin-top: 10px; }
  .visual-shell { width: 108vw; margin-left: -8vw; }
  .visual-label { display: none; }
  .hero-bottom { bottom: 16px; }
  .hero-bottom-center { display: none; }
  .hero-bottom { grid-template-columns: 1fr 1fr; }

  .intro-section, .principles-section, .arrival-section { padding-top: 90px; padding-bottom: 75px; }
  .section-grid, .principles-head, .arrival-top { display: block; padding-bottom: 55px; }
  .section-grid h2, .principles-head h2, .focus-copy h2, .arrival-top h2 { font-size: clamp(46px, 13vw, 72px); }
  .lead-copy { margin-top: 30px; font-size: 17px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-card, .capability-card:first-child { border-left: 0; border-right: 0; border-bottom: 1px solid var(--line-light); min-height: 330px; padding-left: 0; padding-right: 0; }

  .statement-section { min-height: 620px; padding-top: 94px; padding-bottom: 100px; }
  .statement { font-size: clamp(49px, 13.8vw, 76px); }
  .orbital-art { width: 90vw; right: -35vw; bottom: -10%; }

  .principles-head .eyebrow, .arrival-top .eyebrow { margin-bottom: 22px; }
  .principle-row { grid-template-columns: 44px 1fr 18px; gap: 14px; padding: 22px 0; }
  .principle-row p { grid-column: 2 / 4; }
  .row-mark { grid-column: 3; grid-row: 1; }

  .focus-section { min-height: auto; padding: 88px var(--page); gap: 55px; }
  .focus-copy p:not(.eyebrow) { font-size: 16px; }
  .focus-visual { min-height: 440px; }

  .arrival-grid { grid-template-columns: 1fr; }
  .arrival-copy { padding: 40px 0; }
  .arrival-contact { border-left: 0; border-top: 1px solid var(--line-dark); padding: 36px 0; min-height: 210px; }
  .contact-email { font-size: clamp(27px, 8vw, 40px); }

  .site-footer { grid-template-columns: 1fr; gap: 26px; }
  .footer-right { grid-column: 1; justify-content: flex-start; }
}

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