:root {
  --ink: #050507;
  --ink-soft: #0c0c10;
  --paper: #f5f4f0;
  --paper-deep: #e9e8e3;
  --muted: #a6a6af;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(10, 10, 14, 0.14);
  --blue: #72e6ff;
  --violet: #8576ff;
  --purple: #d37bff;
  --green: #c9f1d4;
  --gold: #bd8f53;
  --container: min(90vw, 1440px);
  --header-height: 84px;
  --radius: 28px;
  --hero-progress: 0;
  --hero-copy-opacity: 1;
  color-scheme: dark;
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--violet);
  color: #fff;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 100px;
  background: #fff;
  color: #000;
  transform: translateY(-150%);
  transition: transform 0.25s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow,
.section-index,
.feature__metric,
.finish-stage__label,
.tech-card > span,
.footer__links span {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.display {
  margin: 0;
  max-width: 1050px;
  font-size: clamp(3.25rem, 7.4vw, 8.75rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.display--dark {
  color: #0a0a0d;
}

.display em {
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.section {
  position: relative;
  padding-block: clamp(110px, 12vw, 220px);
}

.section--ink {
  background: var(--ink);
}

.section--light {
  background: var(--paper);
  color: #0a0a0d;
}

.section--soft {
  background: var(--paper-deep);
  color: #0a0a0d;
}

.section--green {
  background: var(--green);
  color: #092016;
}

.section-index {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 210px;
  color: currentColor;
  opacity: 0.58;
}

.section-index span:first-child {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.56rem;
}

.section-heading {
  display: grid;
  gap: 72px;
  margin-bottom: 100px;
}

.section-heading--row {
  grid-template-columns: 0.45fr 1.55fr;
  align-items: start;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 650;
  backdrop-filter: blur(12px);
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, transform 0.25s ease;
}

.button:hover,
.button:focus-visible {
  border-color: #fff;
  background: #fff;
  color: #050507;
}

.button--small {
  min-height: 42px;
  padding-inline: 20px;
}

.button--light {
  min-height: 62px;
  gap: 36px;
  border-color: #fff;
  background: #fff;
  color: #050507;
}

.button--light:hover,
.button--light:focus-visible {
  background: transparent;
  color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.86rem;
}

.text-link span {
  transition: transform 0.3s ease;
}

.text-link:hover span {
  transform: translate(4px, 4px);
}

/* Navigation */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  transition: height 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}

.site-header::before {
  position: absolute;
  inset: 0;
  border-bottom: 1px solid transparent;
  background: rgba(5, 5, 7, 0);
  backdrop-filter: blur(0);
  content: "";
  transition: inherit;
}

.site-header.is-scrolled {
  height: 66px;
}

.site-header.is-scrolled::before {
  border-color: rgba(255,255,255,.09);
  background: rgba(5,5,7,.68);
  backdrop-filter: blur(24px) saturate(140%);
}

.nav {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand img {
  width: 42px;
  height: 24px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 44px);
}

.nav-menu > a:not(.button) {
  position: relative;
  color: rgba(255,255,255,.72);
  font-size: 0.73rem;
  transition: color 0.25s ease;
}

.nav-menu > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: #fff;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.nav-menu > a:hover {
  color: #fff;
}

.nav-menu > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: #fff;
  transition: transform .3s ease;
}

/* Hero */
.hero {
  position: relative;
  height: 240vh;
  background: #030304;
}

.hero__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: min(680px, 100svh);
  overflow: hidden;
  isolation: isolate;
}

.hero__aurora {
  position: absolute;
  z-index: -2;
  inset: -30%;
  background:
    radial-gradient(circle at 50% 52%, rgba(103,84,255, calc(.2 + var(--hero-progress) * .08)), transparent 29%),
    radial-gradient(circle at 28% 35%, rgba(64,190,255,.1), transparent 21%),
    radial-gradient(circle at 75% 64%, rgba(211,123,255,.08), transparent 23%);
  transform: scale(calc(1 + var(--hero-progress) * .6));
  filter: blur(10px);
}

.hero__grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 9vw 9vw;
  mask-image: radial-gradient(circle at 50% 55%, #000, transparent 68%);
  opacity: calc(.3 - var(--hero-progress) * .25);
  transform: perspective(800px) rotateX(68deg) translateY(calc(15vh + var(--hero-progress) * 30vh)) scale(1.9);
}

.hero__copy {
  position: absolute;
  z-index: 4;
  top: 17%;
  right: 0;
  left: 0;
  opacity: var(--hero-copy-opacity);
  transform: translateY(calc(var(--hero-progress) * -70px));
}

.hero__eyebrow {
  margin: 0 0 28px;
  color: rgba(255,255,255,.56);
}

.hero h1 {
  margin: 0;
  max-width: 1050px;
  font-size: clamp(4rem, 9.1vw, 10.5rem);
  font-weight: 480;
  line-height: 0.84;
  letter-spacing: -0.075em;
}

.hero__lead {
  margin: 34px 0 0 4px;
  color: rgba(255,255,255,.62);
  font-size: clamp(.95rem, 1.3vw, 1.25rem);
  line-height: 1.6;
}

.scroll-cue {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  color: rgba(255,255,255,.58);
  font-size: .72rem;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 28px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50px;
}

.scroll-cue i::after {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 2px;
  height: 6px;
  border-radius: 4px;
  background: #fff;
  content: "";
  animation: scroll-dot 1.8s ease-in-out infinite;
}

.hero__stage {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  transform: translate3d(0, calc(54vh - var(--hero-progress) * 58vh), 0) scale(calc(.66 + var(--hero-progress) * .14));
  transform-origin: 72% 28%;
  will-change: transform;
}

.hero-product {
  position: absolute;
  top: 4%;
  left: 72%;
  width: clamp(540px, 55vw, 780px);
  margin: 0;
  will-change: transform;
}

.hero-product img {
  width: 100%;
  height: auto;
  display: block;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero-product--banner {
  z-index: 3;
  transform: translateX(-50%);
}

.hero__chapter {
  position: absolute;
  z-index: 5;
  right: 5vw;
  bottom: 5vh;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.42);
  font-size: .53rem;
  font-weight: 700;
  letter-spacing: .2em;
}

.hero__chapter b {
  width: 52px;
  height: 1px;
  background: currentColor;
}

/* Manifesto */
.manifesto {
  z-index: 2;
}

.manifesto__grid {
  display: grid;
  grid-template-columns: 0.38fr 1.62fr;
  gap: 5vw;
}

.manifesto .kicker {
  margin: 0 0 56px;
  color: #78787e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.1vw, 2.3rem);
  font-style: italic;
}

.manifesto__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6vw;
  margin-top: 80px;
  padding-top: 34px;
  border-top: 1px solid var(--line-light);
}

.manifesto__body p {
  margin: 0;
  color: #5e5e63;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  line-height: 1.65;
}

/* Purpose */
.purpose {
  overflow: hidden;
}

.purpose::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(123,106,255,.1), transparent 42%);
  content: "";
}

.purpose .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.purpose__panel {
  position: relative;
  min-height: 620px;
  padding: clamp(38px, 5vw, 80px);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.015));
}

.purpose__panel--accent {
  margin-top: 140px;
  background: linear-gradient(145deg, rgba(114,230,255,.13), rgba(133,118,255,.09) 55%, rgba(211,123,255,.07));
}

.purpose__number {
  position: absolute;
  right: 30px;
  bottom: -45px;
  color: rgba(255,255,255,.035);
  font-size: 16rem;
  font-weight: 700;
  letter-spacing: -.1em;
}

.purpose__panel .eyebrow {
  color: var(--blue);
}

.purpose__panel h2 {
  position: relative;
  margin: 90px 0 40px;
  max-width: 650px;
  font-size: clamp(2.4rem, 4vw, 5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.05em;
}

.purpose__panel > p:last-child {
  position: relative;
  max-width: 460px;
  margin: 0;
  color: rgba(255,255,255,.57);
  font-size: 1rem;
  line-height: 1.7;
}

/* Values */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.value-card {
  position: relative;
  min-height: 320px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: 18px;
  background: rgba(255,255,255,.38);
  transform-style: preserve-3d;
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease;
}

.value-card::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(133,118,255,.22), transparent 65%);
  content: "";
  opacity: 0;
  transition: opacity .4s ease;
}

.value-card:hover {
  border-color: rgba(104,89,255,.28);
  background: #fff;
  box-shadow: 0 24px 70px rgba(45,40,80,.09);
}

.value-card:hover::after {
  opacity: 1;
}

.value-card > span {
  color: #9b9ba0;
  font-size: .66rem;
}

.value-card h3 {
  margin: 145px 0 12px;
  font-size: 1.55rem;
  font-weight: 550;
  letter-spacing: -.03em;
}

.value-card p {
  max-width: 270px;
  margin: 0;
  color: #717176;
  line-height: 1.5;
}

/* Product intro and finishes */
.product-intro {
  overflow: hidden;
}

.product-intro__halo {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 110vw;
  height: 80vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126,105,255,.17), rgba(90,65,140,.06) 35%, transparent 67%);
  transform: translateX(-50%);
  filter: blur(40px);
}

.product-intro__top {
  position: relative;
  display: grid;
  grid-template-columns: .4fr 1.6fr;
}

.product-intro__title .eyebrow {
  color: var(--blue);
}

.product-intro__visual {
  position: relative;
  width: min(72vw, 1060px);
  margin: -2vw auto -7vw;
  overflow: hidden;
  background: #000;
  mask-image: linear-gradient(to bottom, transparent 0, #000 10%, #000 86%, transparent 100%);
}

.product-intro__visual img {
  width: 100%;
  mix-blend-mode: screen;
}

.product-intro__footer {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.product-intro__footer p {
  max-width: 540px;
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  line-height: 1.6;
}

.finishes__copy {
  display: grid;
  grid-template-columns: .4fr 1.6fr;
  align-items: start;
}

.finish-selector {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 80px 0 36px;
}

.finish-tab {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid rgba(10,10,14,.1);
  border-radius: 100px;
  background: rgba(255,255,255,.55);
  color: #6e6e73;
  cursor: pointer;
  font-size: .72rem;
  transition: all .3s ease;
}

.finish-tab i {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: #111;
  box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}

.finish-tab[data-finish="gold"] i { background: #b8854e; }
.finish-tab[data-finish="silver"] i { background: #b9b9bc; }

.finish-tab.is-active {
  border-color: #0a0a0d;
  background: #0a0a0d;
  color: #fff;
}

.finish-stage {
  position: relative;
  width: min(75vw, 980px);
  aspect-ratio: 1.35;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 50% 50% 28px 28px;
  background: #000;
}

@media (min-width: 821px) {
  .finish-stage {
    border-radius: 28px;
  }
}

.finish-stage__glow {
  position: absolute;
  z-index: 1;
  inset: auto 14% -20% 14%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125,106,255,.45), transparent 65%);
  filter: blur(45px);
  transition: background .5s ease;
}

.finish-stage img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  mix-blend-mode: screen;
  transition: opacity .3s ease, transform .8s cubic-bezier(.22,1,.36,1);
}

.finish-stage:hover img {
  transform: scale(1.025);
}

.finish-stage.is-changing img {
  opacity: 0;
  transform: scale(.97);
}

.finish-stage__label {
  position: absolute;
  z-index: 3;
  right: 36px;
  bottom: 28px;
  left: 36px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.52);
}

.finish-stage__label strong {
  color: #fff;
}

/* Feature chapters */
.feature {
  position: relative;
  height: 185vh;
  background: #030304;
}

.feature__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
}

.feature__sticky > img {
  position: absolute;
  z-index: -2;
  top: -33%;
  right: -3%;
  width: min(66vw, 980px);
  max-width: none;
  mix-blend-mode: screen;
  transform: scale(1.18);
}

.feature__veil {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, #030304 10%, rgba(3,3,4,.78) 38%, rgba(3,3,4,.05) 76%), linear-gradient(0deg, #030304 0, transparent 30%);
}

.feature__content {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.feature__content .eyebrow {
  margin-bottom: 28px;
  color: var(--blue);
}

.feature__content h2 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 10rem);
  font-weight: 500;
  line-height: .86;
  letter-spacing: -.075em;
}

.feature__content > p:last-of-type {
  max-width: 480px;
  margin: 44px 0 0;
  color: rgba(255,255,255,.58);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.65;
}

.feature__metric {
  position: absolute;
  right: 5vw;
  bottom: 6vh;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  text-align: right;
}

.feature__metric b {
  color: #fff;
  font-size: 1rem;
}

.feature--performance {
  background: #080711;
}

.feature--performance .feature__sticky {
  background: radial-gradient(circle at center, rgba(109,88,255,.2), transparent 38%), #07070b;
}

.feature__content--center {
  position: relative;
  z-index: 2;
  align-items: center;
  text-align: center;
}

.feature__content--center > p:last-of-type {
  max-width: 630px;
}

.performance-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(68vw, 900px);
  aspect-ratio: 1;
  border: 1px solid rgba(139,121,255,.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 100px rgba(100,76,255,.08), 0 0 120px rgba(90,64,255,.09);
}

.performance-orb i {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(114,230,255,.14);
  border-radius: 48% 52% 56% 44%;
  animation: orb-spin 14s linear infinite;
}

.performance-orb i:nth-child(2) { inset: 20%; animation-direction: reverse; animation-duration: 11s; }
.performance-orb i:nth-child(3) { inset: 33%; animation-duration: 8s; }

.feature-stats {
  display: flex;
  gap: clamp(30px, 7vw, 100px);
  margin-top: 70px;
}

.feature-stats span {
  display: flex;
  flex-direction: column;
  color: rgba(255,255,255,.48);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.feature-stats strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -.05em;
  text-transform: none;
}

.feature--cooling {
  background: #07090b;
}

.feature__image-crop {
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  width: 56%;
  height: 100%;
  overflow: hidden;
  background: #000;
  mask-image: linear-gradient(90deg, transparent 0, #000 20%);
}

.feature__image-crop img {
  width: 120%;
  max-width: none;
  height: 120%;
  object-fit: cover;
  object-position: center 45%;
  mix-blend-mode: screen;
  transform: translate(-8%, -10%) scale(1.1);
}

.airflow span {
  position: absolute;
  z-index: -1;
  top: 70%;
  right: -10%;
  width: 74%;
  height: 160px;
  border-top: 1px solid rgba(114,230,255,.28);
  border-radius: 50%;
  transform: rotate(-13deg);
  animation: airflow 4s ease-in-out infinite;
}

.airflow span:nth-child(2) { top: 64%; animation-delay: -.8s; }
.airflow span:nth-child(3) { top: 58%; animation-delay: -1.6s; }
.airflow span:nth-child(4) { top: 52%; animation-delay: -2.4s; }

.quiet-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 52px;
  padding: 14px 20px;
  border: 1px solid rgba(114,230,255,.23);
  border-radius: 100px;
  background: rgba(114,230,255,.06);
  color: rgba(255,255,255,.54);
  font-size: .72rem;
}

.quiet-badge b {
  color: var(--blue);
  font-size: 1.25rem;
}

.feature--intelligence .feature__sticky {
  background: radial-gradient(circle at 50% 50%, rgba(180,90,255,.17), transparent 38%), #050407;
}

.neural-grid {
  position: absolute;
  inset: -20%;
  background-image: radial-gradient(circle, rgba(211,123,255,.65) 0 1px, transparent 1.5px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, #000, transparent 60%);
  animation: neural-drift 16s linear infinite;
}

/* Details */
.details__heading {
  display: grid;
  grid-template-columns: .4fr 1.6fr;
  margin-bottom: 90px;
}

@media (min-width: 821px) {
  .details {
    padding-top: clamp(70px, 7vw, 120px);
  }

  .details__heading {
    margin-bottom: clamp(28px, 3vw, 44px);
  }

  .details .detail-shot.reveal--mask {
    clip-path: inset(0 0 0 0 round 18px);
  }
}

.details__gallery {
  display: grid;
  width: min(94vw, 1600px);
  grid-template-columns: 1.3fr .7fr;
  gap: 18px;
  margin-inline: auto;
}

.detail-shot {
  position: relative;
  height: 72vh;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #000;
}

.detail-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}

.detail-shot:hover img {
  transform: scale(1.045);
}

.detail-shot--large img { object-position: center 40%; }
.detail-shot--crop img { object-position: 44% 52%; transform: scale(1.45); }
.detail-shot--crop:hover img { transform: scale(1.5); }
.detail-shot--wide {
  grid-column: 1 / -1;
  height: 58vh;
}
.detail-shot--wide img { object-position: center 58%; transform: scale(1.1); }
.detail-shot--wide:hover img { transform: scale(1.15); }

.detail-shot figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: rgba(255,255,255,.64);
  font-size: .62rem;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Technology */
.technology {
  overflow: hidden;
}

.technology::before {
  position: absolute;
  inset: 10% -20% auto;
  height: 80%;
  background: radial-gradient(ellipse, rgba(85,72,180,.13), transparent 58%);
  content: "";
}

.technology .container {
  position: relative;
}

.technology__intro {
  display: grid;
  grid-template-columns: 1.5fr .5fr;
  align-items: end;
  gap: 6vw;
  margin: 80px 0 100px;
}

.technology__intro > p {
  margin: 0 0 12px;
  color: rgba(255,255,255,.5);
  font-size: 1.05rem;
  line-height: 1.7;
}

.technology__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tech-card {
  position: relative;
  min-height: 400px;
  padding: clamp(30px, 4vw, 56px);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.018));
}

.tech-card > span {
  color: var(--blue);
}

.tech-card h3 {
  margin: 120px 0 18px;
  font-size: clamp(2rem, 3.3vw, 4rem);
  font-weight: 500;
  letter-spacing: -.05em;
}

.tech-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,.52);
  line-height: 1.65;
}

.tech-card--main {
  grid-row: span 2;
  min-height: 816px;
}

.tech-card--main h3 {
  margin-top: 70px;
}

.tech-card--wide {
  grid-column: 1 / -1;
  min-height: 360px;
}

.tech-card--wide h3 {
  max-width: 850px;
  margin-top: 90px;
}

.tech-card--wide b {
  position: absolute;
  right: 50px;
  bottom: 26px;
  color: rgba(255,255,255,.05);
  font-size: clamp(4rem, 10vw, 10rem);
  letter-spacing: -.08em;
}

.chip-visual {
  position: absolute;
  right: 12%;
  bottom: 8%;
  left: 12%;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(133,118,255,.35);
  border-radius: 20%;
  background: radial-gradient(circle, rgba(133,118,255,.18), transparent 55%);
  box-shadow: inset 0 0 60px rgba(133,118,255,.1), 0 0 80px rgba(133,118,255,.12);
}

.chip-visual::before,
.chip-visual::after {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(114,230,255,.22);
  border-radius: 15%;
  content: "";
}

.chip-visual::after { inset: 28%; }
.chip-visual i { color: rgba(255,255,255,.85); font-size: 3rem; font-style: normal; font-weight: 800; }

.wave-visual {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 110px;
  background: repeating-radial-gradient(ellipse at 50% 120%, transparent 0 15px, rgba(114,230,255,.12) 16px 17px);
}

.nodes-visual i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 25px var(--purple);
}
.nodes-visual i:nth-child(1) { right: 14%; bottom: 18%; }
.nodes-visual i:nth-child(2) { right: 28%; bottom: 30%; background: var(--blue); box-shadow: 0 0 25px var(--blue); }
.nodes-visual i:nth-child(3) { right: 18%; bottom: 44%; }
.nodes-visual i:nth-child(4) { right: 38%; bottom: 18%; background: var(--violet); }

/* Sustainability */
.sustainability {
  overflow: hidden;
}

.sustainability::after {
  position: absolute;
  top: -30%;
  right: -15%;
  width: 75vw;
  aspect-ratio: 1;
  border: 1px solid rgba(9,32,22,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 10vw rgba(255,255,255,.08), 0 0 0 20vw rgba(255,255,255,.06);
  content: "";
}

.sustainability__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 8vw;
}

.sustainability .section-index {
  margin-bottom: 90px;
}

.sustainability .eyebrow {
  color: #24754c;
}

.sustainability__body {
  align-self: end;
}

.sustainability__body > p {
  max-width: 570px;
  margin: 0 0 80px;
  font-size: clamp(1.25rem, 2.2vw, 2.2rem);
  line-height: 1.45;
  letter-spacing: -.025em;
}

.sustainability__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sustainability__body li {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: baseline;
  padding: 20px 0;
  border-top: 1px solid rgba(9,32,22,.2);
}

.sustainability__body li strong {
  font-size: 1.8rem;
  font-weight: 550;
  letter-spacing: -.04em;
}

.sustainability__body li span {
  opacity: .65;
  font-size: .85rem;
}

/* Timeline */
.timeline__track {
  position: relative;
  width: 78%;
  margin-left: auto;
  padding-left: 70px;
}

.timeline__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: rgba(10,10,14,.12);
}

.timeline__line span {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: var(--timeline-progress, 0%);
  background: linear-gradient(var(--violet), var(--blue));
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 4vw;
  padding: 20px 0 90px;
}

.timeline__item::before {
  position: absolute;
  top: 25px;
  left: -75px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: #9d9da2;
  box-shadow: 0 0 0 1px #9d9da2;
  content: "";
}

.timeline__item time {
  color: #86868b;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.timeline__item h3 {
  max-width: 720px;
  margin: 0 0 20px;
  font-size: clamp(1.7rem, 3vw, 3.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.timeline__item p {
  max-width: 600px;
  margin: 0;
  color: #707075;
  line-height: 1.65;
}

/* Comparison and numbers */
.difference .eyebrow {
  margin-bottom: 60px;
  color: var(--blue);
}

.comparison {
  margin-top: 100px;
  border-top: 1px solid var(--line-dark);
}

.comparison > div {
  display: grid;
  grid-template-columns: .6fr 1fr 1fr;
  gap: 30px;
  padding: 24px 14px;
  border-bottom: 1px solid var(--line-dark);
}

.comparison span,
.comparison b,
.comparison strong {
  font-size: .84rem;
}

.comparison b {
  color: rgba(255,255,255,.5);
  font-weight: 500;
}

.comparison strong {
  color: #fff;
}

.comparison span {
  color: rgba(255,255,255,.38);
}

.comparison__head {
  color: rgba(255,255,255,.4);
  font-size: .62rem;
  letter-spacing: .13em;
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.numbers__intro {
  grid-column: 1 / -1;
  padding-bottom: 100px;
}

.numbers__intro .eyebrow {
  color: #77777c;
}

.numbers__intro h2 {
  max-width: 960px;
  margin: 42px 0 0;
  font-size: clamp(3rem, 6.8vw, 8rem);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.065em;
}

.number {
  min-height: 280px;
  padding: 45px 0;
  border-top: 1px solid var(--line-light);
}

.number:nth-child(even) {
  border-right: 1px solid var(--line-light);
}

.number:nth-child(odd) {
  padding-left: 5vw;
}

.number strong {
  display: block;
  margin-bottom: 28px;
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.075em;
}

.number span {
  color: #707075;
}

/* Testimonials */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
  margin-top: 80px;
}

.testimonial {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: clamp(34px, 5vw, 70px);
  border: 1px solid var(--line-light);
  border-radius: 20px;
  background: rgba(255,255,255,.3);
}

.testimonial--main {
  grid-row: span 2;
}

.testimonial p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.5vw, 3rem);
  line-height: 1.35;
  letter-spacing: -.025em;
}

.testimonial--main p {
  font-size: clamp(2.2rem, 4vw, 5rem);
  line-height: 1.15;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 50px;
}

.testimonial footer span {
  font-size: .85rem;
  font-weight: 700;
}

.testimonial footer small {
  color: #78787d;
}

.fiction-note {
  margin: 24px 0 0;
  color: #8d8d92;
  font-size: .68rem;
}

/* FAQ */
.faq__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 8vw;
}

.faq__intro {
  position: sticky;
  top: 130px;
  height: max-content;
}

.faq__intro .eyebrow {
  margin-bottom: 50px;
  color: #75757b;
}

.faq__list {
  border-top: 1px solid var(--line-light);
}

.faq-item {
  border-bottom: 1px solid var(--line-light);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0a0a0d;
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 550;
}

.faq-item button i {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: #0a0a0d;
  content: "";
  transition: transform .3s ease;
}

.faq-item button i::after {
  transform: rotate(90deg);
}

.faq-item.is-open button i::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s cubic-bezier(.22,1,.36,1);
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: #707075;
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 34px;
}

/* Final CTA and footer */
.final-cta {
  position: relative;
  display: grid;
  height: max(100svh, 760px);
  place-items: center;
  overflow: hidden;
  background: #030304;
  isolation: isolate;
}

.final-cta__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.final-cta__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.92) 0, rgba(0,0,0,.58) 48%, rgba(0,0,0,.18)), linear-gradient(0deg, #030304 0, transparent 28%, rgba(0,0,0,.1));
  content: "";
}

.final-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 52%;
  mix-blend-mode: screen;
  transform: scale(1.18);
}

.final-cta__glow {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 45%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189,143,83,.2), transparent 63%);
  transform: translate(-50%, -50%);
  filter: blur(50px);
}

.final-cta__content .eyebrow {
  color: #d7b98f;
}

.final-cta__content h2 {
  margin: 30px 0;
  font-size: clamp(4rem, 8.5vw, 10rem);
  font-weight: 500;
  line-height: .87;
  letter-spacing: -.075em;
}

.final-cta__content > p:not(.eyebrow) {
  margin: 0 0 40px;
  color: rgba(255,255,255,.6);
  font-size: 1.05rem;
}

.footer {
  padding: 100px 0 35px;
  background: #030304;
  border-top: 1px solid var(--line-dark);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  padding-bottom: 90px;
}

.footer__brand img {
  width: 62px;
  height: 32px;
  margin-bottom: 22px;
  object-fit: contain;
}

.footer__brand strong {
  font-size: 1.1rem;
  line-height: .95;
  letter-spacing: .1em;
}

.footer__brand p {
  margin: 22px 0 0;
  color: rgba(255,255,255,.4);
  font-family: Georgia, serif;
  font-style: italic;
}

.newsletter {
  align-self: end;
}

.newsletter label {
  display: block;
  margin-bottom: 28px;
  font-size: clamp(1.3rem, 2vw, 2.2rem);
  letter-spacing: -.03em;
}

.newsletter > div {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,.35);
}

.newsletter input {
  width: 100%;
  padding: 15px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
}

.newsletter input::placeholder {
  color: rgba(255,255,255,.3);
}

.newsletter button {
  width: 50px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.4rem;
}

.newsletter small {
  display: block;
  min-height: 20px;
  margin-top: 12px;
  color: var(--blue);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 55px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.footer__links > div {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links span {
  margin-bottom: 12px;
  color: rgba(255,255,255,.35);
  font-size: .56rem;
}

.footer__links a {
  width: max-content;
  color: rgba(255,255,255,.68);
  font-size: .8rem;
  transition: color .25s ease;
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  color: rgba(255,255,255,.35);
  font-size: .67rem;
}

.cursor-glow {
  position: fixed;
  z-index: 9000;
  top: 0;
  left: 0;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(119,99,255,.065), transparent 68%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  will-change: transform;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 5px;
}
