:root {
  --bg: #111312;
  --surface: rgba(248, 244, 234, 0.08);
  --surface-strong: rgba(248, 244, 234, 0.14);
  --text: #f8f4ea;
  --muted: #b7b4aa;
  --line: rgba(248, 244, 234, 0.16);
  --amber: #e7b75f;
  --coral: #de6b5f;
  --teal: #79c7b9;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(135deg, #111312 0%, #18211d 48%, #241d18 100%);
  background-size: 44px 44px, 44px 44px, cover;
  overflow-x: hidden;
}

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

.page {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 28px 16px 48px;
}

.stage {
  position: relative;
  width: 100%;
  height: min(380px, 58vh);
  min-height: 220px;
  margin: clamp(18px, 5vw, 52px) auto 0;
  overflow: hidden;
}

.stage::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, transparent, var(--line) 10%, var(--teal) 50%, var(--line) 90%, transparent);
  opacity: 0.72;
}

.letter {
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.76em;
  transform: translate3d(var(--x, 0px), -50%, 0);
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: clamp(2rem, 7vw, 5.75rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  will-change: transform;
}

.letter.moving {
  color: var(--coral);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(56px, 9vw, 104px) 0 clamp(36px, 6vw, 72px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  margin: 0;
  color: var(--text);
  font-size: 7.2rem;
  line-height: 0.9;
  letter-spacing: 0;
  text-align: left;
  text-wrap: nowrap;
}

.intro {
  width: 100%;
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.sections {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.link-group {
  min-width: 0;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  backdrop-filter: blur(18px);
}

h3 {
  margin: 0 0 18px;
  color: teal;
  font-size: 1.05rem;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  h1 {
    font-size: 5.8rem;
  }
}

@media (max-width: 760px) {
  .page {
    width: 100%;
    max-width: 100%;
    padding: 16px 12px 40px;
  }


  .intro {
    max-width: 100%;
    font-size: 1rem;
  }

  h1 {
    font-size: 3.25rem;
  }

  .sections {
    grid-template-columns: 1fr;
  }
}

/* components */
.list-grid {
  display: grid;
  gap: 1.5rem;
}

textarea {
  min-width: 100%;
  min-height: 500px;
  resize: none;
}
