:root {
  --ink: #07110d;
  --ink-soft: #0e1a15;
  --forest: #15382a;
  --forest-2: #1f4e3a;
  --acid: #c9ff54;
  --acid-soft: #e5ffad;
  --paper: #f4f1e8;
  --paper-deep: #e8e2d3;
  --white: #fffef8;
  --muted: #787d76;
  --line: rgba(7, 17, 13, .15);
  --line-light: rgba(255, 255, 255, .18);
  --shadow: 0 40px 100px rgba(0, 0, 0, .24);
  --radius: 28px;
  --container: 1380px;
  --pad: clamp(24px, 4vw, 68px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

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

button,
input {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

svg {
  width: 1.15em;
  height: 1.15em;
  stroke-width: 1.7;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 800;
  transition: transform .2s ease;
}

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

#ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .38;
}

.cursor-light {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 420px;
  height: 420px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 255, 84, .11), transparent 66%);
  transform: translate3d(-50%, -50%, 0);
  mix-blend-mode: screen;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: .055;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 84px;
  padding: 14px var(--pad);
  color: var(--white);
  transition: min-height .35s var(--ease), background .35s ease, border .35s ease, color .35s ease;
}

.site-header.scrolled {
  min-height: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: rgba(7, 17, 13, .76);
  backdrop-filter: blur(20px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  overflow: hidden;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark::before {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.brand-mark span {
  position: relative;
  font-size: 13px;
  font-weight: 900;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 12px;
  letter-spacing: .18em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--acid);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .42em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
}

.desktop-nav a {
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .74);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: background .25s ease, color .25s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: var(--acid);
  color: var(--ink);
}

.header-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  transition: background .25s ease, color .25s ease;
}

.header-action:hover,
.header-action:focus-visible {
  background: var(--acid);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 100px var(--pad) 40px;
  visibility: hidden;
  background: var(--ink);
  color: var(--white);
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity .35s ease, transform .5s var(--ease), visibility .35s;
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  padding: 10px 0;
  border-bottom: 1px solid var(--line-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 10vw, 54px);
  font-style: italic;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 120;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--acid);
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 118px var(--pad) 38px;
  background:
    radial-gradient(circle at 74% 38%, rgba(42, 111, 81, .34), transparent 31%),
    linear-gradient(145deg, #07110d 0%, #0c1913 54%, #07110d 100%);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 8vw 8vw;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 30%, transparent 88%);
}

.hero::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 62vw;
  height: 25vw;
  transform: translateX(-50%);
  border: 1px solid rgba(201, 255, 84, .15);
  border-radius: 50% 50% 0 0;
  background: radial-gradient(ellipse at center bottom, rgba(201, 255, 84, .11), transparent 70%);
  content: "";
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(201, 255, 84, .22);
  border-radius: 50%;
}

.orbit-one {
  top: 8%;
  right: -10vw;
  width: 31vw;
  height: 31vw;
  animation: orbitFloat 12s ease-in-out infinite;
}

.orbit-two {
  bottom: 5%;
  left: -7vw;
  width: 18vw;
  height: 18vw;
  animation: orbitFloat 9s ease-in-out -3s infinite reverse;
}

.hero-kicker {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.signal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 5px rgba(201, 255, 84, .1);
  animation: signal 2s ease-out infinite;
}

.kicker-line {
  width: 56px;
  height: 1px;
  background: rgba(255, 255, 255, .3);
}

.hero-title-wrap {
  position: relative;
  z-index: 3;
  margin: auto 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(88px, 17.2vw, 292px);
  font-weight: 900;
  letter-spacing: -.095em;
  line-height: .65;
}

.title-line {
  display: block;
  width: max-content;
  will-change: transform;
}

.title-solid {
  transform: translateX(-.035em);
}

.title-outline {
  margin-top: .17em;
  margin-left: 23vw;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, .8);
}

.hero-intro {
  max-width: 520px;
  margin: clamp(34px, 5vw, 72px) 4vw 0 auto;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(15px, 1.25vw, 19px);
}

.hero-intro::first-line {
  color: var(--white);
}

.hero-lower {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 24px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: color .25s ease, background .25s ease, border .25s ease, transform .25s ease;
}

.button-primary {
  background: var(--acid);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
}

.text-link span {
  border-bottom: 1px solid rgba(255, 255, 255, .35);
}

.hero-card-wrap {
  position: relative;
  perspective: 1200px;
}

.credit-card {
  position: relative;
  display: flex;
  width: clamp(280px, 28vw, 410px);
  aspect-ratio: 1.7;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 83% 14%, rgba(201, 255, 84, .31), transparent 31%),
    linear-gradient(145deg, rgba(255, 255, 255, .17), rgba(255, 255, 255, .045));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
  transition: transform .25s ease;
}

.credit-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, .14) 45%, transparent 70%);
  content: "";
  transform: translateX(-100%);
  animation: cardSheen 7s ease-in-out infinite;
}

.card-top,
.card-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-top {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.card-chip {
  display: grid;
  width: 38px;
  height: 29px;
  place-items: center;
  border-radius: 7px;
  background: var(--acid);
  color: var(--ink);
}

.card-pulse {
  position: absolute;
  inset: 50% auto auto 50%;
  display: flex;
  align-items: center;
  gap: 4px;
  transform: translate(-50%, -50%);
}

.card-pulse span {
  display: block;
  width: 3px;
  height: 16px;
  border-radius: 3px;
  background: var(--acid);
  animation: barPulse 1.3s ease-in-out infinite;
}

.card-pulse span:nth-child(2) { animation-delay: -.9s; height: 28px; }
.card-pulse span:nth-child(3) { animation-delay: -.6s; height: 42px; }
.card-pulse span:nth-child(4) { animation-delay: -.3s; height: 26px; }
.card-pulse span:nth-child(5) { animation-delay: -.75s; height: 13px; }

.card-bottom div {
  display: grid;
  gap: 3px;
}

.card-bottom small {
  color: rgba(255, 255, 255, .55);
  font-size: 8px;
  letter-spacing: .18em;
}

.card-bottom strong {
  font-size: 10px;
  letter-spacing: .08em;
}

.card-bottom > svg {
  width: 27px;
  height: 27px;
}

.card-caption {
  position: absolute;
  right: 8px;
  bottom: -22px;
  color: rgba(255, 255, 255, .4);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-index {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-self: end;
  color: rgba(255, 255, 255, .45);
  font-family: Georgia, serif;
  font-size: 12px;
}

.hero-index span:first-child {
  color: var(--acid);
  font-size: 38px;
  font-style: italic;
}

.marquee {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
  background: var(--acid);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-size: clamp(13px, 1.4vw, 20px);
  font-weight: 900;
  letter-spacing: .11em;
  white-space: nowrap;
}

.marquee-track svg {
  width: 17px;
  height: 17px;
}

.section-pad {
  padding: clamp(100px, 12vw, 190px) var(--pad);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #646a64;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.section-label span:first-child {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-style: italic;
}

.section-label.light {
  color: rgba(255, 255, 255, .58);
}

.manifesto {
  position: relative;
  background: var(--paper);
}

.manifesto > .section-label {
  position: absolute;
  top: clamp(100px, 12vw, 190px);
  left: var(--pad);
}

.manifesto-copy {
  width: min(900px, 70vw);
  margin-left: auto;
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--forest-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.split-title {
  margin: 0;
  font-size: clamp(54px, 8.3vw, 136px);
  font-weight: 850;
  letter-spacing: -.075em;
  line-height: .84;
}

.split-title em,
.simulator h2 em,
.products h2 em,
.faq h2 em,
.contact h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.body-copy {
  max-width: 610px;
  margin: 54px 4vw 0 auto;
  color: #515851;
  font-size: clamp(17px, 1.45vw, 21px);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: var(--container);
  margin: clamp(90px, 12vw, 170px) auto 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.principle {
  position: relative;
  min-height: 390px;
  padding: clamp(28px, 4vw, 56px);
  overflow: hidden;
  background: var(--paper);
  transition: background .4s ease, color .4s ease;
}

.principle::after {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: .12;
  transition: transform .7s var(--ease);
}

.principle:hover {
  background: var(--forest);
  color: var(--white);
}

.principle:hover::after {
  transform: scale(2.2);
}

.principle-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 74px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--forest-2);
  transition: color .4s ease, background .4s ease;
}

.principle:hover .principle-icon {
  background: var(--acid);
  color: var(--ink);
}

.principle-icon svg {
  width: 25px;
  height: 25px;
}

.principle > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.principle h3 {
  max-width: 300px;
  margin: 14px 0 13px;
  font-size: clamp(24px, 2.3vw, 36px);
  letter-spacing: -.04em;
  line-height: 1;
}

.principle p {
  max-width: 315px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.process {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(60px, 10vw, 150px);
  background: var(--ink);
  color: var(--white);
}

.process-sticky {
  position: sticky;
  top: 120px;
  align-self: start;
}

.process-sticky h2 {
  margin: 42px 0 32px;
  font-size: clamp(52px, 6vw, 94px);
  letter-spacing: -.07em;
  line-height: .85;
}

.process-sticky h2 span {
  color: var(--acid);
  font-family: Georgia, serif;
  font-weight: 400;
  font-style: italic;
}

.process-sticky > p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, .55);
}

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

.process-item {
  display: grid;
  grid-template-columns: 52px 66px 1fr;
  gap: 30px;
  align-items: start;
  padding: 52px 0;
  border-bottom: 1px solid var(--line-light);
}

.process-number {
  color: rgba(255, 255, 255, .38);
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
}

.process-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  transition: transform .5s var(--ease);
}

.process-item:hover .process-icon {
  transform: rotate(10deg) scale(1.08);
}

.process-icon svg {
  width: 23px;
  height: 23px;
}

.process-item h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.2vw, 48px);
  letter-spacing: -.045em;
  line-height: 1;
}

.process-item p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, .5);
}

.simulator {
  background: var(--acid);
}

.simulator-heading {
  display: grid;
  grid-template-columns: .55fr 1fr .55fr;
  gap: 40px;
  align-items: end;
  max-width: var(--container);
  margin: 0 auto 80px;
}

.simulator-heading h2 {
  margin: 0;
  font-size: clamp(52px, 6.5vw, 102px);
  letter-spacing: -.075em;
  line-height: .86;
}

.simulator-heading > p {
  margin: 0;
  color: rgba(7, 17, 13, .66);
  font-size: 14px;
}

.simulator-panel {
  display: grid;
  grid-template-columns: 1fr 1fr .85fr;
  gap: 1px;
  max-width: var(--container);
  margin: 0 auto;
  border: 1px solid rgba(7, 17, 13, .18);
  background: rgba(7, 17, 13, .18);
  box-shadow: 0 32px 80px rgba(30, 55, 18, .14);
}

.range-block {
  min-height: 350px;
  padding: clamp(30px, 4vw, 58px);
  background: var(--paper);
}

.range-head {
  display: grid;
  gap: 28px;
}

.range-head label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.range-head output {
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 850;
  letter-spacing: -.05em;
  white-space: nowrap;
}

input[type="range"] {
  width: 100%;
  height: 3px;
  margin: 100px 0 20px;
  appearance: none;
  border-radius: 99px;
  outline: none;
  background: linear-gradient(to right, var(--forest) var(--range-progress, 15%), rgba(7, 17, 13, .15) var(--range-progress, 15%));
}

input[type="range"]::-webkit-slider-thumb {
  width: 29px;
  height: 29px;
  appearance: none;
  border: 7px solid var(--paper);
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 1px var(--forest), 0 8px 22px rgba(0, 0, 0, .18);
  cursor: grab;
}

input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 7px solid var(--paper);
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 1px var(--forest), 0 8px 22px rgba(0, 0, 0, .18);
  cursor: grab;
}

.range-limits {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.simulator-result {
  position: relative;
  display: flex;
  min-height: 350px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 4vw, 58px);
  background: var(--forest);
  color: var(--white);
}

.simulator-result > svg {
  position: absolute;
  top: 42px;
  right: 42px;
  width: 38px;
  height: 38px;
  color: var(--acid);
}

.result-orbit {
  position: absolute;
  top: -100px;
  left: -80px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(201, 255, 84, .2);
  border-radius: 50%;
}

.result-orbit::after {
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(201, 255, 84, .13);
  border-radius: inherit;
  content: "";
}

.simulator-result > span {
  color: rgba(255, 255, 255, .5);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.simulator-result strong {
  margin: 9px 0 14px;
  font-size: clamp(23px, 2.3vw, 34px);
  letter-spacing: -.035em;
  line-height: 1.05;
}

.simulator-result p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
}

.simulator-result a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--acid);
  font-size: 12px;
  font-weight: 800;
}

.products {
  background: var(--paper);
}

.products-head {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 70px;
  align-items: end;
  max-width: var(--container);
  margin: 0 auto 90px;
}

.products h2,
.faq h2 {
  margin: 38px 0 0;
  font-size: clamp(58px, 7.5vw, 118px);
  letter-spacing: -.08em;
  line-height: .82;
}

.products-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: var(--container);
  margin: 0 auto;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 44px 88px 1fr 54px;
  gap: 25px;
  align-items: center;
  min-height: 190px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .32);
  transition: transform .5s var(--ease), background .4s ease, color .4s ease;
}

.product-card::before {
  position: absolute;
  inset: auto auto -80px -80px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--acid);
  content: "";
  opacity: 0;
  transition: opacity .4s ease, transform .7s var(--ease);
}

.product-card:hover {
  z-index: 2;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-8px) rotate(-.4deg);
}

.product-card:hover::before {
  opacity: .11;
  transform: scale(3.4);
}

.product-index {
  align-self: start;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 11px;
  font-style: italic;
}

.product-card img {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  border-radius: 23px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .17);
}

.product-card h3 {
  margin: 0 0 8px;
  font-size: clamp(25px, 2.3vw, 35px);
  letter-spacing: -.045em;
}

.product-card p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.product-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background .3s ease, color .3s ease, transform .4s var(--ease);
}

.product-card:hover .product-arrow {
  background: var(--acid);
  color: var(--ink);
  transform: rotate(45deg);
}

.company {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
  min-height: 900px;
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.company::after {
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: radial-gradient(circle at 30% 50%, #000, transparent 50%);
}

.company-visual,
.company-copy {
  position: relative;
  z-index: 2;
}

.company-visual {
  display: grid;
  min-height: 620px;
  place-items: center;
}

.giant-g {
  position: relative;
  z-index: 2;
  color: var(--acid);
  font-family: Georgia, serif;
  font-size: clamp(220px, 34vw, 520px);
  font-style: italic;
  line-height: .6;
  text-shadow: 0 30px 90px rgba(0, 0, 0, .26);
}

.company-rings,
.company-rings span {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(201, 255, 84, .28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.company-rings {
  width: min(37vw, 540px);
  height: min(37vw, 540px);
  animation: slowSpin 25s linear infinite;
}

.company-rings::before {
  position: absolute;
  top: 11%;
  left: 11%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 30px var(--acid);
  content: "";
}

.company-rings span:first-child { width: 73%; height: 73%; }
.company-rings span:nth-child(2) { width: 45%; height: 45%; }
.company-rings span:nth-child(3) { width: 115%; height: 115%; border-style: dashed; }

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

.company-lead {
  margin: 50px 0 60px;
  font-size: clamp(30px, 3.4vw, 51px);
  letter-spacing: -.05em;
  line-height: 1.03;
}

.company-lead strong {
  color: var(--acid);
  font-family: Georgia, serif;
  font-weight: 400;
  font-style: italic;
}

.operator-license {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  align-items: center;
  margin: 0 0 30px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(201, 255, 84, .38);
  background: rgba(201, 255, 84, .055);
}

.operator-license::after {
  position: absolute;
  top: -55px;
  right: -40px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(201, 255, 84, .14);
  border-radius: 50%;
  content: "";
}

.license-seal {
  position: relative;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid var(--acid);
  border-radius: 50%;
  color: var(--acid);
  text-align: center;
}

.license-seal::before {
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(201, 255, 84, .42);
  border-radius: inherit;
  content: "";
  animation: slowSpin 18s linear infinite reverse;
}

.license-seal svg {
  width: 21px;
  height: 21px;
  margin: 0 auto 3px;
}

.license-seal span {
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .11em;
  line-height: 1.15;
  text-transform: uppercase;
}

.operator-license > div:last-child {
  position: relative;
  z-index: 2;
  display: grid;
}

.operator-label {
  margin-bottom: 4px;
  color: var(--acid);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.operator-license strong {
  font-size: clamp(17px, 1.6vw, 23px);
  letter-spacing: -.025em;
}

.operator-license p {
  max-width: 570px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
}

.company-data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.company-data div {
  display: grid;
  gap: 7px;
  padding: 24px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.company-data span {
  color: rgba(255, 255, 255, .48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.company-data strong {
  font-size: 17px;
}

.legal-note {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
}

.legal-note svg {
  color: var(--acid);
}

.faq {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 9vw;
  background: var(--paper-deep);
}

.faq-head {
  align-self: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  font-size: clamp(19px, 2vw, 29px);
  font-weight: 750;
  letter-spacing: -.035em;
}

.faq-item button svg {
  flex: 0 0 auto;
  transition: transform .35s var(--ease);
}

.faq-item.open button svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  overflow: hidden;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease);
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

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

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

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 9vw;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.contact::before {
  position: absolute;
  top: -45vw;
  right: -30vw;
  width: 90vw;
  height: 90vw;
  border: 1px solid rgba(201, 255, 84, .15);
  border-radius: 50%;
  content: "";
}

.contact-copy,
.contact-card {
  position: relative;
  z-index: 2;
}

.contact-kicker {
  color: var(--acid);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact h2 {
  margin: 32px 0;
  font-size: clamp(64px, 9vw, 142px);
  letter-spacing: -.085em;
  line-height: .79;
}

.contact-copy > p {
  max-width: 520px;
  color: rgba(255, 255, 255, .55);
}

.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.button-light {
  background: var(--acid);
  color: var(--ink);
}

.button-ghost-light {
  border-color: var(--line-light);
  color: var(--white);
}

.button-ghost-light:hover {
  background: var(--white);
  color: var(--ink);
}

.contact-card {
  display: grid;
  border-top: 1px solid var(--line-light);
  font-style: normal;
}

.contact-card > div,
.contact-card > a {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
}

.contact-card svg {
  color: var(--acid);
}

.site-footer {
  padding: 50px var(--pad) 28px;
  background: #030805;
  color: var(--white);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 54px;
}

.footer-brand div {
  display: grid;
  gap: 4px;
}

.footer-brand strong {
  font-size: 12px;
  letter-spacing: .12em;
}

.footer-brand div span {
  color: rgba(255, 255, 255, .4);
  font-size: 10px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.footer-links a {
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--acid);
}

.footer-operator {
  display: grid;
  grid-template-columns: 19px minmax(0, 620px);
  gap: 12px;
  align-items: start;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .42);
  font-size: 9px;
  line-height: 1.6;
}

.footer-operator svg {
  color: var(--acid);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .32);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.motion-ready .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
}

.legal-page .site-header {
  position: relative;
  background: var(--ink);
}

.legal-shell {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0 140px;
}

.legal-shell .section-label {
  margin-bottom: 42px;
}

.legal-shell h1 {
  max-width: 760px;
  margin: 0 0 32px;
  font-size: clamp(52px, 8vw, 100px);
  letter-spacing: -.075em;
  line-height: .86;
}

.legal-meta {
  margin: 0 0 70px;
  color: var(--muted);
  font-size: 12px;
}

.legal-content {
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 54px 0 15px;
  font-size: 26px;
  letter-spacing: -.035em;
}

.legal-content p,
.legal-content li {
  color: #555d56;
  font-size: 15px;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content a {
  color: var(--forest-2);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes orbitFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
  50% { transform: translate3d(-26px, 18px, 0) rotate(12deg); }
}

@keyframes signal {
  0% { box-shadow: 0 0 0 0 rgba(201, 255, 84, .4); }
  100% { box-shadow: 0 0 0 10px rgba(201, 255, 84, 0); }
}

@keyframes cardSheen {
  0%, 60% { transform: translateX(-110%); }
  85%, 100% { transform: translateX(110%); }
}

@keyframes barPulse {
  0%, 100% { transform: scaleY(.45); opacity: .4; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes slowSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-action {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-lower {
    grid-template-columns: 1fr auto;
  }

  .hero-index {
    display: none;
  }

  .simulator-heading {
    grid-template-columns: .5fr 1fr;
  }

  .simulator-heading > p {
    grid-column: 2;
  }

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

  .simulator-result {
    grid-column: 1 / -1;
  }

  .product-card {
    grid-template-columns: 32px 72px 1fr 46px;
    gap: 18px;
  }

  .product-card img {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }
}

@media (max-width: 820px) {
  .cursor-light {
    display: none;
  }

  .hero {
    min-height: 920px;
    padding-top: 110px;
  }

  .hero h1 {
    font-size: clamp(78px, 23vw, 160px);
    line-height: .7;
  }

  .title-outline {
    margin-top: .2em;
    margin-left: 4vw;
  }

  .hero-intro {
    margin-left: 0;
  }

  .hero-lower {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .credit-card {
    width: min(410px, 88vw);
  }

  .manifesto > .section-label {
    position: static;
    margin-bottom: 70px;
  }

  .manifesto-copy {
    width: 100%;
  }

  .body-copy {
    margin-left: 0;
  }

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

  .principle {
    min-height: auto;
  }

  .principle-icon {
    margin-bottom: 55px;
  }

  .process,
  .company,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }

  .process-sticky {
    position: static;
  }

  .simulator-heading {
    grid-template-columns: 1fr;
  }

  .simulator-heading > p {
    grid-column: auto;
  }

  .simulator-panel {
    grid-template-columns: 1fr;
  }

  .simulator-result {
    grid-column: auto;
  }

  .products-head {
    grid-template-columns: 1fr;
  }

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

  .company {
    gap: 20px;
  }

  .company-visual {
    min-height: 430px;
  }

  .company-rings {
    width: min(76vw, 500px);
    height: min(76vw, 500px);
  }

  .contact-card {
    margin-top: 60px;
  }
}

@media (max-width: 560px) {
  :root {
    --pad: 20px;
  }

  .site-header {
    min-height: 72px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 10px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .hero {
    min-height: 850px;
  }

  .hero-kicker .kicker-line,
  .hero-kicker span:last-child {
    display: none;
  }

  .hero h1 {
    font-size: clamp(70px, 24vw, 120px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-pad {
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .process-item {
    grid-template-columns: 28px 50px 1fr;
    gap: 13px;
    padding: 40px 0;
  }

  .process-icon {
    width: 48px;
    height: 48px;
  }

  .simulator-heading {
    margin-bottom: 55px;
  }

  .range-block,
  .simulator-result {
    min-height: 310px;
  }

  .product-card {
    grid-template-columns: 68px 1fr 42px;
    padding: 24px 18px;
  }

  .product-index {
    display: none;
  }

  .product-card img {
    width: 68px;
    height: 68px;
  }

  .company-data {
    grid-template-columns: 1fr;
  }

  .operator-license {
    grid-template-columns: 68px 1fr;
    gap: 16px;
    padding: 18px;
  }

  .license-seal {
    width: 62px;
    height: 62px;
  }

  .license-seal svg {
    width: 17px;
    height: 17px;
  }

  .license-seal span {
    font-size: 6px;
  }

  .company-lead {
    margin-top: 42px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  #ambient-canvas,
  .cursor-light {
    display: none;
  }
}
