:root {
  color-scheme: dark;
  --bg: #080706;
  --panel: #15110c;
  --panel-2: #20170e;
  --text: #f7f0e4;
  --muted: #c8bca9;
  --gold: #d8a84f;
  --copper: #a7512d;
  --green: #5f7d4c;
  --line: rgba(216, 168, 79, 0.32);
  --white-line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 7, 6, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner,
.section,
.hero-inner,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.brand span {
  margin-top: 4px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #0b0907;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.secondary {
  background: transparent;
  color: var(--gold);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.98), rgba(8, 7, 6, 0.84) 46%, rgba(8, 7, 6, 0.28)),
    url("/assets/cowboyup-app-cover-20260611.jpg") center right / cover no-repeat;
}

.hero-inner {
  min-height: 680px;
  display: grid;
  align-items: center;
  padding: 86px 0 96px;
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.96;
}

h1 {
  margin-top: 18px;
  font-size: clamp(54px, 9vw, 104px);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(34px, 5vw, 58px);
}

h3 {
  font-size: 28px;
}

p {
  margin: 0;
}

.lead {
  margin-top: 24px;
  max-width: 620px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.store-badge {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--white-line);
  background: #000;
  padding: 9px 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 72px 0;
}

.section-header {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 30px;
}

.section-header p,
.card p,
.policy-body p,
.policy-body li {
  color: var(--muted);
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 24px;
}

.card h3 {
  margin-bottom: 14px;
}

.card ul,
.policy-body ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.card li,
.policy-body li {
  border-left: 4px solid var(--gold);
  padding: 8px 0 8px 14px;
}

.band {
  border-block: 1px solid var(--line);
  background: #0d0b09;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.status-strip div {
  background: #0b0907;
  padding: 22px;
}

.status-strip strong {
  display: block;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.status-strip span {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
}

.policy-hero {
  border-bottom: 1px solid var(--line);
  background: #0d0b09;
}

.policy-hero .section {
  padding-top: 58px;
  padding-bottom: 58px;
}

.policy-body {
  max-width: 860px;
}

.policy-body article {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 24px;
  margin-bottom: 18px;
}

.policy-body h2 {
  margin-bottom: 16px;
  font-size: 34px;
}

.last-updated {
  display: inline-flex;
  margin-top: 22px;
  border: 1px solid var(--line);
  background: var(--panel-2);
  padding: 10px 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #000;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  padding: 42px 0;
}

.footer-inner a {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--text);
}

.footer-title {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav a {
    padding-left: 0;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(8, 7, 6, 0.88), rgba(8, 7, 6, 0.96)),
      url("/assets/cowboyup-app-cover-20260611.jpg") center / cover no-repeat;
  }

  .hero-inner {
    min-height: 620px;
    padding-top: 70px;
  }

  .grid.three,
  .grid.two,
  .status-strip,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
