

@font-face {
  font-family: "TWK Lausanne";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/TWKLausanne-300.woff2") format("woff2");
}
@font-face {
  font-family: "TWK Lausanne";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/TWKLausanne-300Italic.woff2") format("woff2");
}
@font-face {
  font-family: "TWK Lausanne";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/TWKLausanne-400.woff2") format("woff2");
}
@font-face {
  font-family: "TWK Lausanne";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/TWKLausanne-400Italic.woff2") format("woff2");
}
@font-face {
  font-family: "TWK Lausanne";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/TWKLausanne-500.woff2") format("woff2");
}
@font-face {
  font-family: "TWK Lausanne";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/TWKLausanne-500Italic.woff2") format("woff2");
}
@font-face {
  font-family: "TWK Lausanne";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/TWKLausanne-700.woff2") format("woff2");
}
@font-face {
  font-family: "TWK Lausanne";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/TWKLausanne-800.woff2") format("woff2");
}

:root {
  color-scheme: dark;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "TWK Lausanne", system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

.btn-primary {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #ffffff;
  color: #0a0a0b;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  border-radius: 9999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  transition: box-shadow 260ms cubic-bezier(0.22, 1, 0.32, 1),
    background-color 260ms cubic-bezier(0.22, 1, 0.32, 1),
    transform 260ms cubic-bezier(0.22, 1, 0.32, 1);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  box-shadow: 0 10px 30px -12px rgba(200, 169, 106, 0.4),
    0 4px 14px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 260ms cubic-bezier(0.22, 1, 0.32, 1);
  pointer-events: none;
}

.btn-primary:active {
  transform: scale(0.985);
  transition-duration: 120ms;
}

.btn-primary:focus-visible {
  outline: 2px solid rgba(200, 169, 106, 0.7);
  outline-offset: 3px;
}

.btn-primary .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7em;
  height: 1.7em;
  margin-left: 0.1em;
  margin-right: -0.3em;
  border-radius: 9999px;
  background: rgba(10, 10, 11, 0.08);
  transition: background-color 260ms cubic-bezier(0.22, 1, 0.32, 1);
}
.btn-primary .btn-arrow {
  flex-shrink: 0;
  width: 0.95em;
  height: 0.95em;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.32, 1);
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover::after {
    opacity: 1;
  }
  .btn-primary:hover .btn-icon {
    background: rgba(10, 10, 11, 0.12);
  }
  .btn-primary:hover .btn-arrow {
    transform: translateX(2.5px);
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 500;
}

.brand-mark {
  letter-spacing: 0.01em;
}

.topbar {
  transition: padding 340ms cubic-bezier(0.22, 1, 0.32, 1),
    box-shadow 340ms cubic-bezier(0.22, 1, 0.32, 1);
}
.topbar.is-scrolled {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  box-shadow: 0 16px 42px -18px rgba(0, 0, 0, 0.75);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 92vh;
  min-height: 92svh;
  margin-bottom: clamp(3.5rem, 8vh, 6rem);
  overflow: hidden;
  background: #09090a;
  isolation: isolate;
  --mx: 50%;
  --my: 44%;
  --lit: 0;
  --px: 0px;
  --py: 0px;
}

.hero__stage {
  position: absolute;
  inset: 0;
}
.hero.is-revealed .hero__stage {
  animation: stage-push 1.2s cubic-bezier(0.22, 1, 0.32, 1) forwards;
}
@keyframes stage-push {
  from { scale: 1.08; }
  to { scale: 1; }
}

.hero__layer {
  position: absolute;
  left: 50%;
  top: 57%;
  width: min(1200px, 95vw, 115vh);
  aspect-ratio: 6076 / 2632;
  transform: translate(-50%, -50%);
  background: url("../img/prototype.png") center / contain no-repeat;
  background-image: image-set(
    url("../img/prototype.webp") type("image/webp"),
    url("../img/prototype.png") type("image/png")
  );
  will-change: opacity, filter;
}

.hero__layer--base {
  filter: brightness(0.15) contrast(1.12) saturate(0.92);
  opacity: 0;
}

.hero__layer--settle {
  filter: brightness(0.5) contrast(1.06);
  -webkit-mask-image: radial-gradient(125% 95% at 50% 16%, #000 0%, rgba(0, 0, 0, 0.4) 52%, transparent 84%);
  mask-image: radial-gradient(125% 95% at 50% 16%, #000 0%, rgba(0, 0, 0, 0.4) 52%, transparent 84%);
  opacity: 0;
}

.hero__layer--spot {
  filter: brightness(1.32) contrast(1.03) saturate(1.04);
  -webkit-mask-image: radial-gradient(circle 360px at var(--mx) var(--my),
      #000 0%, rgba(0, 0, 0, 0.62) 26%, rgba(0, 0, 0, 0.22) 56%, transparent 100%);
  mask-image: radial-gradient(circle 360px at var(--mx) var(--my),
      #000 0%, rgba(0, 0, 0, 0.62) 26%, rgba(0, 0, 0, 0.22) 56%, transparent 100%);
  opacity: var(--lit);
  mix-blend-mode: screen;
  will-change: opacity, mask-image;
}

.hero__floor {
  position: absolute;
  left: 50%;
  bottom: 7%;
  width: clamp(440px, 74%, 1180px);
  height: 32%;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(ellipse at center,
      rgba(208, 216, 236, 0.3) 0%, rgba(172, 182, 208, 0.13) 36%, transparent 70%);
  filter: blur(16px);
  opacity: 0;
}
.hero.is-revealed .hero__floor {
  animation: floor-in 1.2s ease 0.5s forwards;
}
@keyframes floor-in {
  to { opacity: 1; }
}

.hero__dust {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translate3d(calc(var(--px) * -1.6), calc(var(--py) * -1.4), 0);
}
.hero__dust span {
  position: absolute;
  bottom: -4%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
  opacity: 0;
  animation-name: dust-rise;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform, opacity;
}
@keyframes dust-rise {
  0% { transform: translateY(0); opacity: 0; }
  12% { opacity: var(--o, 0.22); }
  85% { opacity: var(--o, 0.22); }
  100% { transform: translateY(-92vh); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__dust { display: none; }
  .hero__floor { opacity: 1; animation: none; }
}

.hero__content {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(3.5rem, 6vh, 5rem) clamp(1.25rem, 5vw, 4rem)
    clamp(1rem, 2.5vh, 1.75rem);
  text-align: center;
}

.hero .eyebrow {
  font-size: 1rem;
  letter-spacing: 0.22em;
}

.js .hero__eyebrow {
  opacity: 0;
}
.hero.is-revealed .hero__eyebrow {
  animation: eyebrow-in 1.2s cubic-bezier(0.22, 1, 0.32, 1) 0.2s forwards;
}
.hero.is-static .hero__eyebrow {
  opacity: 1;
}
@keyframes eyebrow-in {
  from {
    opacity: 0;
    transform: translateY(14px);
    letter-spacing: 0.6em;
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero__title {
  margin-top: clamp(1.5rem, 3.5vh, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.12;
  font-size: clamp(1.6rem, 3.8vw, 2.9rem);
  color: #ffffff;
}

.hero__line {
  display: block;
  overflow: hidden;
}
.hero__line-inner {
  display: inline-block;
  will-change: transform;
}
.js .hero__line-inner {
  transform: translateY(115%);
}
.hero.is-revealed .hero__line-inner {
  animation: line-up 0.95s cubic-bezier(0.22, 1, 0.32, 1) forwards;
}
.hero.is-revealed .hero__line:first-child .hero__line-inner {
  animation-delay: 0.35s;
}
.hero.is-revealed .hero__line:last-child .hero__line-inner {
  animation-delay: 0.52s;
}
.hero.is-static .hero__line-inner {
  transform: none;
}
@keyframes line-up {
  from { transform: translateY(115%); }
  to { transform: translateY(0); }
}

.hero__sep {
  margin: clamp(0.25rem, 0.9vh, 0.65rem) auto 0;
  line-height: 0;
}
.hero__sep svg {
  display: block;
  width: clamp(340px, 48vw, 620px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}
.js .hero__sep path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.hero.is-revealed .hero__sep path {
  animation: sep-draw 1.4s cubic-bezier(0.65, 0, 0.35, 1) 0.6s forwards;
}
.hero.is-static .hero__sep path {
  stroke-dashoffset: 0;
}
@keyframes sep-draw {
  to { stroke-dashoffset: 0; }
}

.hero__lede {
  margin: 0 auto;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.6;
}

.hero__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}

.divider {
  position: relative;
  width: min(1100px, 86%);
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
}
.divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: rgba(200, 169, 106, 0.55);
}

.vision {
  position: relative;
  overflow: hidden;
  padding: clamp(7rem, 16vh, 13rem) clamp(1.25rem, 5vw, 3rem);
}
.vision__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(50% 48% at 82% 28%, rgba(200, 169, 106, 0.07), transparent 70%);
}

.vision__bg {
  position: absolute;
  inset: -44px 0;
  pointer-events: none;
  background: url("../img/graphene.jpg") center / cover no-repeat;
  background-image: image-set(
    url("../img/graphene.webp") type("image/webp"),
    url("../img/graphene.jpg") type("image/jpeg")
  );
  filter: blur(5px) saturate(0.4) brightness(0.5);
  opacity: 0.22;
}
.vision__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.vision__index {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  color: #c8a96a;
}
.vision__title {
  margin-top: 1.4rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.06;
  font-size: clamp(1.7rem, 2.8vw, 2.9rem);
}
.vision__body {
  padding-top: 0.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.92rem, 1vw, 1.02rem);
  line-height: 1.72;
}
.vision__lede {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  line-height: 1.55;
}
.vision__body p + p {
  margin-top: 1.5rem;
}
.vision__hl {
  color: #ffffff;
  font-weight: 500;
}

.vision__head { grid-column: 1; }
.vision__body { grid-column: 2; }

.vision__facts {
  grid-column: 1 / -1;
  margin-top: clamp(3rem, 6vh, 5rem);
  padding-top: clamp(2rem, 4vh, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
}
.vision__facts li {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0 clamp(1.2rem, 3vw, 2.6rem);
}
.vision__facts li:first-child {
  padding-left: 0;
}
.vision__facts li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.vision__fact-k {
  font-size: clamp(1.15rem, 1.5vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: #ffffff;
}
.vision__fact-l {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.6);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-ready [data-reveal].in {
  opacity: 1;
  transform: none;
}

.reveal-ready .vision__head .vision__title,
.reveal-ready .faq__head .faq__title,
.reveal-ready .opp__head .opp__title {
  clip-path: inset(-2% 101% -2% -1%);
  transition: clip-path 1.15s cubic-bezier(0.22, 1, 0.32, 1) 0.12s;
}
.reveal-ready .vision__head.in .vision__title,
.reveal-ready .faq__head.in .faq__title,
.reveal-ready .opp__head.in .opp__title {
  clip-path: inset(-2% -1% -2% -1%);
}

.proto {
  padding: clamp(7rem, 15vh, 12rem) clamp(1.25rem, 5vw, 3rem);
  overflow: hidden;
}
.proto__inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.proto__index {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  color: #c8a96a;
}
.proto__lede {
  max-width: 52ch;
  margin: clamp(1rem, 2.5vh, 1.7rem) auto 0;
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.proto__stage {
  position: relative;
  margin: clamp(3rem, 6vh, 5rem) auto 0;
  max-width: 1120px;
  aspect-ratio: 16 / 8;
  --par: 0px;
}
.proto__car {
  position: absolute;
  left: 50%;
  top: 43%;
  width: 86%;
  aspect-ratio: 6076 / 2632;
  transform: translate(-50%, calc(-50% + var(--par)));
  background: url("../img/prototype.png") center / contain no-repeat;
  background-image: image-set(
    url("../img/prototype.webp") type("image/webp"),
    url("../img/prototype.png") type("image/png")
  );
  z-index: 2;
}

.proto__car--reflect {
  top: 79%;
  z-index: 1;
  opacity: 0.1;
  filter: blur(4px);
  transform: translate(-50%, calc(-50% - var(--par))) scaleY(-1);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 50%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 50%);
}

.proto__floor {
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 60%;
  height: 18%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(225, 232, 245, 0.13), transparent 72%);
  filter: blur(22px);
}

.proto__shadow {
  position: absolute;
  left: 50%;
  bottom: 13%;
  width: 50%;
  height: 6%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.78), transparent 72%);
  filter: blur(14px);
}

.proto__beam {
  position: absolute;
  top: -28%;
  width: 42%;
  height: 135%;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(50px);
  background: radial-gradient(48% 58% at 50% 0%, rgba(208, 218, 244, 0.17), transparent 72%);
}
.proto__beam--l {
  left: 6%;
  transform-origin: top center;
  transform: rotate(15deg);
}
.proto__beam--r {
  right: 6%;
  transform-origin: top center;
  transform: rotate(-15deg);
}

.proto__haze {
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -8%;
  height: 56%;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  background:
    radial-gradient(38% 70% at 32% 96%, rgba(74, 82, 100, 0.28), transparent 70%),
    radial-gradient(42% 75% at 68% 100%, rgba(62, 70, 90, 0.24), transparent 70%);
  filter: blur(34px);
  animation: proto-haze 16s ease-in-out infinite alternate;
}
@keyframes proto-haze {
  0% { transform: translateX(-2.5%) scale(1); opacity: 0.7; }
  100% { transform: translateX(2.5%) scale(1.12); opacity: 1; }
}

.proto__dust {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.proto__dust span {
  position: absolute;
  bottom: -4%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
  opacity: 0;
  animation-name: proto-dust;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes proto-dust {
  0% { transform: translateY(0); opacity: 0; }
  16% { opacity: var(--o, 0.35); }
  84% { opacity: var(--o, 0.35); }
  100% { transform: translateY(-360px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .proto__haze { animation: none; }
  .proto__dust { display: none; }
}

.proto__specs {
  margin: clamp(3rem, 6vh, 5rem) auto 0;
  padding-top: clamp(2.2rem, 4vh, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}
.proto__specs li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0 clamp(0.6rem, 2vw, 1.6rem);
}
.proto__specs li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.spec__q {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.62rem;
  color: #c8a96a;
}
.spec__v {
  display: inline-flex;
  align-items: baseline;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #ffffff;
}
.spec__u {
  margin-left: 0.28em;
  font-size: 0.4em;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.spec__sub {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.5);
}

.proto__cards {
  margin: clamp(4rem, 8vh, 6rem) auto 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vh, 1.35rem);
  list-style: none;
  text-align: left;
}
.proto__card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  column-gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(1.7rem, 3vw, 2.3rem) clamp(1.9rem, 3.4vw, 2.8rem);
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.034),
    rgba(255, 255, 255, 0.012)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 360ms cubic-bezier(0.22, 1, 0.32, 1),
    box-shadow 360ms cubic-bezier(0.22, 1, 0.32, 1),
    transform 360ms cubic-bezier(0.22, 1, 0.32, 1);
}
.proto__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    130deg,
    rgba(200, 169, 106, 0.55),
    rgba(200, 169, 106, 0) 38%,
    rgba(200, 169, 106, 0) 62%,
    rgba(200, 169, 106, 0.32)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 360ms cubic-bezier(0.22, 1, 0.32, 1);
  pointer-events: none;
}
.proto__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.05) 42%,
    rgba(200, 169, 106, 0.12) 50%,
    rgba(255, 255, 255, 0.05) 58%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-170%) skewX(-14deg);
  opacity: 0;
  pointer-events: none;
}
.proto__card-t {
  position: relative;
  z-index: 2;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.proto__card-l {
  position: relative;
  z-index: 2;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.62);
}

@media (hover: hover) and (pointer: fine) {
  .proto__card:hover {
    border-color: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 26px 54px -30px rgba(0, 0, 0, 0.8),
      0 0 44px -16px rgba(200, 169, 106, 0.16);
  }
  .proto__card:hover::before {
    opacity: 1;
  }
  .proto__card:hover::after {
    opacity: 1;
    transform: translateX(300%) skewX(-14deg);
    transition: transform 1000ms cubic-bezier(0.22, 1, 0.32, 1),
      opacity 240ms ease;
  }
}
.proto__note {
  margin: clamp(2rem, 4vh, 3rem) auto 0;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.42);
}

.faq {
  padding: clamp(7rem, 15vh, 12rem) clamp(1.25rem, 5vw, 3rem);
}
.faq__inner {
  max-width: 900px;
  margin: 0 auto;
}
.faq__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}
.faq__index {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  color: #c8a96a;
}
.faq__title {
  margin-top: 1rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: clamp(1.7rem, 2.8vw, 2.9rem);
}

.faq__list {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.faq__qh {
  margin: 0;
  font-weight: inherit;
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 1.8rem);
  padding: clamp(1.15rem, 2.6vh, 1.7rem) 0.25rem;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.25s ease;
}
.faq__q:hover {
  color: #ffffff;
}
.faq__q:focus-visible {
  outline: 2px solid rgba(200, 169, 106, 0.6);
  outline-offset: 4px;
  border-radius: 4px;
}
.faq__n {
  flex: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: #c8a96a;
  padding-top: 0.15em;
}
.faq__qt {
  flex: 1;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.4;
}

.faq__icon {
  position: relative;
  flex: none;
  width: 15px;
  height: 15px;
  color: #c8a96a;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  border-radius: 2px;
}
.faq__icon::before {
  width: 15px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 1.5px;
  height: 15px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 0.3s ease;
}
.faq__item.is-open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__a {
  overflow: hidden;
}
.js .faq__a {
  height: 0;
  transition: height 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.faq__a-inner p {
  max-width: 70ch;
  padding: 0 2.6rem clamp(1.4rem, 3vh, 2rem) 2.6rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.75;
}
.faq__a-inner p + p {
  padding-top: 0;
  margin-top: -0.4rem;
}

.opp {
  position: relative;
  overflow: hidden;
  padding: clamp(7rem, 15vh, 12rem) clamp(1.25rem, 5vw, 3rem);
}
.opp__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(52% 50% at 50% 16%, rgba(200, 169, 106, 0.08), transparent 70%);
}
.opp__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.opp__index {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  color: #c8a96a;
}
.opp__title {
  margin-top: 1.2rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.1;
  font-size: clamp(1.7rem, 3vw, 3rem);
}
.opp__lede {
  margin: 1.4rem auto 0;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.62;
}

.roadmap {
  position: relative;
  list-style: none;
  margin: clamp(4rem, 8vh, 6.5rem) auto 0;
  max-width: 860px;
  display: flex;
  justify-content: space-between;
}
.roadmap::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 7px;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}
.roadmap__step {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.roadmap__dot {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #09090a;
  border: 1px solid rgba(255, 255, 255, 0.32);
}
.roadmap__name {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}
.roadmap__tag {
  position: absolute;
  top: -1.9rem;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #c8a96a;
  white-space: nowrap;
}
.roadmap__step.is-active .roadmap__dot {
  background: #c8a96a;
  border-color: #c8a96a;
  box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.16), 0 0 18px rgba(200, 169, 106, 0.5);
}
.roadmap__step.is-active .roadmap__name {
  color: #ffffff;
}

.reveal-ready .roadmap::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.7s cubic-bezier(0.22, 1, 0.32, 1) 0.2s;
}
.reveal-ready .roadmap.in::before {
  transform: scaleX(1);
}
.reveal-ready .roadmap .roadmap__dot {
  background: #09090a;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  transition: background-color 0.5s ease, border-color 0.5s ease,
    box-shadow 0.5s ease;
}
.reveal-ready .roadmap .roadmap__name,
.reveal-ready .roadmap .roadmap__tag {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.32, 1);
}
.reveal-ready .roadmap__step:nth-child(1) .roadmap__dot,
.reveal-ready .roadmap__step:nth-child(1) .roadmap__name {
  transition-delay: 0.3s;
}
.reveal-ready .roadmap__step:nth-child(2) .roadmap__dot,
.reveal-ready .roadmap__step:nth-child(2) .roadmap__name {
  transition-delay: 0.54s;
}
.reveal-ready .roadmap__step:nth-child(3) .roadmap__dot,
.reveal-ready .roadmap__step:nth-child(3) .roadmap__name {
  transition-delay: 0.78s;
}
.reveal-ready .roadmap__step:nth-child(4) .roadmap__dot,
.reveal-ready .roadmap__step:nth-child(4) .roadmap__name {
  transition-delay: 1.02s;
}
.reveal-ready .roadmap__step:nth-child(5) .roadmap__dot,
.reveal-ready .roadmap__step:nth-child(5) .roadmap__name {
  transition-delay: 1.26s;
}
.reveal-ready .roadmap__step:nth-child(6) .roadmap__dot,
.reveal-ready .roadmap__step:nth-child(6) .roadmap__name {
  transition-delay: 1.5s;
}
.reveal-ready .roadmap .roadmap__tag {
  transition-delay: 1.8s;
}
.reveal-ready .roadmap.in .roadmap__dot {
  border-color: rgba(255, 255, 255, 0.32);
}
.reveal-ready .roadmap.in .roadmap__name,
.reveal-ready .roadmap.in .roadmap__tag {
  opacity: 1;
  transform: none;
}
.reveal-ready .roadmap.in .roadmap__step.is-active .roadmap__dot {
  background: #c8a96a;
  border-color: #c8a96a;
  box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.16),
    0 0 18px rgba(200, 169, 106, 0.5);
  animation: roadmap-pulse 3.4s ease-in-out 2.6s infinite;
}
.reveal-ready .roadmap.in .roadmap__step.is-active .roadmap__name {
  color: #ffffff;
}
@keyframes roadmap-pulse {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.16),
      0 0 18px rgba(200, 169, 106, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(200, 169, 106, 0.09),
      0 0 30px rgba(200, 169, 106, 0.75);
  }
}
.opp__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(2rem, 4vh, 3rem);
}

.opp__founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin: clamp(5.5rem, 11vh, 9rem) auto 0;
}
.opp__founder-photo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 5px rgba(200, 169, 106, 0.1), 0 14px 36px rgba(0, 0, 0, 0.55);
}
.opp__founder-role {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 500;
  color: #ffffff;
}
.opp__founder-tags {
  max-width: 900px;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}
.opp__founder-tags .seg {
  white-space: nowrap;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #09090a;
  padding: clamp(3.5rem, 8vh, 6rem) clamp(1.25rem, 5vw, 3rem)
    clamp(1.75rem, 4vh, 2.75rem);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.footer__logo {
  width: 42px;
  height: 42px;
}
.footer__wm {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: #fff;
}
.footer__wm-1 {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.footer__wm-2 {
  margin-top: 3px;
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.7);
}
.footer__tagline {
  margin-top: 1.4rem;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
  line-height: 1.65;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.footer__h {
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.64rem;
  color: #c8a96a;
}
.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__col a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.25s ease;
}
.footer__col a:hover {
  color: #ffffff;
}
.footer__bottom {
  margin-top: clamp(3rem, 6vh, 4.5rem);
  padding-top: clamp(1.5rem, 3vh, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.4);
}
.hero.is-revealed .hero__layer--base {
  animation: emerge-base 1.1s cubic-bezier(0.22, 1, 0.32, 1) 0.05s forwards;
}
.hero.is-revealed .hero__layer--settle {
  animation: emerge-settle 1s cubic-bezier(0.22, 1, 0.32, 1) 0.3s forwards;
}

.js .hero .reveal-up { opacity: 0; }
.hero.is-revealed .reveal-up {
  animation: reveal-up 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero.is-revealed .reveal-up.d3 { animation-delay: 0.75s; }
.hero.is-revealed .reveal-up.d4 { animation-delay: 0.9s; }

@keyframes emerge-base {
  0% { opacity: 0; }
  45% { opacity: 1; }
  100% { opacity: 1; }
}
@keyframes emerge-settle {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(22px); filter: blur(7px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero.is-static .hero__layer--base { opacity: 1; }
.hero.is-static .hero__layer--settle { opacity: 1; }
.hero.is-static .reveal-up { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .hero.is-revealed .hero__stage,
  .hero.is-revealed .hero__layer--base,
  .hero.is-revealed .hero__layer--settle,
  .hero.is-revealed .reveal-up {
    animation: none;
  }
  .hero .hero__layer--base,
  .hero .hero__layer--settle,
  .hero .reveal-up {
    opacity: 1;
  }
  .hero__layer--spot {
    display: none;
  }
}

.cookie {
  position: fixed;
  left: 50%;
  bottom: clamp(0.9rem, 2.5vh, 1.6rem);
  transform: translate(-50%, 14px);
  width: min(880px, calc(100vw - 2rem));
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms cubic-bezier(0.22, 1, 0.32, 1),
    transform 320ms cubic-bezier(0.22, 1, 0.32, 1);
}
.cookie.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.cookie__panel {
  padding: clamp(1.3rem, 2.6vw, 1.8rem) clamp(1.4rem, 2.8vw, 2rem);
  border-radius: 20px;
  background: rgba(20, 20, 22, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.cookie__title {
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
}
.cookie__desc {
  margin-top: 0.5rem;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}
.cookie__desc strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}
.cookie__link {
  color: #c8a96a;
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 169, 106, 0.4);
}
.cookie__link:hover {
  border-bottom-color: #c8a96a;
}
.cookie__options {
  margin-top: 1.1rem;
}
.cookie__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.cookie__row-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.cookie__row-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: #ffffff;
}
.cookie__row-flag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.45);
}
.cookie__row-desc {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  max-width: 62ch;
}
.cookie__switch {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 24px;
  cursor: pointer;
}
.cookie__switch input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.cookie__track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color 200ms cubic-bezier(0.22, 1, 0.32, 1),
    border-color 200ms cubic-bezier(0.22, 1, 0.32, 1);
}
.cookie__track::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 200ms cubic-bezier(0.22, 1, 0.32, 1);
}
.cookie__switch input:checked + .cookie__track {
  background: #c8a96a;
  border-color: #c8a96a;
}
.cookie__switch input:checked + .cookie__track::after {
  transform: translateX(20px);
}
.cookie__switch--locked,
.cookie__switch--locked input {
  cursor: default;
}
.cookie__switch--locked input:checked + .cookie__track {
  background: rgba(200, 169, 106, 0.55);
  border-color: rgba(200, 169, 106, 0.55);
}
.cookie__switch input:focus-visible + .cookie__track {
  outline: 2px solid rgba(200, 169, 106, 0.7);
  outline-offset: 2px;
}
.cookie__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}
.cookie__customize {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.85rem;
  color: #c8a96a;
}
.cookie__customize:hover {
  color: #d9bd82;
}
.cookie__buttons {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.cookie__btn {
  cursor: pointer;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.6rem 1.35rem;
  border-radius: 999px;
  transition: background-color 200ms cubic-bezier(0.22, 1, 0.32, 1),
    border-color 200ms cubic-bezier(0.22, 1, 0.32, 1), color 200ms;
}
.cookie__btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.cookie__btn--accept {
  background: #ffffff;
  color: #0a0a0b;
  border: 1px solid #ffffff;
}
.cookie__btn:focus-visible {
  outline: 2px solid rgba(200, 169, 106, 0.7);
  outline-offset: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .cookie__btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.04);
  }
  .cookie__btn--accept:hover {
    background: rgba(255, 255, 255, 0.9);
  }
}

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(3.5rem, 9vh, 6.5rem) clamp(1.25rem, 5vw, 3rem)
    clamp(4rem, 10vh, 7rem);
}
.legal__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: #c8a96a;
}
.legal__title {
  margin-top: 1rem;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.08;
  color: #ffffff;
}
.legal__updated {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.legal__lead {
  margin-top: 1.8rem;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}
.legal__section {
  margin-top: clamp(2.2rem, 4.5vh, 3.2rem);
}
.legal__h {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 600;
  color: #ffffff;
}
.legal__h-n {
  font-size: 0.8rem;
  font-weight: 500;
  color: #c8a96a;
}
.legal__section p,
.legal__section li {
  font-size: 0.95rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.68);
}
.legal__section p {
  margin-top: 0.9rem;
}
.legal__section ul {
  margin-top: 0.9rem;
  padding-left: 0;
  list-style: none;
}
.legal__section li {
  position: relative;
  padding-left: 1.1rem;
  margin-top: 0.5rem;
}
.legal__section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  background: rgba(200, 169, 106, 0.6);
}
.legal__section strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}
.legal__section a {
  color: #c8a96a;
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 169, 106, 0.4);
}
.legal__note {
  margin-top: clamp(2.5rem, 5vh, 3.5rem);
  padding: 1.2rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .vision {
    padding: clamp(4.5rem, 11vh, 7.5rem) clamp(1.4rem, 6vw, 3rem);
  }
  .vision__inner {
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 6vw, 2.75rem);
  }
  .vision__head,
  .vision__body {
    grid-column: auto;
  }
  .proto {
    padding: clamp(4.5rem, 11vh, 7.5rem) clamp(1.4rem, 6vw, 3rem);
  }
  .opp {
    padding: clamp(4.5rem, 11vh, 7.5rem) clamp(1.4rem, 6vw, 3rem);
  }
  .faq {
    padding: clamp(4.5rem, 11vh, 7.5rem) clamp(1.4rem, 6vw, 3rem);
  }
  .footer__top {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6vw, 3rem);
  }
}

@media (max-width: 760px) {
  .footer {
    padding: clamp(3rem, 8vh, 4.5rem) clamp(1.4rem, 6vw, 2.5rem)
      clamp(1.75rem, 4vh, 2.5rem);
  }
  .footer__cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
  .proto__card {
    grid-template-columns: 1fr;
    align-items: start;
    row-gap: 0.7rem;
  }
  .opp__founder {
    margin-top: clamp(3.5rem, 9vh, 5.5rem);
  }
}

@media (max-width: 600px) {
  .proto__specs {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.6rem, 5vw, 2.2rem) 0;
  }
  .proto__specs li + li {
    border-left: 0;
  }
  .proto__specs li {
    padding: 0 0.4rem;
  }
  .vision__facts {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .vision__facts li {
    padding: 1.1rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .vision__facts li:first-child {
    padding: 0;
    border-top: 0;
  }
  .vision__facts li + li {
    border-left: 0;
  }
}

@media (max-width: 560px) {
  .roadmap {
    flex-wrap: wrap;
    gap: 2.1rem 0;
  }
  .roadmap::before {
    display: none;
  }
  .roadmap__step {
    flex: 0 0 33.333%;
  }
  .roadmap__name {
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 420px) {
  header .btn-primary {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
  header .btn-primary .btn-icon {
    display: none;
  }
}

@media (min-width: 1024px) and (max-height: 800px) {
  .hero {
    min-height: calc(100svh - 88px);
  }
  .hero__layer {
    width: min(1200px, 95vw, 92vh);
    top: 59%;
  }
  .hero__content {
    padding-top: clamp(2rem, 5vh, 3rem);
  }
  .hero__title {
    margin-top: clamp(0.9rem, 2.2vh, 1.6rem);
  }
  .hero__sep svg {
    width: clamp(300px, 34vw, 500px);
  }
  .hero__bottom {
    gap: 1.1rem;
  }
}

@media (min-width: 1024px) and (max-height: 660px) {
  .hero {
    min-height: calc(100svh - 80px);
  }
  .hero__content {
    padding-top: clamp(1.25rem, 3vh, 2rem);
    padding-bottom: 0.75rem;
    gap: 1.25rem;
  }
  .hero .eyebrow {
    font-size: 0.85rem;
  }
  .hero__title {
    margin-top: clamp(0.6rem, 1.6vh, 1rem);
    font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  }
  .hero__sep {
    margin-top: 0.2rem;
  }
  .hero__sep svg {
    width: clamp(240px, 26vw, 360px);
  }
  .hero__layer {
    width: min(1200px, 95vw, 90vh);
    top: 55%;
  }
  .hero__lede {
    font-size: 0.95rem;
    max-width: 44ch;
  }
  .hero__bottom {
    gap: 0.8rem;
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .hero {
    min-height: calc(100svh - 72px);
  }
  .hero__layer {
    width: min(1200px, 95vw, 36vh);
    top: 49%;
  }
  .hero__content {
    gap: 0.6rem;
    padding: clamp(1.1rem, 4vh, 2rem) clamp(1.25rem, 5vw, 4rem)
      clamp(0.45rem, 2vh, 0.85rem);
  }
  .hero .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }
  .hero__title {
    margin-top: clamp(0.3rem, 1.2vh, 0.7rem);
    font-size: clamp(1.05rem, 3vw, 1.5rem);
  }
  .hero__sep {
    margin-top: 0.15rem;
  }
  .hero__sep svg {
    width: clamp(170px, 32vw, 280px);
  }
  .hero__lede {
    max-width: 48ch;
    font-size: clamp(0.8rem, 2.1vw, 0.95rem);
  }
  .hero__bottom {
    gap: 0.7rem;
  }
}

@media (orientation: landscape) and (max-height: 520px) and (min-width: 760px) {
  .hero__layer {
    top: 51%;
  }
}
