:root {
  color-scheme: dark;
  --ink: #f7f1e8;
  --muted: #bdb6aa;
  --panel: #242224;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: rgba(0, 0, 0, 0.35);
  --coral: #ff6b5f;
  --teal: #32d4b4;
  --yellow: #ffd166;
  --violet: #8e7cff;
  --bg: #17171b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 15% 10%, rgba(50, 212, 180, 0.16), transparent 26rem),
    radial-gradient(circle at 85% 18%, rgba(255, 107, 95, 0.14), transparent 24rem),
    linear-gradient(180deg, #17171b 0%, #1d1b1e 44%, #121315 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(23, 23, 27, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.hero-actions,
.signup-row,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 18px;
  height: 26px;
  background: linear-gradient(155deg, var(--teal), var(--yellow));
  clip-path: polygon(50% 0, 100% 38%, 62% 100%, 0 62%);
  box-shadow: 0 0 24px rgba(50, 212, 180, 0.45);
}

.nav {
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.footer a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(560px, 76vh, 780px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 19, 21, 0.78), rgba(18, 19, 21, 0.12) 48%, rgba(18, 19, 21, 0.36)),
    linear-gradient(180deg, rgba(18, 19, 21, 0.04), rgba(18, 19, 21, 0.78));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 36px));
  margin: 0 0 clamp(64px, 10vh, 104px) clamp(18px, 5vw, 72px);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(3.5rem, 8vw, 7.6rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.lede {
  max-width: 620px;
  color: #f4e8d9;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--yellow);
  color: #1b1710;
  border-color: transparent;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 36px));
  margin: -48px auto 0;
  position: relative;
  z-index: 2;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 60px var(--shadow);
}

.status-strip div {
  min-height: 96px;
  padding: 20px;
  background: rgba(36, 34, 36, 0.96);
}

.status-strip strong,
.status-strip span {
  display: block;
}

.status-strip span {
  margin-top: 5px;
  color: var(--muted);
}

.section,
.feature-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) 0 0;
}

.section-heading {
  margin-bottom: 28px;
}

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

.mod-card {
  min-height: 340px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mod-card p {
  color: var(--muted);
}

.mod-card a {
  color: var(--yellow);
  font-weight: 800;
  text-decoration: none;
}

.showcase {
  padding-top: clamp(64px, 7vw, 96px);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 18px;
}

.shot-card {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 50px var(--shadow);
}

.shot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature-shot {
  grid-row: span 2;
}

.feature-shot img {
  height: 100%;
  min-height: 430px;
}

.shot-card figcaption {
  padding: 16px;
  color: var(--muted);
}

.shot-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
}

.tag {
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mod-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--teal), var(--yellow));
}

.mod-icon.bank {
  background: linear-gradient(135deg, var(--teal), #d8ff7a);
}

.mod-icon.world {
  background: linear-gradient(135deg, var(--coral), var(--yellow));
}

.mod-icon.chaos {
  background: linear-gradient(135deg, var(--violet), var(--teal));
}

.feature-band {
  padding-bottom: clamp(62px, 8vw, 96px);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.timeline time {
  color: var(--teal);
  font-weight: 800;
}

.timeline p {
  max-width: 740px;
  color: var(--muted);
}

.download-panel,
.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 107, 95, 0.18), rgba(50, 212, 180, 0.12));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.download-panel p,
.contact p,
.form-note {
  color: var(--muted);
}

.contact {
  align-items: flex-start;
  margin-bottom: 70px;
}

.contact > div,
.signup {
  width: min(100%, 520px);
}

.signup label {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.signup-row {
  gap: 10px;
}

input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-note {
  margin: 10px 0 0;
  font-size: 0.9rem;
}

.footer {
  justify-content: space-between;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 660px;
  }

  .hero-copy {
    margin-left: 18px;
  }

  .status-strip,
  .mod-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .feature-shot {
    grid-row: auto;
  }

  .feature-shot img {
    min-height: 0;
  }

  .timeline article,
  .download-panel,
  .contact {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .nav {
    gap: 8px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: 620px;
  }

  .hero-art {
    object-position: 54% center;
  }

  .hero-copy {
    width: calc(100% - 28px);
    margin-bottom: 88px;
    margin-left: 14px;
  }

  h1 {
    font-size: clamp(3.6rem, 20vw, 5rem);
  }

  .signup-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
