* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: #070707;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  background: #070707;
  color: #f7f7f7;
  font-family: var(--font-ui);
}

body::selection {
  background: rgba(255, 255, 255, 0.2);
}

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

button,
input,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
}

.site-shell {
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #080808 0%, #111111 46%, #070707 100%);
}

#topo {
  min-height: 100svh;
}

.bottom-blur-layer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  height: 270px;
  pointer-events: none;
  background: none;
}

.bottom-blur {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bottom-blur--1 {
  z-index: 1;
  backdrop-filter: blur(0.25px);
  -webkit-backdrop-filter: blur(0.25px);
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 12.5%,
    #000 25%,
    transparent 37.5%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 12.5%,
    #000 25%,
    transparent 37.5%
  );
}

.bottom-blur--2 {
  z-index: 2;
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
  mask-image: linear-gradient(
    to bottom,
    transparent 12.5%,
    #000 25%,
    #000 37.5%,
    transparent 50%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 12.5%,
    #000 25%,
    #000 37.5%,
    transparent 50%
  );
}

.bottom-blur--3 {
  z-index: 3;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  mask-image: linear-gradient(
    to bottom,
    transparent 25%,
    #000 37.5%,
    #000 50%,
    transparent 62.5%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 25%,
    #000 37.5%,
    #000 50%,
    transparent 62.5%
  );
}

.bottom-blur--4 {
  z-index: 4;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  mask-image: linear-gradient(
    to bottom,
    transparent 37.5%,
    #000 50%,
    #000 62.5%,
    transparent 75%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 37.5%,
    #000 50%,
    #000 62.5%,
    transparent 75%
  );
}

.bottom-blur--5 {
  z-index: 5;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  mask-image: linear-gradient(
    to bottom,
    transparent 50%,
    #000 62.5%,
    #000 75%,
    transparent 87.5%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 50%,
    #000 62.5%,
    #000 75%,
    transparent 87.5%
  );
}

.bottom-blur--6 {
  z-index: 6;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  mask-image: linear-gradient(
    to bottom,
    transparent 62.5%,
    #000 75%,
    #000 87.5%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 62.5%,
    #000 75%,
    #000 87.5%,
    transparent 100%
  );
}

.bottom-blur--7 {
  z-index: 7;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  mask-image: linear-gradient(to bottom, transparent 75%, #000 87.5%, #000 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 75%, #000 87.5%, #000 100%);
}

.bottom-blur--8 {
  z-index: 8;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  mask-image: linear-gradient(to bottom, transparent 87.5%, #000 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 87.5%, #000 100%);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 96px 0 !important;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.scroll-reveal {
  opacity: 0;
  transform: var(--reveal-hidden-transform, translate3d(0, 20px, 0));
  filter: var(--reveal-hidden-filter, none);
  transition:
    opacity var(--reveal-duration, 700ms) var(--reveal-ease, cubic-bezier(0.22, 1, 0.36, 1)),
    transform var(--reveal-duration, 700ms) var(--reveal-ease, cubic-bezier(0.22, 1, 0.36, 1)),
    filter var(--reveal-duration, 700ms) ease;
  transition-delay: 0ms;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: var(--reveal-visible-transform, translate3d(0, 0, 0));
  filter: none;
  transition-delay: var(--reveal-delay, 0ms);
}

.scroll-reveal[data-reveal-variant="hero"] {
  --reveal-hidden-transform: translate3d(0, 40px, 0);
  --reveal-hidden-filter: blur(10px);
  --reveal-duration: 820ms;
}

.scroll-reveal[data-reveal-variant="copy"] {
  --reveal-hidden-transform: translate3d(0, 26px, 0);
  --reveal-hidden-filter: blur(8px);
  --reveal-duration: 740ms;
}

.scroll-reveal[data-reveal-variant="lift"] {
  --reveal-hidden-transform: translate3d(0, 20px, 0) scale(0.985);
  --reveal-hidden-filter: blur(4px);
  --reveal-duration: 680ms;
}

.scroll-reveal[data-reveal-variant="slide-left"] {
  --reveal-hidden-transform: translate3d(-28px, 0, 0);
  --reveal-hidden-filter: blur(6px);
  --reveal-duration: 720ms;
}

.scroll-reveal[data-reveal-variant="slide-right"] {
  --reveal-hidden-transform: translate3d(28px, 0, 0);
  --reveal-hidden-filter: blur(6px);
  --reveal-duration: 720ms;
}

.scroll-reveal[data-reveal-variant="card"] {
  --reveal-hidden-transform: translate3d(0, 32px, 0) scale(0.98);
  --reveal-hidden-filter: blur(6px);
  --reveal-duration: 760ms;
}

.scroll-reveal[data-reveal-variant="chip"] {
  --reveal-hidden-transform: translate3d(0, 16px, 0) scale(0.985);
  --reveal-hidden-filter: blur(3px);
  --reveal-duration: 540ms;
}

.fx-card {
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    background 0.35s ease,
    opacity 0.35s ease;
}

.fx-card:hover {
  transform: translate3d(0, -3px, 0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .fx-card {
    transition-duration: 1ms;
  }

  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .fx-card:hover {
    transform: none;
  }
}

.eyebrow {
  margin: 0 0 16px;
  color: #b8b8b8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-copy {
  max-width: 650px;
  margin: 20px 0 0;
  color: #bdbdbd;
  font-size: 18px;
  line-height: 1.62;
}

.metal-text {
  background: var(--gradient-text-metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #d9d9d9;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .bottom-blur-layer {
    height: 180px;
  }
}
