@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 100 900;
  font-display: block;
  src: url("/fonts/geist-sans.woff2") format("woff2");
}
@font-face {
  font-family: "Geist Mono";
  font-style: normal;
  font-weight: 100 900;
  font-display: block;
  src: url("/fonts/geist-mono.woff2") format("woff2");
}

:root {
  --ink: #f2f2ec;
  --quiet: #92928c;
  --line: #272824;
  --lime: #dbff00;
  --page: #080908;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --pad-x: clamp(20px, 6vw, 88px);
  --pad-y: clamp(18px, 3.2vw, 40px);
  --mark: clamp(4.2rem, 18vw, 15rem);
  --font: Geist, ui-sans-serif, system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { background: var(--page); -webkit-text-size-adjust: 100%; }
html, body { margin: 0; min-height: 100%; }
body {
  background: var(--page);
  color: var(--ink);
  font-family: var(--font);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100svh;
  color-scheme: dark;
}

a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
a:focus-visible {
  outline: 1px solid #7f8873;
  outline-offset: 4px;
}

.grain,
.scan,
.ticks span {
  pointer-events: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 4;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.scan {
  position: fixed;
  left: 0;
  right: 0;
  top: -42vh;
  height: 42vh;
  z-index: 2;
  background: linear-gradient(to bottom,
    rgba(242, 242, 236, 0) 0%,
    rgba(242, 242, 236, .028) 44%,
    rgba(242, 242, 236, .07) 50%,
    rgba(242, 242, 236, .028) 56%,
    rgba(242, 242, 236, 0) 100%);
  animation: page-scan 14s linear infinite;
  will-change: transform;
}

@keyframes page-scan {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, 142vh, 0); }
}

.ticks span {
  position: fixed;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(242, 242, 236, .18);
  z-index: 5;
  animation: fade-in 1.4s var(--ease) 1.4s both;
}
.ticks span:nth-child(1) { top: 14px; left: 14px; border-right: 0; border-bottom: 0; }
.ticks span:nth-child(2) { top: 14px; right: 14px; border-left: 0; border-bottom: 0; }
.ticks span:nth-child(3) { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.ticks span:nth-child(4) { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

.frame {
  position: relative;
  z-index: 6;
  min-height: 100svh;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--pad-y) var(--pad-x);
  gap: clamp(28px, 5vh, 64px);
  overflow-x: hidden;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  min-width: 0;
  max-width: 100%;
}

.kicker,
.badge,
.row {
  font-family: var(--mono);
  font-size: clamp(11px, 1.1vw, 13px);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--quiet);
  margin: 0;
  line-height: 1.5;
}

.kicker { animation: fade-in 1.1s var(--ease) .08s; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: .8em;
  animation: fade-in .9s var(--ease) .28s;
}

.live {
  width: .55em;
  height: .55em;
  background: var(--ink);
  display: inline-block;
  animation: pulse 2.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: .28; transform: scale(.85); }
  50% { opacity: 1; transform: scale(1); }
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  min-width: 0;
  width: 100%;
  padding: clamp(8px, 3vh, 28px) 0;
}

.mark {
  margin: 0;
  display: flex;
  align-items: baseline;
  font-size: var(--mark);
  line-height: .82;
  font-weight: 560;
  letter-spacing: -.04em;
  color: var(--ink);
  max-width: 100%;
}

.g {
  display: inline-block;
  animation: letter-in 1.25s var(--ease) both, wave 8.5s ease-in-out infinite;
  animation-delay: calc(.28s + var(--i) * .14s), calc(2.4s + var(--i) * .2s);
}

@keyframes letter-in {
  from { opacity: 0; filter: blur(16px); transform: translate3d(0, .18em, 0); }
  to { opacity: 1; filter: blur(0); transform: none; }
}

@keyframes wave {
  0%, 72%, 100% { filter: brightness(1); }
  80% { filter: brightness(1.55); }
}

.sq {
  width: .1em;
  height: .1em;
  margin-left: .08em;
  flex-shrink: 0;
  background: var(--lime);
  display: inline-block;
  animation: sq-in .7s cubic-bezier(.16, 1, .3, 1) .98s both, sq-pulse 4.6s ease-in-out 1.9s infinite;
}

@keyframes sq-in {
  from { opacity: 0; transform: scale(.2); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes sq-pulse {
  0%, 84%, 100% { opacity: 1; transform: scale(1); }
  90% { opacity: .5; transform: scale(.88); }
  94% { opacity: 1; transform: scale(1.08); }
}

.sub {
  margin: clamp(22px, 3.4vw, 48px) 0 0;
  display: flex;
  flex-direction: column;
  gap: .06em;
  font-size: clamp(1.45rem, 4.2vw, 3.1rem);
  line-height: 1.16;
  letter-spacing: -.03em;
  font-weight: 450;
  max-width: 100%;
}

.sub span {
  display: block;
  overflow-wrap: anywhere;
  animation: fade-up 1.15s var(--ease) both;
}
.s1 { color: var(--ink); animation-delay: .88s; }
.s2 { color: var(--quiet); animation-delay: 1.04s; }

@keyframes fade-up {
  from { opacity: 0; transform: translate3d(0, .45em, 0); }
  to { opacity: 1; transform: none; }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cta,
a.cta,
a.cta:link,
a.cta:visited,
a.cta:hover,
a.cta:active,
a.cta:focus {
  position: relative;
  margin-top: clamp(28px, 4.2vw, 52px);
  min-height: 64px;
  width: min(100%, 420px);
  max-width: 100%;
  align-self: flex-start;
  padding: 18px 22px;
  border: 0;
  background: var(--lime);
  color: #101200;
  -webkit-text-fill-color: #101200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 650;
  letter-spacing: -.02em;
  animation: fade-up 1.1s var(--ease) 1.18s;
  transition: background .25s ease, transform .3s var(--ease);
}

.cta span {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.3;
}

.cta .arrow {
  flex: 0 0 auto;
  color: #101200;
  -webkit-text-fill-color: #101200;
  font-size: 20px;
  line-height: 1;
}

.cta:hover { background: #e9ff66; }
.cta:active { transform: scale(.985); }

.bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.rule {
  position: relative;
  height: 1px;
  width: 100%;
  background: var(--line);
  overflow: hidden;
  transform-origin: left center;
  animation: rule-in 1.4s var(--ease) 1.1s both;
}

@keyframes rule-in {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.rule i {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 22%;
  background: linear-gradient(90deg, transparent, rgba(242, 242, 236, .7), transparent);
  animation: sweep 4.8s cubic-bezier(.6, .02, .35, 1) 1.6s infinite;
}

@keyframes sweep {
  0% { transform: translateX(-120%); }
  60%, 100% { transform: translateX(560%); }
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  flex-wrap: wrap;
  color: #9a9e92;
  min-width: 0;
  max-width: 100%;
}

.row span,
.row a {
  min-width: 0;
  overflow-wrap: anywhere;
}

.row a {
  color: #9a9e92;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  transition: color .2s;
}
.row a:hover { color: var(--ink); }
.row > * { animation: fade-in 1.2s var(--ease) 1.45s both; }

@media (max-width: 720px) {
  :root { --mark: clamp(3.4rem, 22vw, 6.4rem); }
  .hero { padding: 8px 0 12px; width: 100%; }
  .top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .kicker, .badge, .row { font-size: 11px; letter-spacing: .14em; }
  .sub { font-size: clamp(1.5rem, 7.4vw, 2.1rem); }
  .cta { width: min(100%, calc(100vw - 40px)); align-self: stretch; font-size: 16px; min-height: 62px; }
  .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 400px) {
  :root { --mark: clamp(3rem, 20vw, 4.6rem); }
  .sub { font-size: clamp(1.35rem, 7vw, 1.7rem); }
  .cta { font-size: 15px; padding-left: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .scan { display: none; }
}
