:root {
  --text: #eef2ff;
  --muted: #ced5ea;
  --line: #ffffff2e;
  --panel: #0a1020a6;
  --shadow: #00000070;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, "Neue Haas Grotesk", "Söhne", system-ui, sans-serif;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: stretch;
  background:
    linear-gradient(90deg, #00000020 0%, #00000035 55%, #00000066 100%),
    url("assets/hero-new.png") center center / cover no-repeat;
}

.overlay {
  grid-column: 2;
  display: grid;
  align-content: end;
  gap: .75rem;
  padding: clamp(1.25rem, 3vw, 3rem);
  background: linear-gradient(180deg, #0a102000 0%, var(--panel) 100%);
  border-left: 1px solid var(--line);
  backdrop-filter: blur(6px) saturate(1.05);
  box-shadow: -20px 0 50px #00000033;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 700;
  opacity: .95;
}

h1 {
  margin: 0;
  font-size: clamp(1.7rem, 4vw, 3.5rem);
  line-height: .95;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.sub {
  margin: .2rem 0 0;
  color: var(--muted);
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: end;
    background-position: center;
  }
  .overlay {
    grid-column: 1;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

.crumb {
  margin-top: .5rem;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .35rem .6rem;
  border: 1px solid #ffffff24;
  border-radius: 999px;
  background: #ffffff0a;
}

.crumb-label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c6d6f8;
}

.crumb-email {
  display: block;
  opacity: .95;
  filter: drop-shadow(0 0 10px #8ed9ff22);
}


.copy > * {
  justify-self: start;
}

.crumb {
  margin-top: .7rem;
}
