:root {
  --bg: #0b0f14;
  --panel: #111824;
  --text: #e7eef7;
  --muted: #a8b5c7;
  --line: rgba(231, 238, 247, 0.14);
  --accent: #42a5f5;
  --accent-2: #669c35;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  --radius: 14px;
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% 10%, rgba(66, 165, 245, 0.22), transparent 60%),
    radial-gradient(900px 700px at 80% 20%, rgba(102, 156, 53, 0.14), transparent 55%), var(--bg);
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 24, 14, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-logo {
  height: 34px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(10, 32, 18, 0.66);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  align-items: center;
  justify-content: flex-end;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 0;
}

.site-nav a[aria-current="page"] {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  --hero-image: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 15, 20, 0) 0%,
    rgba(11, 15, 20, 0.12) 70%,
    rgba(11, 15, 20, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  padding: 80px 0 52px;
}

.kicker {
  color: rgba(231, 238, 247, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.hero p {
  margin: 0;
  max-width: 58ch;
  color: rgba(231, 238, 247, 0.86);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: rgba(17, 24, 36, 0.72);
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn:hover {
  border-color: rgba(66, 165, 245, 0.6);
  color: var(--text);
}

.btn-accent {
  background: linear-gradient(135deg, rgba(66, 165, 245, 0.95), rgba(66, 165, 245, 0.55));
  border-color: rgba(66, 165, 245, 0.75);
}

.btn-shop {
  background: linear-gradient(135deg, rgba(102, 156, 53, 0.95), rgba(102, 156, 53, 0.55));
  border-color: rgba(102, 156, 53, 0.75);
}

.section {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.section h2 {
  margin: 0 0 12px;
  font-size: 34px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.section p {
  margin: 0 0 14px;
  color: rgba(231, 238, 247, 0.88);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.card {
  grid-column: span 12;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(17, 24, 36, 0.66);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-inner {
  padding: 18px;
}

.card h3 {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.card p {
  margin: 0;
  color: rgba(231, 238, 247, 0.84);
}

.card-media {
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.04);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-media--contain {
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.03);
}

.card-media--contain img {
  object-fit: contain;
  padding: 14px;
}

.cols-2 .card {
  grid-column: span 12;
}

@media (min-width: 860px) {
  .cols-2 .card {
    grid-column: span 6;
  }
}

.content {
  max-width: 78ch;
}

.content h1 {
  font-size: 44px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 18px 0 10px;
  line-height: 1.05;
}

.content h2 {
  font-size: 28px;
  margin: 22px 0 10px;
}

.content h3 {
  font-size: 18px;
  margin: 18px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(231, 238, 247, 0.92);
}

.content p,
.content li {
  color: rgba(231, 238, 247, 0.88);
}

.content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;
  font-size: 0.95em;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.15em 0.35em;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.content hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 22px 0;
}

.content blockquote {
  margin: 16px 0;
  padding: 14px 16px;
  border-left: 3px solid rgba(66, 165, 245, 0.85);
  background: rgba(66, 165, 245, 0.08);
  border-radius: 10px;
}

.note {
  border: 1px solid rgba(102, 156, 53, 0.45);
  background: rgba(102, 156, 53, 0.1);
  padding: 12px 14px;
  border-radius: 12px;
}

.details {
  border: 1px solid var(--line);
  background: rgba(17, 24, 36, 0.5);
  border-radius: 12px;
  padding: 14px 14px;
  margin: 12px 0;
}

.details summary {
  cursor: pointer;
  list-style: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
  color: rgba(231, 238, 247, 0.92);
}

.details summary::-webkit-details-marker {
  display: none;
}

.details summary::after {
  content: "+";
  float: right;
  color: rgba(231, 238, 247, 0.7);
}

.details[open] summary::after {
  content: "–";
}

.footer {
  padding: 26px 0 34px;
  color: rgba(231, 238, 247, 0.65);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: space-between;
  align-items: center;
}

.footer a {
  color: rgba(231, 238, 247, 0.65);
}

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

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding: 0 0 12px;
  }

  .site-nav.is-open {
    display: flex;
  }
}
