:root {
  color-scheme: dark;
  --ink: #f3fff8;
  --muted: #b4d6c8;
  --deep: #020708;
  --edge: rgba(188, 255, 220, 0.22);
  --cyan: #7ce7d5;
  --moss: #8ef18a;
  --gold: #ffe19a;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--deep);
  letter-spacing: 0;
}

.site-shell {
  min-height: 100vh;
  background: #020708;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: calc(100vh - 54px);
  display: grid;
  align-items: center;
  padding: clamp(58px, 8vw, 110px) clamp(22px, 7vw, 104px);
  isolation: isolate;
}

.hero-media,
.hero-media img,
.shade,
.sheen,
.stars {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.16) contrast(1.1) brightness(0.98);
}

.shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(1, 5, 6, 0.98) 0%, rgba(1, 7, 7, 0.9) 26%, rgba(2, 12, 12, 0.34) 63%, rgba(1, 4, 5, 0.5) 100%),
    linear-gradient(180deg, rgba(1, 3, 4, 0.42) 0%, rgba(1, 3, 4, 0.03) 45%, rgba(1, 3, 4, 0.84) 100%);
}

.sheen {
  z-index: -1;
  mix-blend-mode: screen;
  opacity: 0.52;
  background:
    linear-gradient(118deg, transparent 0 34%, rgba(139, 255, 214, 0.11) 34.4%, transparent 35.2% 100%),
    linear-gradient(116deg, transparent 0 57%, rgba(255, 225, 154, 0.1) 57.25%, transparent 57.8% 100%),
    linear-gradient(90deg, rgba(124, 231, 213, 0.12) 0 1px, transparent 1px 100%);
  background-size: 100% 100%, 100% 100%, 7.5rem 100%;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.7) 44%, rgba(0, 0, 0, 0.2) 100%);
}

.stars {
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.62) 0 1px, transparent 1.4px),
    radial-gradient(circle at 22% 78%, rgba(124, 231, 213, 0.58) 0 1px, transparent 1.5px),
    radial-gradient(circle at 68% 18%, rgba(245, 255, 248, 0.54) 0 1px, transparent 1.4px),
    radial-gradient(circle at 83% 52%, rgba(255, 225, 154, 0.72) 0 1px, transparent 1.4px);
}

.hero-copy {
  position: relative;
  width: min(710px, 100%);
  padding-block: 6px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: -26px;
  width: min(12rem, 44vw);
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), rgba(255, 225, 154, 0.55), transparent);
}

.kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(0.78rem, 1vw, 0.94rem);
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(255, 225, 154, 0.36);
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(4rem, 9vw, 8.8rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 40px rgba(124, 231, 213, 0.22),
    0 28px 100px rgba(0, 0, 0, 0.78);
}

.line {
  margin: clamp(22px, 3vw, 32px) 0 0;
  max-width: 25rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.24rem);
  line-height: 1.5;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.9);
}

footer {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 clamp(22px, 7vw, 96px);
  color: rgba(243, 255, 248, 0.78);
  border-top: 1px solid var(--edge);
  background: rgba(1, 5, 6, 0.95);
  font-size: 0.82rem;
  backdrop-filter: blur(18px);
}

@media (max-width: 720px) {
  .hero {
    min-height: calc(100vh - 50px);
    align-items: end;
    padding-top: 46px;
    padding-bottom: 52px;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .shade {
    background:
      linear-gradient(180deg, rgba(2, 7, 7, 0.24) 0%, rgba(2, 9, 9, 0.54) 42%, rgba(1, 4, 5, 0.98) 100%),
      linear-gradient(90deg, rgba(1, 5, 6, 0.9) 0%, rgba(1, 5, 6, 0.22) 100%);
  }

  .sheen {
    opacity: 0.34;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.05rem, 14vw, 5.2rem);
    line-height: 0.9;
  }

  footer {
    min-height: 50px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-media img {
    animation: slow-drift 22s ease-in-out infinite alternate;
  }
}

@keyframes slow-drift {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.05) translate3d(-1.2%, -0.6%, 0);
  }
}
