@font-face {
  font-family: "Sinless Display";
  src: url("assets/fonts/BricolageGrotesque-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Variable.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
:root {
  color-scheme: dark;
  --black: #000;
  --paper: #fafafa;
  --silver: #b7b7bd;
  --muted: #939398;
  --graphite: #242426;
  --font: "Manrope", sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
button { font: inherit; }
::selection { color: #000; background: #fff; }
.page {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  overflow: hidden;
  padding-inline: clamp(20px, 4vw, 64px);
  background: radial-gradient(ellipse 44% 43% at 50% 28%, #171719 0%, #080809 46%, #000 100%);
}
/* Light falling through a screen: restrained atmosphere without images. */
.light {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  top: 0;
  left: 50%;
  width: min(900px, 100%);
  height: 44%;
  transform: translateX(-50%);
  background: repeating-linear-gradient(112deg, transparent 0 28px, #ffffff05 29px 30px, transparent 31px 63px);
  mask-image: radial-gradient(ellipse at 50% 0, #000, transparent 68%);
}
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 76px;
}
.brandmark {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #a2a2a8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
}
.brandmark svg { width: 20px; height: 20px; color: #e2e2e5; }
.hero {
  width: min(100%, 850px);
  margin: auto;
  padding: 32px 0 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.seal {
  position: relative;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  margin-bottom: 24px;
  border: 1px solid #4b4b4f;
  border-radius: 30px;
  background: linear-gradient(145deg, #48484d 0%, #202022 24%, #101012 60%, #242427 100%);
  box-shadow: inset 0 1px 1px #ffffff45, inset 0 -2px 3px #000, 0 18px 32px #0008, 0 0 65px #ffffff08;
  transform: rotate(-9deg);
}
.seal::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid #ffffff0f;
  border-radius: 25px;
  pointer-events: none;
}
.seal svg {
  width: 52px;
  height: 58px;
  transform: rotate(9deg);
  filter: drop-shadow(0 2px 1px #000);
}
h1 {
  margin: 0;
  padding-right: .065em;
  font-family: "Sinless Display", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(78px, 12.8vw, 168px);
  line-height: .99;
  letter-spacing: -.065em;
}
.headline {
  margin: 23px 0 0;
  max-width: 580px;
  font-size: clamp(21px, 2.25vw, 29px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.description {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--silver);
  line-height: 1.7;
}
.actions {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  width: min(100%, 690px);
  gap: 14px;
  margin-top: 36px;
}
.action {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  min-height: 74px;
  padding: 12px 13px 12px 23px;
  border: 1px solid #45454a;
  border-radius: 999px;
  color: var(--paper);
  background: linear-gradient(180deg, #252528, #121214);
  box-shadow: inset 0 1px 0 #ffffff17, 0 6px 16px #0005;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 180ms, box-shadow 180ms, transform 180ms;
}
.action.primary {
  color: #131315;
  border-color: #fff;
  background: linear-gradient(180deg, #fff, #e7e7ea);
  box-shadow: inset 0 1px 0 #fff, inset 0 -2px 1px #0000000d, 0 0 32px #ffffff0a;
}
.action .icon { width: 23px; height: 23px; flex: 0 0 23px; }
.action .text { font-size: 14px; font-weight: 650; letter-spacing: -.02em; white-space: nowrap; }
.action .end {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  margin-left: auto;
  border-radius: 50%;
  border: 1px solid #ffffff10;
  background: #ffffff08;
}
.action.primary .end { background: #171719; color: white; border-color: transparent; }
.end svg { width: 17px; height: 17px; transition: transform 180ms; }
@media (hover: hover) {
  .action:hover { transform: translateY(-3px); border-color: #a0a0a8; box-shadow: inset 0 1px 0 #ffffff25, 0 8px 30px #ffffff09; }
  .action.primary:hover { border-color: white; box-shadow: 0 6px 36px #ffffff25; }
  .action:hover .end svg { transform: translateX(2px); }
}
.action:active { transform: translateY(1px) scale(.99); }
.action:focus-visible { outline: 2px solid #fff; outline-offset: 5px; }
.notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 22px 0 0;
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
}
.notice svg { width: 13px; height: 13px; flex: 0 0 13px; }
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 0 27px;
  color: #939398;
  font-size: 10px;
}
.footer::before { content: ""; width: 30px; height: 1px; background: #444448; }
@media (max-width: 700px) {
  .header { min-height: 64px; }
  .hero { padding: 30px 0 42px; }
  .seal { width: 83px; height: 83px; border-radius: 24px; margin-bottom: 24px; }
  .seal::after { border-radius: 19px; }
  .seal svg { width: 42px; height: 47px; }
  h1 { font-size: clamp(64px, 17.4vw, 118px); }
  .headline { margin-top: 22px; max-width: 330px; font-size: 23px; }
  .description { font-size: 12px; margin-top: 10px; }
  .actions { grid-template-columns: 1fr; width: min(100%, 380px); gap: 12px; margin-top: 30px; }
  .action { min-height: 68px; padding-left: 22px; gap: 12px; }
  .action .text { font-size: 14px; }
  .notice { max-width: 290px; margin-top: 19px; font-size: 10px; }
  .footer { padding-bottom: 23px; }
}
@media (max-width: 360px) {
  .action { padding-left: 18px; gap: 10px; }
  .action .text { font-size: 12px; }
  .headline { font-size: 21px; }
}
@media (max-height: 720px) and (min-width: 701px) {
  .header { min-height: 55px; }
  .hero { padding: 12px 0 26px; }
  .seal { width: 75px; height: 75px; border-radius: 23px; margin-bottom: 12px; }
  .seal svg { width: 38px; height: 45px; }
  h1 { font-size: 120px; }
  .headline { margin-top: 16px; }
  .actions { margin-top: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Pointer light is progressive enhancement; touch and keyboard remain native. */
.action { isolation: isolate; overflow: hidden; }
.action::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(160px circle at var(--pointer-x, 50%) var(--pointer-y, 50%), #ffffff20, transparent 75%);
  opacity: 0;
  transition: opacity 180ms;
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
.action[data-lit]::before { opacity: 1; }
}

/* Slow ambient movement lives behind the content and never captures input. */
.atmosphere {
  position: absolute;
  inset: -5%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  transform: translate(var(--scene-x, 0px), var(--scene-y, 0px));
  transition: transform 1.6s cubic-bezier(.16, 1, .3, 1);
}
.beam {
  position: absolute;
  width: 65%;
  height: 140%;
  top: -45%;
  left: 0;
  transform-origin: 50% 10%;
  background: linear-gradient(90deg, transparent 15%, #ffffff03 33%, #ffffff17 49%, #ffffff07 56%, transparent 77%);
  mask-image: linear-gradient(#000 10%, #0009 48%, transparent 90%);
  animation: sweep 19s ease-in-out infinite alternate;
}
.beam-two {
  left: 40%;
  width: 55%;
  opacity: .65;
  animation-name: sweep-back;
  animation-duration: 24s;
  animation-delay: -9s;
}
.light { animation: light-drift 16s ease-in-out infinite alternate; }
.embers { position: absolute; inset: 0; }
.ember {
  position: absolute;
  bottom: -8%;
  left: var(--x);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: #d9d9e0;
  box-shadow: 0 0 8px #ffffff40;
  opacity: 0;
  animation: rise var(--duration) linear var(--delay) infinite;
}
.seal { animation: float 6s ease-in-out infinite; }
.seal::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 20%, #ffffff28 48%, transparent 70%);
  background-size: 300% 100%;
  animation: metal-light 8s ease-in-out infinite;
}
h1 { animation: title-in .8s cubic-bezier(.2,.8,.2,1) both; }
.headline, .description, .actions, .notice {
  animation: content-in .7s ease-out both;
}
.headline { animation-delay: .12s; }
.description { animation-delay: .2s; }
.actions { animation-delay: .3s; }
.notice { animation-delay: .4s; }
.page[data-paused] *, .page[data-paused] *::before, .page[data-paused] *::after {
  animation-play-state: paused !important;
}
@keyframes sweep {
  from { transform: translateX(-14%) rotate(-28deg); opacity: .45; }
  to { transform: translateX(42%) rotate(24deg); opacity: 1; }
}
@keyframes sweep-back {
  from { transform: translateX(15%) rotate(26deg); }
  to { transform: translateX(-38%) rotate(-32deg); }
}
@keyframes light-drift {
  from { transform: translateX(-54%); opacity: .35; }
  to { transform: translateX(-43%); opacity: .9; }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-9deg); }
  50% { transform: translateY(-10px) rotate(-4deg); }
}
@keyframes metal-light {
  0%, 15% { background-position: 100% 0; opacity: .1; }
  50% { opacity: .65; }
  85%, 100% { background-position: 0% 0; opacity: .1; }
}
@keyframes rise {
  0% { transform: translate3d(0, 0, 0); opacity: 0; }
  15%, 65% { opacity: .35; }
  100% { transform: translate3d(var(--drift), -105vh, 0); opacity: 0; }
}
@keyframes title-in {
  from { opacity: 0; transform: scale(.96); filter: blur(5px); }
  to { opacity: 1; transform: scale(1); filter: blur(0); }
}
@keyframes content-in {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 700px) {
  .beam { width: 100%; }
  .beam-two { left: 15%; }
  .ember:nth-child(n+9) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .atmosphere { transform: none; }
  .ember { display: none; }
}
