:root {
  --bg: #0c0d0f;
  --bg-elevated: #14161a;
  --text: #e8eaef;
  --text-muted: #8b92a0;
  --accent: #6ee7c5;
  --accent-soft: rgba(110, 231, 197, 0.12);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --max: 42rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(110, 231, 197, 0.12), transparent),
    linear-gradient(180deg, #0c0d0f 0%, #060708 100%);
}

.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  z-index: 100;
}

.header {
  border-bottom: 1px solid var(--border);
  background: rgba(12, 13, 15, 0.7);
  backdrop-filter: blur(10px);
}

.header__inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.logo {
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  color: var(--accent);
}

.header__badge {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.main {
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.hero {
  max-width: var(--max);
  margin-bottom: 3.5rem;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
  padding: 0.35rem 0.65rem;
  background: var(--accent-soft);
  border-radius: 99px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}

.hero__title em {
  font-style: italic;
  color: #fff;
}

.hero__lead {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.hero__lead strong {
  color: var(--text);
  font-weight: 600;
}

.next {
  padding: 1.75rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: var(--max);
}

.next__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--text);
}

.next__list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.next__list li {
  margin-bottom: 0.5rem;
}

.next__list li:last-child {
  margin-bottom: 0;
}

.footer {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.footer p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
