:root {
  --bg: #1a1a1a;
  --bg-card: #2c3038;
  --text: #ffffff;
  --text-muted: #b0b0b0;
  --accent: #e0a042;
  --accent-dark: #c28530;
  --danger: #c0392b;
  --border: #3a3f47;
  --on-accent: #1a1a1a;

  --font-heading: 'Oswald', 'Montserrat', sans-serif;
  --font-body: 'Glacial Indifference', 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

@font-face {
  font-family: 'Glacial Indifference';
  src: url('/fonts/GlacialIndifference-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Glacial Indifference';
  src: url('/fonts/GlacialIndifference-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

h1, h2, h3, .logo, .btn, .pillar-card .num {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  overflow-wrap: break-word;
  word-break: break-word;
}

.wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  position: sticky;
  top: 0;
  background: rgba(12, 12, 13, 0.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

nav.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.logo span {
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 0 0 rgba(224, 160, 66, 0);
}

.btn-primary:hover {
  background: #f0b45c;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px rgba(224, 160, 66, 0.35);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 10px rgba(224, 160, 66, 0.25);
}

.btn-sm {
  padding: 0.6rem 1.3rem;
  font-size: 0.85rem;
}

/* Nav CTA pair */
.nav-btns {
  display: flex;
  gap: 0.6rem;
}

.nav-btn {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}

.nav-btn:hover {
  border-color: var(--accent);
  color: var(--text);
}

.nav-btn-active {
  background: var(--accent);
  color: var(--on-accent);
  border-color: var(--accent);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem;
  min-height: clamp(560px, 50vw, 980px);
  display: flex;
  align-items: center;
  text-align: center;
  border-top: none;
}

.hero .wrap {
  width: 100%;
  min-width: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.72) 55%, rgba(10, 10, 10, 0.92) 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  max-width: 680px;
  margin: 0 auto 1.5rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.hero .subhead {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  max-width: 560px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  margin: 0 auto;
  text-transform: none;
  letter-spacing: normal;
}

.hero p.lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 55ch;
  margin: 0 auto 2.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* Sections */
section {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

section p {
  margin-bottom: 1.2rem;
  max-width: 68ch;
}

section p:last-child {
  margin-bottom: 0;
}

.cta-block p.tagline,
.section-head p {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.emphasis {
  font-weight: 700;
  color: var(--accent);
}

/* Lists */
ul.check-list, ul.cross-list, ul.plain-list {
  list-style: none;
  margin-bottom: 1.25rem;
  max-width: 68ch;
}

ul.check-list li, ul.cross-list li {
  padding: 0.5rem 0;
  display: flex;
  gap: 0.6rem;
  border-top: 1px solid var(--border);
}

ul.check-list li:first-child, ul.cross-list li:first-child {
  border-top: none;
}

ul.check-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
  flex-shrink: 0;
}

ul.cross-list li::before {
  content: "✕";
  color: var(--danger);
  font-weight: 800;
  flex-shrink: 0;
}

ul.plain-list {
  padding-left: 1.2rem;
  list-style: disc;
}

ul.plain-list li {
  padding: 0.2rem 0;
}

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
}

.pillar-card .num {
  color: var(--accent);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.pillar-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1rem;
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.35rem;
  letter-spacing: 0;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Two-column list */
ul.check-list.two-col-list {
  max-width: 100%;
  columns: 2;
  column-gap: 2rem;
  margin-bottom: 1.75rem;
}

ul.check-list.two-col-list li {
  break-inside: avoid;
}

/* Two column lists */
.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.col-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left-width: 3px;
  border-radius: 14px;
  padding: 1.75rem;
}

.col-box h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.col-box.no {
  border-left-color: var(--danger);
}

.col-box.no h3 {
  color: var(--text-muted);
}

.col-box.yes {
  border-left-color: var(--accent);
}

.col-box.yes h3 {
  color: var(--accent);
}

.col-box ul {
  margin-bottom: 0;
}

/* CTA blocks */
.cta-block {
  text-align: center;
  padding: 3rem 0;
}

.cta-block h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-block p.tagline {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 2rem;
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  color: var(--text-muted);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 3rem;
}

footer .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  text-align: center;
}

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

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

/* Image-less hero variant (coaching page) */
.hero-plain {
  min-height: auto;
  padding: 9rem 0 5rem;
}

.hero.hero-plain .btn-primary {
  margin-top: 0;
}

/* Price tag */
.price-tag {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* Desktop-only hero button offset */
@media (min-width: 601px) {
  .hero .btn-primary {
    margin-top: 58px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .wrap {
    padding: 0 1.25rem;
  }

  nav.wrap {
    flex-wrap: wrap;
    gap: 0.6rem;
    row-gap: 0.6rem;
  }

  .logo {
    font-size: 1.15rem;
  }

  .hero {
    padding: 6rem 0 3.5rem;
    min-height: 88svh;
  }

  .hero-bg {
    object-position: center 68%;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
    letter-spacing: 0;
  }

  section {
    padding: 3.5rem 0;
  }

  .section-head {
    margin-bottom: 1.75rem;
  }

  .pillars-grid, .two-col {
    gap: 1rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  ul.check-list.two-col-list {
    columns: 1;
  }

  .hero .btn,
  .cta-block .btn,
  #osta .btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}
