:root {
  --bg: #f3f0e6;
  --surface: rgba(255, 252, 245, 0.84);
  --surface-strong: #fffaf0;
  --ink: #122417;
  --muted: #4f6154;
  --line: #d8cfbd;
  --primary: #0b8a52;
  --primary-deep: #06653b;
  --accent: #c39c48;
  --shadow: 0 26px 60px -38px rgba(18, 36, 23, 0.7);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --display: "Bebas Neue", sans-serif;
  --body: "Commissioner", sans-serif;
  --container: min(1120px, calc(100% - 2.4rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background:
    radial-gradient(1300px 420px at 88% -2%, rgba(11, 138, 82, 0.2), transparent 60%),
    radial-gradient(900px 380px at 0% 10%, rgba(195, 156, 72, 0.22), transparent 60%),
    var(--bg);
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: radial-gradient(circle at 1px 1px, #1d2e1f 0.6px, transparent 0);
  background-size: 8px 8px;
  z-index: -1;
}

a {
  color: inherit;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(140px, 19vw, 168px);
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(145deg, #16352a, #0b241b);
  border: 1px solid color-mix(in srgb, #ffffff 12%, transparent);
  padding: 0.4rem 0.75rem;
  box-shadow: 0 16px 28px -18px rgba(6, 101, 59, 0.9);
}

.brand-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.brand-text {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-nav a {
  text-decoration: none;
  padding: 0.54rem 0.86rem;
  border-radius: 999px;
  font-weight: 550;
  color: var(--muted);
  transition: color 170ms ease, background-color 170ms ease;
}

.top-nav a:hover,
.top-nav a:focus-visible,
.top-nav a[data-active="true"] {
  color: var(--ink);
  background: color-mix(in srgb, var(--line) 45%, transparent);
  outline: none;
}

.top-nav .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 18px 34px -24px rgba(6, 101, 59, 0.9);
}

.top-nav .nav-cta:hover,
.top-nav .nav-cta:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--primary-deep), #05512f);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 20px;
}

main {
  padding-bottom: 3rem;
}

.section {
  padding-top: clamp(2.6rem, 7.6vw, 6.2rem);
}

.section-kicker {
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 660;
  color: var(--primary-deep);
}

.section-title {
  margin: 0 0 1.25rem;
  max-width: 18ch;
  font-family: var(--display);
  letter-spacing: 0.03em;
  line-height: 1;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.lead {
  font-size: clamp(1.03rem, 1.8vw, 1.18rem);
  color: var(--muted);
  max-width: 58ch;
}

.hero {
  padding-top: clamp(2.4rem, 6.2vw, 5rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.hero-compact {
  grid-template-columns: 1fr;
}

.hero h1 {
  margin: 0.35rem 0 1rem;
  max-width: 15ch;
  font-family: var(--display);
  letter-spacing: 0.03em;
  line-height: 0.93;
  font-size: clamp(3.25rem, 9vw, 6.4rem);
}

.hero-compact h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 7vw, 5.2rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.button {
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 640;
  padding: 0.72rem 1.2rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 20px 40px -24px rgba(6, 101, 59, 0.92);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #0a7a4a, #05512f);
}

.button-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: color-mix(in srgb, var(--surface-strong) 86%, transparent);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: color-mix(in srgb, var(--line) 45%, var(--primary));
  background: color-mix(in srgb, #fff 72%, var(--line));
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(148px, 18vw, 172px);
  height: clamp(44px, 5vw, 52px);
  border-radius: 10px;
  transition: transform 180ms ease, filter 180ms ease;
}

.store-badge-link:hover,
.store-badge-link:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.08);
  outline: none;
}

.store-badge-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.hero-points li {
  color: var(--muted);
  font-weight: 520;
  padding-left: 1.25rem;
  position: relative;
}

.hero-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.58rem;
  background: linear-gradient(180deg, var(--accent), #a77e33);
}

.hero-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2vw, 1.45rem);
  box-shadow: var(--shadow);
}

.panel-label {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-deep);
  font-weight: 680;
}

.hero-panel h2 {
  margin: 0.45rem 0 1.05rem;
  font-size: clamp(1.5rem, 3.6vw, 2rem);
  line-height: 1.12;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.snapshot-grid article {
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  background: color-mix(in srgb, #fff 84%, transparent);
}

.snapshot-grid h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.snapshot-grid p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.video-card {
  display: grid;
  gap: 0.8rem;
}

.video-card h3 {
  margin: 0;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--line) 76%, transparent);
  background: #08140d;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
