:root {
  color-scheme: dark;
  --bg: #0b0d0f;
  --bg-soft: #111518;
  --text: #f2f0ea;
  --muted: #9b9d9b;
  --faint: #626866;
  --line: rgba(231, 232, 223, 0.14);
  --line-strong: rgba(231, 232, 223, 0.3);
  --accent: #e76d45;
  --accent-soft: rgba(231, 109, 69, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --page-pad: clamp(1.25rem, 4vw, 4.75rem);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--text);
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  isolation: isolate;
  padding: 1.5rem var(--page-pad) 1.25rem;
}

.grid-lines {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.43;
  background-image: linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-position: center;
  background-size: min(25vw, 18rem) min(25vw, 18rem);
  mask-image: linear-gradient(to bottom, transparent, black 14%, black 82%, transparent);
}

.ambient {
  position: absolute;
  z-index: -2;
  width: min(48vw, 44rem);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}

.ambient-one {
  top: -24%;
  right: -13%;
  background: rgba(231, 109, 69, 0.13);
  animation: drift-one 16s ease-in-out infinite alternate;
}

.ambient-two {
  bottom: -38%;
  left: -18%;
  width: min(42vw, 38rem);
  background: rgba(54, 94, 99, 0.1);
  animation: drift-two 19s ease-in-out infinite alternate;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.15rem;
  height: 1rem;
}

.brand-mark span {
  display: block;
  width: 0.18rem;
  border-radius: 999px;
  background: var(--accent);
}

.brand-mark span:nth-child(1) { height: 0.45rem; }
.brand-mark span:nth-child(2) { height: 0.8rem; }
.brand-mark span:nth-child(3) { height: 1rem; }

.hero {
  display: grid;
  grid-template-columns: minmax(2.5rem, 0.16fr) minmax(0, 1fr);
  align-items: center;
  width: min(100%, 112rem);
  margin: 0 auto;
  padding: clamp(4rem, 9vh, 8rem) 0 clamp(3rem, 8vh, 7rem);
}

.hero-index {
  align-self: start;
  padding-top: 0.95rem;
  color: var(--faint);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.hero-copy {
  max-width: 73rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 clamp(1.6rem, 3.2vw, 3rem);
  color: var(--muted);
  font-size: clamp(0.7rem, 1vw, 0.88rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.35rem var(--accent-soft), 0 0 1.1rem rgba(231, 109, 69, 0.5);
  animation: pulse 2.8s ease-in-out infinite;
}

h1 {
  max-width: 13ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(3.7rem, 9.6vw, 10.5rem);
  font-weight: 500;
  letter-spacing: -0.085em;
  line-height: 0.93;
}

h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-footer {
  display: grid;
  grid-template-columns: minmax(0, 24rem) auto;
  align-items: end;
  gap: 2rem;
  margin-top: clamp(3.5rem, 8vh, 7rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-strong);
}

.intro {
  max-width: 30rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 300;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1.25rem, 4vw, 4.5rem);
}

.launch-note {
  color: var(--faint);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.slash {
  padding: 0 0.28rem;
  color: var(--accent);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 2.75rem;
  padding: 0.6rem 0;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 180ms ease, gap 180ms var(--ease);
}

.contact-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 180ms var(--ease);
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--accent);
}

.contact-link:hover {
  gap: 1rem;
}

.contact-link:hover svg {
  transform: translateX(0.15rem);
}

.contact-link:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 0.45rem;
  border-radius: 0.2rem;
}

.site-footer {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  animation: reveal 900ms var(--ease) forwards;
}

.reveal-delay-1 { animation-delay: 80ms; }
.reveal-delay-2 { animation-delay: 160ms; }
.reveal-delay-3 { animation-delay: 260ms; }
.reveal-delay-4 { animation-delay: 420ms; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 0.65; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes drift-one {
  to { transform: translate3d(-4vw, 5vh, 0) scale(1.08); }
}

@keyframes drift-two {
  to { transform: translate3d(5vw, -4vh, 0) scale(1.05); }
}

@media (max-width: 700px) {
  .page-shell {
    padding-top: 1.15rem;
  }

  .header-meta {
    display: none;
  }

  .hero {
    display: block;
    padding-top: clamp(5.5rem, 16vh, 9rem);
    padding-bottom: clamp(4rem, 12vh, 7rem);
  }

  .hero-index {
    display: none;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3.4rem, 15vw, 6.2rem);
    letter-spacing: -0.09em;
  }

  .hero-footer {
    display: block;
    margin-top: 4.5rem;
  }

  .hero-actions {
    justify-content: space-between;
    margin-top: 2rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
