:root {
  color-scheme: dark;
  --ink: #11100d;
  --night: #080806;
  --night-soft: #15130f;
  --vellum: #f1eadb;
  --muted: #bdb4a5;
  --copper: #c6845b;
  --signal: #b9ff4d;
  --signal-soft: rgba(185, 255, 77, 0.72);
  --moss: #a8b6a3;
  --bluegrey: #9cafb7;
  --line-dark: rgba(241, 234, 219, 0.17);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--vellum);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

#trust-field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--night);
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.42;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(241, 234, 219, 0.035) 0,
      rgba(241, 234, 219, 0.035) 1px,
      transparent 1px,
      transparent 84px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(241, 234, 219, 0.025) 0,
      rgba(241, 234, 219, 0.025) 1px,
      transparent 1px,
      transparent 84px
    );
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse at 28% 28%, rgba(8, 8, 6, 0.62) 0, rgba(8, 8, 6, 0.34) 34%, transparent 62%),
    linear-gradient(90deg, rgba(8, 8, 6, 0.86) 0, rgba(8, 8, 6, 0.62) 38%, rgba(8, 8, 6, 0.12) 68%, transparent 100%),
    linear-gradient(180deg, rgba(8, 8, 6, 0.1) 0, transparent 46%, rgba(8, 8, 6, 0.34) 86%, rgba(8, 8, 6, 0.5) 100%);
}

main {
  position: relative;
  z-index: 2;
}

.hero {
  min-height: 78svh;
  display: flex;
  align-items: end;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 72px 0 42px;
}

.hero-copy {
  max-width: 940px;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  margin-bottom: clamp(42px, 5vw, 74px);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(82px, 15vw, 206px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.82;
}

h2 {
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero-statement {
  max-width: 860px;
  color: rgba(241, 234, 219, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 5.7vw, 84px);
  line-height: 0.98;
}

.statement-accent {
  color: var(--signal);
  text-shadow: 0 0 24px rgba(185, 255, 77, 0.1);
}

.hero-status {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 18px;
  max-width: none;
  margin-top: clamp(34px, 4vw, 46px);
  padding-top: 18px;
  border-top: 1px solid rgba(241, 234, 219, 0.14);
  color: rgba(241, 234, 219, 0.8);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.45;
  white-space: nowrap;
}

.hero-status span {
  color: var(--signal-soft);
  font-weight: 750;
}

.teaser-section,
.access-section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.teaser-section {
  padding: 42px 0 66px;
  border-top: 1px solid var(--line-dark);
  color: rgba(241, 234, 219, 0.82);
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.35;
}

.teaser-section p {
  max-width: 960px;
}

.access-section {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 22px;
  padding: 36px 0 52px;
  border-top: 1px solid var(--line-dark);
}

.access-section h2 {
  max-width: none;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--signal-soft);
  font-size: clamp(19px, 1.45vw, 24px);
  font-weight: 720;
  line-height: 1.25;
}

.email-link {
  color: var(--vellum);
  border-bottom: 1px solid rgba(241, 234, 219, 0.55);
  font-size: clamp(19px, 1.45vw, 24px);
  font-weight: 650;
  line-height: 1.2;
  transition:
    border-color 160ms ease,
    color 160ms ease;
}

.email-link:hover {
  color: var(--signal);
  border-color: var(--signal);
}

@media (max-width: 900px) {
  .hero,
  .teaser-section,
  .access-section {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    min-height: 78svh;
    padding: 66px 0 44px;
  }

  .teaser-section {
    padding: 38px 0 62px;
  }

  .hero-status,
  .access-section {
    flex-wrap: wrap;
    gap: 8px 14px;
    white-space: normal;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(70px, 21vw, 116px);
  }

  .hero-statement {
    font-size: clamp(34px, 11vw, 58px);
  }
}
