/* =========================
   RESET
========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: #0b0b0b;
  color: #e8e8e8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}

/* =========================
   CONTAINER
========================= */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* =========================
   HEADER
========================= */

.site-header {
  background: #050505;
  border-bottom: 1px solid #1c1c1c;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-mark {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #d4af37;
  text-decoration: none;
}

.site-nav a {
  color: #ccc;
  text-decoration: none;
  margin-left: 18px;
  font-size: 14px;
}

.site-nav a:hover {
  color: #d4af37;
}

/* =========================
   HERO
========================= */

.hero {
  padding: 60px 0;
}

.hero-grid {
  display: grid;
  gap: 30px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.hero-text {
  color: #bdbdbd;
  margin-bottom: 20px;
}

.eyebrow {
  color: #d4af37;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-block;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  margin-right: 10px;
}

.btn-gold {
  background: #d4af37;
  color: #000;
}

.btn-dark {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #333;
}

.btn:hover {
  opacity: 0.85;
}

/* =========================
   PANEL
========================= */

.panel-card {
  background: #111;
  border: 1px solid #222;
  padding: 20px;
  border-radius: 6px;
}

.panel-card h2 {
  margin-bottom: 10px;
}

.panel-points {
  margin-top: 10px;
  padding-left: 16px;
}

/* =========================
   SECTION
========================= */

.featured-section {
  padding: 40px 0;
}

.section-heading h2 {
  margin-top: 5px;
}

.card-grid {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.feature-card {
  background: #111;
  border: 1px solid #222;
  padding: 20px;
  border-radius: 6px;
}

.card-kicker {
  color: #d4af37;
  font-size: 12px;
  margin-bottom: 6px;
}

.text-link {
  color: #d4af37;
  text-decoration: none;
  font-size: 14px;
}

/* =========================
   EDITORIAL
========================= */

.editorial-section {
  padding: 40px 0;
  border-top: 1px solid #1a1a1a;
}

.editorial-grid {
  display: grid;
  gap: 20px;
}

/* =========================
   CTA
========================= */

.cta-section {
  padding: 40px 0;
}

.cta-box {
  background: #111;
  border: 1px solid #222;
  padding: 25px;
  border-radius: 6px;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  border-top: 1px solid #1c1c1c;
  background: #050505;
  padding: 30px 0;
}

.footer-grid {
  display: grid;
  gap: 20px;
}

.footer-links a {
  display: block;
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 6px;
}

.footer-links a:hover {
  color: #d4af37;
}

.footer-copy {
  color: #999;
  font-size: 14px;
  margin-top: 10px;
}

/* =========================
   MOBILE
========================= */

@media (min-width: 700px) {

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

  .card-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .editorial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

}

/* =========================
   NAV TOGGLE
========================= */

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: transparent;
  border: 1px solid #2a2a2a;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #d4af37;
}

.site-nav {
  display: none;
}

.site-nav.nav-open {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  top: 72px;
  right: 20px;
  background: #111;
  border: 1px solid #222;
  padding: 16px;
  border-radius: 8px;
  min-width: 220px;
  z-index: 20;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
}

.site-header .container {
  position: relative;
  min-height: 72px;
}

/* =========================
   PAGE HELPERS
========================= */

.hero-compact {
  padding: 48px 0 28px;
}

.max-copy {
  max-width: 760px;
}

.mini-disclosure {
  margin-top: 18px;
  font-size: 13px;
  color: #9d9d9d;
}

/* =========================
   PRODUCT STACK
========================= */

.product-stack {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.product-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 8px;
  padding: 24px;
}

.product-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.product-card p {
  color: #c7c7c7;
}

.product-content {
  display: grid;
  gap: 14px;
}

.product-points {
  padding-left: 18px;
  color: #d7d7d7;
}

.product-points li {
  margin-bottom: 8px;
}

/* =========================
   DESKTOP NAV
========================= */

@media (min-width: 700px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    align-items: center;
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
    min-width: auto;
  }

  .site-nav.nav-open {
    display: flex;
    flex-direction: row;
    gap: 0;
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
    min-width: auto;
  }
}

/* =========================
   HOMEPAGE POLISH
========================= */

body {
  letter-spacing: -0.01em;
}

.hero {
  padding: 44px 0 56px;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.06;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.hero-text {
  max-width: 22em;
  font-size: 19px;
  line-height: 1.75;
  color: #bdbdbd;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.btn {
  border-radius: 8px;
  padding: 14px 22px;
  font-size: 16px;
  margin-right: 0;
}

.btn-gold {
  font-weight: 600;
}

.panel-card-large {
  padding: 30px;
  border-radius: 10px;
}

.panel-label {
  color: #d4af37;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.panel-card p,
.feature-card p,
.cta-box p,
.footer-copy {
  line-height: 1.75;
}

.section-heading h2,
.editorial-section h2,
.cta-box h2 {
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.featured-section,
.editorial-section,
.cta-section {
  padding: 56px 0;
}

.feature-card,
.product-card,
.cta-box {
  border-radius: 10px;
}

.feature-card h3 {
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.feature-card p {
  color: #c2c2c2;
}

.text-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 15px;
}

.site-footer {
  padding: 56px 0;
}

.footer-links a {
  margin-bottom: 10px;
}

/* =========================
   RESPONSIVE REFINEMENTS
========================= */

@media (max-width: 699px) {
  .hero h1 {
    font-size: 34px;
    max-width: none;
  }

  .hero-text {
    font-size: 17px;
    max-width: none;
  }

  .section-heading h2,
  .editorial-section h2,
  .cta-box h2 {
    font-size: 32px;
  }

  .feature-card h3,
  .product-card h3 {
    font-size: 24px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 700px) {
  .hero {
    padding: 78px 0 84px;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .panel-card-large {
    min-height: 100%;
  }
}

/* =========================
   PRODUCT PAGE POLISH
========================= */

.product-card {
  padding: 28px;
}

.product-card h3 {
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.product-card p {
  font-size: 18px;
  line-height: 1.75;
  color: #c5c5c5;
}

.product-points {
  margin-top: 2px;
}

.product-points li {
  line-height: 1.7;
}

@media (max-width: 699px) {
  .product-card {
    padding: 24px;
  }

  .product-card h3 {
    font-size: 28px;
  }

  .product-card p {
    font-size: 17px;
  }
}