:root {
  --bg: #050402;
  --panel: rgba(10, 8, 5, 0.86);
  --panel-strong: rgba(0, 0, 0, 0.92);
  --gold: #f5c24b;
  --gold-2: #b07a24;
  --brass: #7b561e;
  --ink: #f5efe1;
  --muted: #b6ad9d;
  --line: rgba(245, 194, 75, 0.32);
  --green: #5ef2a1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(245, 194, 75, 0.12), transparent 26rem),
    radial-gradient(circle at 84% 90%, rgba(103, 45, 23, 0.34), transparent 28rem),
    repeating-linear-gradient(135deg, rgba(245, 194, 75, 0.04) 0 1px, transparent 1px 24px),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 0 26px rgba(245, 194, 75, 0.25);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 28px);
}

nav a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

nav a:hover,
nav a:focus {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: min(92svh, 920px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72) 68%, rgba(0, 0, 0, 0.96)),
    url("/assets/title-screen.png") center 18% / cover no-repeat;
  filter: saturate(0.88) contrast(1.08);
}

.hero-content {
  position: relative;
  width: min(920px, 100%);
  padding: 0 clamp(18px, 6vw, 72px) clamp(58px, 10vw, 112px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gold {
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  max-width: 900px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 12vw, 9rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
}

h2 {
  font-size: clamp(2.1rem, 6vw, 5.2rem);
  font-family: Georgia, "Times New Roman", serif;
}

h3 {
  font-size: 1.45rem;
}

.hero-copy {
  max-width: 680px;
  color: #d8d0c2;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
}

.button.primary {
  color: #080602;
  background: linear-gradient(135deg, #ffd05c, #b67824);
}

.button.secondary {
  background: rgba(0, 0, 0, 0.62);
}

.section,
.showcase,
.split,
.feature-grid,
.page {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: clamp(58px, 10vw, 120px) 0 34px;
}

.narrow {
  max-width: 920px;
}

.section p,
.showcase p,
.split p,
.legal-copy p,
.support-grid p,
.support-grid li {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 650;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 24px 0 70px;
}

.feature-grid article,
.panel,
.support-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.88), rgba(54, 20, 12, 0.32));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 22px 50px rgba(0, 0, 0, 0.30);
}

.feature-grid article {
  min-height: 220px;
  padding: 28px;
}

.kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
  gap: 30px;
  align-items: center;
  padding: 64px 0;
}

.screen-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.screen-strip img {
  height: 280px;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  filter: saturate(0.86) contrast(1.08);
}

.screen-strip img:first-child {
  grid-row: span 2;
  height: 574px;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  padding: 58px 0 92px;
}

.city-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.city-cards img {
  height: 340px;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(18px, 4vw, 48px);
  color: var(--muted);
  background: #020201;
  border-top: 1px solid var(--line);
}

.page {
  padding: 56px 0 90px;
}

.panel {
  padding: clamp(24px, 5vw, 42px);
  margin-bottom: 24px;
}

.support-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.support-grid article {
  padding: 28px;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.72);
  font: inherit;
}

.legal-copy section:not(.panel) {
  max-width: 900px;
}

.legal-copy h2 {
  margin-top: 34px;
  color: var(--gold);
  font-size: 1.4rem;
  font-family: inherit;
}

@media (max-width: 820px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-grid,
  .showcase,
  .split,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .screen-strip img,
  .screen-strip img:first-child,
  .city-cards img {
    height: 260px;
  }
}

@media (max-width: 560px) {
  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-bg {
    background-position: 51% 12%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .city-cards,
  .screen-strip {
    grid-template-columns: 1fr;
  }
}
