@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/SpaceGrotesk-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #101b1b;
  --bg-2: #141f1f;
  --card: #182323;
  --card-2: #1c2929;
  --border: #2a3a3a;
  --lime: #c6ff00;
  --lime-d: #aee000;
  --white: #ffffff;
  --muted: #8e9a9a;
  --dim: #5c6a6a;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --radius: 22px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

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

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--lime);
  font-size: 15px;
}

.brand img {
  width: 28px;
  height: 28px;
  object-fit: cover;
  object-position: 50% 18%;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.nav__links a:hover {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  border-radius: 999px;
  padding: 12px 20px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--lime {
  background: var(--lime);
  color: #111;
}

.btn--lime:hover {
  background: var(--lime-d);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
  padding: 11px 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: 28px;
  background: #070c0c url('../assets/night-venue.png') center / cover no-repeat;
  display: flex;
  align-items: flex-end;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 16, 16, 0.88) 0%, rgba(10, 16, 16, 0.45) 46%, rgba(10, 16, 16, 0.15) 100%),
    linear-gradient(180deg, rgba(16, 27, 27, 0.2) 40%, rgba(16, 27, 27, 0.95) 100%),
    linear-gradient(0deg, rgba(198, 255, 0, 0.18), transparent 42%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 72px 56px 56px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.lede {
  margin: 18px 0 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero__hint {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 72px 0 0;
}

.section__label {
  margin: 0 0 22px;
  color: var(--dim);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
}

.step {
  padding: 28px 26px 30px;
  min-height: 188px;
}

.step__num {
  margin: 0 0 22px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
}

.step h3,
.cta-card h2,
.run__copy h2,
.legal-page h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.step h3 {
  font-size: 22px;
}

.step p,
.run__copy p,
.cta-card p,
.legal-page p {
  margin: 10px 0 0;
  color: var(--muted);
}

.run {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
  padding: 36px 40px;
}

.run__copy h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
  max-width: 14ch;
}

.run__copy p {
  max-width: 46ch;
}

.status {
  background: var(--card-2);
  border-radius: 18px;
  padding: 22px 24px 20px;
}

.status__label {
  margin: 0 0 16px;
  color: var(--dim);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.status li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 14px;
  padding: 6px 0;
}

.status li.is-done {
  color: var(--white);
}

.status li.is-nested {
  padding-left: 24px;
  grid-template-columns: 1fr;
  color: var(--dim);
  font-size: 13px;
}

.dot {
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(198, 255, 0, 0.12);
}

.dot--empty {
  background: transparent;
  border: 1px solid var(--dim);
  box-shadow: none;
}

.status__code {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--dim);
  font-size: 12px;
}

.status__digits {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--lime);
}

.why {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.logo-slot {
  min-height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--dim);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-bottom: 72px;
}

.cta-card {
  padding: 32px 32px 28px;
}

.cta-card h2 {
  font-size: 28px;
}

.cta-card__action {
  margin-top: 22px;
}

.notify {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.notify .hp {
  display: none;
}

.notify input[type="email"] {
  width: 100%;
  min-width: 0;
}

.notify .form-status {
  grid-column: 1 / -1;
}

.field,
.talk-form input,
.talk-form textarea {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: #101818;
  color: var(--white);
  font: inherit;
  padding: 12px 16px;
  outline: none;
}

.notify input {
  border: 0;
  border-radius: 999px;
  background: #101818;
  color: var(--white);
  font: inherit;
  padding: 12px 16px;
  outline: none;
}

.talk-form textarea {
  border-radius: 16px;
  min-height: 110px;
  resize: vertical;
}

.notify input::placeholder,
.talk-form input::placeholder,
.talk-form textarea::placeholder {
  color: var(--dim);
}

.form-status {
  min-height: 0;
  margin: 0;
  color: var(--lime);
  font-size: 13px;
}

.form-status:empty {
  display: none;
}

.form-status:not(:empty) {
  margin-top: 4px;
}

.form-status.is-error {
  color: #ff8a8a;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 28px 0 40px;
  color: var(--dim);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  text-transform: none;
  letter-spacing: 0;
}

.site-footer nav a:hover {
  color: var(--white);
}

.legal-page {
  padding: 24px 0 80px;
  max-width: 720px;
}

.legal-page h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

dialog {
  width: min(440px, calc(100% - 32px));
  height: fit-content;
  max-height: calc(100vh - 48px);
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  color: var(--white);
  padding: 20px 24px;
}

dialog h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

dialog > p {
  margin: 8px 0 0;
  color: var(--muted);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.55);
}

.talk-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.talk-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

@media (max-width: 900px) {
  .shell {
    width: min(var(--shell), calc(100% - 32px));
  }

  .nav__links {
    display: none;
  }

  .hero {
    min-height: 480px;
  }

  .hero__content {
    padding: 48px 24px 36px;
  }

  .steps,
  .run,
  .cta-grid,
  .logos {
    grid-template-columns: 1fr;
  }

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

  .run {
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
