:root {
  --bg: #120d0a;
  --bg-2: #1b1410;
  --panel: #2a1c14;
  --line: rgba(255, 196, 140, 0.2);
  --text: #f7eadc;
  --muted: #c9b3a3;
  --accent: #f59e0b;
  --glow: rgba(245, 158, 11, 0.28);
  --ok: #4ade80;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Outfit, "Segoe UI", sans-serif;
  background:
    radial-gradient(1100px 520px at 82% -8%, rgba(245, 158, 11, 0.2), transparent 56%),
    radial-gradient(800px 380px at 0% 100%, rgba(220, 136, 0, 0.1), transparent 50%),
    var(--bg);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.wrap {
  width: min(1080px, calc(100% - 40px));
  margin-inline: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0 8px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Syne, Outfit, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0 72px;
}

h1,
h2 {
  font-family: Outfit, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.12;
}

.lede {
  margin: 0 0 28px;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 700;
}

.btn-gold {
  background: var(--accent);
  color: #1a1008;
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.4), var(--shadow);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(0, 0, 0, 0.28);
}

.panel {
  padding: 22px;
  border: 2px solid rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 0 1px var(--line);
}

.panel h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.panel p,
.panel li {
  color: var(--muted);
  line-height: 1.5;
}

.kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.features-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 16px;
  align-items: stretch;
}

.shot {
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.5);
  background: rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 0 1px var(--line);
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
}

.shots {
  display: grid;
  gap: 14px;
  align-content: start;
}

section {
  padding: 8px 0 64px;
}

section h2 {
  margin: 0 0 18px;
  font-size: 1.7rem;
}

.versions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 6px 10px;
  border: 2px solid rgba(0, 0, 0, 0.45);
  background: rgba(0, 0, 0, 0.28);
  font-size: 0.86rem;
}

.note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 860px) {
  .hero,
  .features-row,
  .grid,
  footer .wrap {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav-links {
    display: none;
  }
}
