:root {
  --bg: #040404;
  --bg-2: #040404;
  --panel: #d9d9d9;
  --panel-edge: #d9d9d9;
  --text: #ffffff;
  --muted: #93969f;
  --soft: #f2f2f2;
  --safe-green: #4cd971;
  --blue: #2838e3;
  --yellow: #ffb700;
  --line: rgba(217, 217, 217, 0.38);
  --font: "Azeret Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --header-height: 104px;
  --space-1: 12px;
  --space-2: 24px;
  --space-3: 40px;
  --space-4: 64px;
  --space-5: 80px;
  --space-6: 112px;
  --space-7: 150px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: auto;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
}

html.has-smooth-scroll body {
  height: var(--smooth-height, auto);
}

.smooth-page {
  position: relative;
  z-index: 1;
  isolation: isolate;
  padding-top: var(--header-height);
}

.smooth-page::before {
  display: none;
}

html.has-smooth-scroll .smooth-page {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  padding-top: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(clamp(28px, 5.56vw, 80px), calc((100vw - 1440px) / 2 + 80px));
  background: var(--bg);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  pointer-events: none;
  background: rgba(217, 217, 217, 0.24);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-size: clamp(21px, 2.22vw, 32px);
  font-weight: 400;
  line-height: 1.25;
  text-transform: lowercase;
}

.brand-logo,
.footer-logo {
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-logo {
  width: 28px;
  height: 37px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 999px;
  padding: 0 35px;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(156px, 15.07vw, 217px);
  min-height: 56px;
  border-radius: 999px;
  padding: 0;
  color: var(--text);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  white-space: nowrap;
}

.header-cta,
.button-secondary {
  border: 0;
  background: var(--blue);
}

.hero {
  position: relative;
  min-height: 940px;
  padding: 28px max(clamp(22px, 7.8vw, 146px), calc((100vw - 1440px) / 2 + 146px)) 72px;
}

.hero-copy {
  position: relative;
  width: min(1148px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero h1,
.section h2 {
  margin: 0;
  color: var(--text);
  font-weight: 500;
  line-height: 1.25;
}

.hero h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(40px, 4.45vw, 64px);
  font-weight: 500;
}

.section h2 {
  font-size: clamp(34px, 3.35vw, 48px);
  font-weight: 500;
}

.hero p,
.section p,
.site-footer p,
.site-footer small {
  color: var(--muted);
  font-weight: 400;
}

.hero p {
  width: min(1106px, 100%);
  margin: var(--space-2) auto 0;
  font-size: clamp(15px, 1.2vw, 20px);
  font-weight: 400;
  line-height: 1.55;
}

.corner-mark {
  position: absolute;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(217, 217, 217, 0.36);
  transform: rotate(45deg);
  opacity: 0.74;
}

.corner-mark::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--safe-green);
}

.hero-copy .corner-mark {
  left: calc(50% - 525px);
  top: 20px;
}

.visual-frame {
  overflow: hidden;
  border: 1px solid var(--panel-edge);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: none;
}

.visual-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame {
  width: min(1148px, 100%);
  height: min(48.8vw, 703px);
  min-height: 360px;
  margin: var(--space-4) auto 0;
}

.ticker {
  height: 76px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--bg);
  border-top: 1px solid rgba(217, 217, 217, 0.28);
  border-bottom: 1px solid rgba(217, 217, 217, 0.28);
  box-shadow: none;
}

.ticker-track {
  min-width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(28px, 4.6vw, 76px);
  animation: ticker 44s linear infinite;
  color: var(--text);
  font-size: clamp(18px, 1.45vw, 24px);
  font-weight: 300;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track.reverse {
  animation-direction: reverse;
}

.ticker-square {
  width: clamp(24px, 2.2vw, 32px);
  height: clamp(24px, 2.2vw, 32px);
  flex: 0 0 auto;
  background: var(--safe-green);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  position: relative;
  padding: var(--space-7) max(clamp(24px, 7.5vw, 150px), calc((100vw - 1440px) / 2 + 150px));
}

.feature-stack {
  padding-top: var(--space-7);
  padding-bottom: var(--space-7);
}

.section-copy {
  position: relative;
  width: min(1148px, 100%);
  margin: 0 auto var(--space-5);
  text-align: center;
}

.mark-left {
  left: clamp(30px, 12vw, 210px);
  top: -46px;
}

.section p {
  margin: var(--space-2) auto 0;
  max-width: 1000px;
  font-size: clamp(12px, 0.95vw, 16px);
  line-height: 1.65;
}

.wide-frame {
  width: min(950px, 100%);
  aspect-ratio: 1820 / 864;
  min-height: 0;
  margin: 0 auto;
}

.wide-frame img {
  object-fit: contain;
}

.split-section {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(46px, 6vw, 110px);
  padding-top: var(--space-7);
  padding-bottom: var(--space-7);
}

.split-copy {
  position: relative;
}

.split-copy h2 {
  max-width: 640px;
  font-size: clamp(34px, 3.35vw, 48px);
  font-weight: 500;
}

.split-copy p {
  max-width: 650px;
  margin-left: 0;
  line-height: 1.75;
}

.mark-offset {
  left: -78px;
  top: -54px;
}

.side-frame {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  min-height: 0;
  border-radius: 14px;
}

.side-frame img {
  object-fit: contain;
}

.cta-section {
  min-height: 560px;
  display: grid;
  place-items: center;
  text-align: center;
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}

.cta-copy {
  position: relative;
  width: min(1160px, 100%);
}

.cta-copy h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(34px, 3.35vw, 48px);
  font-weight: 500;
}

.mark-center {
  left: 23%;
  top: -60px;
}

.mark-center::after {
  background: var(--safe-green);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-4);
}

.button-primary {
  border: 0;
  background: var(--yellow);
  box-shadow: none;
  color: var(--bg);
}

.legal-page {
  padding: 80px max(clamp(24px, 5.56vw, 80px), calc((100vw - 1440px) / 2 + 80px)) 0;
}

.legal-hero {
  position: relative;
  width: min(1280px, 100%);
  margin: 0 auto 56px;
  text-align: left;
}

.legal-kicker {
  margin: 0;
  color: var(--text);
  font-size: clamp(32px, 3.35vw, 48px);
  font-weight: 500;
  line-height: 1.12;
}

.policy-steps {
  width: min(1280px, 100%);
  margin: 0 auto var(--space-7);
  display: grid;
  gap: 0;
}

.policy-step {
  min-height: 148px;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 392px);
  align-items: center;
  gap: clamp(48px, 14vw, 220px);
  padding: 32px;
  border-radius: 8px;
}

.policy-step:nth-child(odd) {
  background: #1a1a1a;
}

.policy-step-heading {
  display: grid;
  grid-template-columns: 5px 64px minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}

.policy-step-line {
  width: 5px;
  height: 84px;
  display: block;
  background: var(--safe-green);
}

.policy-step-number {
  color: var(--text);
  font-size: clamp(44px, 4.5vw, 68px);
  font-weight: 500;
  line-height: 1;
}

.policy-step h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(20px, 1.75vw, 28px);
  font-weight: 500;
  line-height: 1.25;
}

.policy-step p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.7;
}

.site-footer {
  min-height: 360px;
  display: grid;
  place-items: center;
  gap: 20px;
  padding: 58px 24px 82px;
  text-align: center;
  border-top: 1px solid rgba(217, 217, 217, 0.28);
  background: var(--bg);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--safe-green);
  font-size: clamp(26px, 2.25vw, 38px);
  font-weight: 500;
  line-height: 1;
  text-transform: lowercase;
}

.footer-logo {
  width: 42px;
  height: 55px;
}

.site-footer p {
  margin: 0;
  font-size: clamp(14px, 1.25vw, 22px);
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.site-footer small {
  margin-top: 52px;
  color: var(--muted);
  font-size: clamp(13px, 1.1vw, 19px);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --header-height: 78px;
    --space-4: 52px;
    --space-5: 64px;
    --space-6: 88px;
    --space-7: 104px;
  }

  body::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 58px;
  }

  .hero-copy .corner-mark {
    left: 12%;
    top: -8px;
  }

  .hero-frame {
    height: 420px;
    margin-top: 48px;
  }

  .section {
    padding: 92px 28px;
  }

  .legal-page {
    padding: 72px 28px 0;
  }

  .policy-step {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .policy-step {
    min-height: 0;
  }

  .section-copy {
    margin-bottom: 56px;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .mark-left,
  .mark-offset,
  .mark-center {
    left: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --space-4: 44px;
    --space-5: 54px;
    --space-6: 76px;
    --space-7: 84px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand-link {
    gap: 10px;
    font-size: 18px;
  }

  .brand-logo {
    width: 22px;
    height: 29px;
  }

  .header-cta {
    width: auto;
    min-height: 42px;
    padding: 0 18px;
    font-size: 12px;
  }

  .hero {
    padding: 32px 14px 44px;
  }

  .hero h1,
  .section h2,
  .split-copy h2,
  .cta-copy h2 {
    line-height: 1.18;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .section h2,
  .split-copy h2,
  .cta-copy h2 {
    font-size: clamp(30px, 8.6vw, 42px);
  }

  .hero p {
    margin-top: 26px;
    font-size: 13px;
    line-height: 1.65;
  }

  .corner-mark {
    width: 54px;
    height: 54px;
  }

  .corner-mark::after {
    width: 22px;
    height: 22px;
  }

  .hero-copy .corner-mark {
    left: 4%;
    top: -18px;
  }

  .hero-frame {
    height: 310px;
    min-height: 0;
    margin-top: 36px;
    border-radius: 14px;
  }

  .ticker {
    height: 70px;
  }

  .ticker-track {
    gap: 28px;
    font-size: 16px;
  }

  .ticker-square {
    width: 22px;
    height: 22px;
  }

  .section {
    padding: 76px 18px;
  }

  .legal-page {
    padding: 64px 18px 0;
  }

  .policy-step {
    padding: 24px 18px;
  }

  .policy-step-heading {
    grid-template-columns: 4px 48px minmax(0, 1fr);
    gap: 24px;
  }

  .policy-step-line {
    width: 4px;
    height: 64px;
  }

  .feature-stack {
    padding-top: 90px;
  }

  .section p {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.7;
  }

  .wide-frame {
    border-radius: 14px;
  }

  .split-section {
    min-height: auto;
    gap: 52px;
  }

  .hero-actions {
    gap: 14px;
    margin-top: 36px;
  }

  .button {
    min-height: 46px;
    padding: 0 20px;
    font-size: 12px;
  }

  .site-footer {
    min-height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
