:root {
  color-scheme: dark;
  --bg: #090909;
  --panel: rgba(16, 16, 16, 0.94);
  --panel-strong: rgba(20, 20, 20, 0.98);
  --panel-border: rgba(214, 182, 91, 0.24);
  --text: #f3ecd4;
  --muted: #c9c0a2;
  --gold: #d6b65b;
  --gold-soft: rgba(214, 182, 91, 0.14);
  --shadow: 0 26px 60px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(214, 182, 91, 0.1), transparent 28%),
    linear-gradient(180deg, #0b0b0b 0%, #050505 100%);
  color: var(--text);
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-shell {
  width: min(980px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 36px 0 56px;
}

.site-card {
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero {
  padding: 30px 28px 28px;
}

.kicker {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 0.94;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero .subtitle {
  margin: 14px 0 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 720px;
}

.hero .links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--panel-border);
  background: var(--gold-soft);
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.section-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid var(--panel-border);
  background: var(--panel-strong);
}

.section-card h2 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-card p,
.section-card li {
  margin: 0;
  font-size: 15px;
  line-height: 1.62;
  color: var(--muted);
}

.section-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.list-stack {
  display: grid;
  gap: 14px;
}

.app-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid var(--panel-border);
  background: linear-gradient(180deg, rgba(214, 182, 91, 0.08), rgba(255, 255, 255, 0.01));
}

.app-card h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.app-card p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.62;
  color: var(--muted);
}

.app-subtitle {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.app-layout {
  display: grid;
  gap: 18px;
}

.app-shot {
  margin: 0;
  padding: 10px;
  border-radius: 24px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.02);
  max-width: 280px;
  justify-self: center;
}

.app-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.app-shot figcaption {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b4a26d;
}

.app-bullets {
  margin: 14px 0 0;
  padding-left: 18px;
}

.app-bullets li {
  color: var(--muted);
}

.app-meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip--muted {
  opacity: 0.72;
}

.footer-note {
  margin-top: 18px;
  font-size: 13px;
  color: #aa9e79;
}

@media (min-width: 760px) {
  .section-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .app-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.65fr);
    align-items: start;
  }
}
