:root {
  --blue: #86CEF4;
  --blue-dark: #4FA8D8;
  --ink: #0A0A0A;
  --white: #FFFFFF;
  --gray: #666666;
  --light-gray: #F2F2F2;
  --border: #E2E2E2;
  --radius: 4px;
  --max-w: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.wordmark {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.wordmark .sup { font-size: 13px; vertical-align: super; font-weight: 700; }

.site-nav { display: flex; gap: 28px; }
.site-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.75;
  transition: opacity 0.15s ease;
}
.site-nav a:hover { opacity: 1; }

.nav-cta {
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.15s ease;
}
.nav-cta:hover { opacity: 0.85; }

@media (max-width: 860px) {
  .site-nav { display: none; }
  .site-header { padding: 16px 20px; }
}

/* ============ SHARED SECTION STYLES ============ */
section {
  padding: 90px 24px;
}
section > h2, section > .eyebrow, section > p.section-sub, section > p.section-sub-dark {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.eyebrow-dark { color: var(--blue); }
.section-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 620px;
  margin: 0 auto 50px;
  line-height: 1.6;
}
.section-sub-dark {
  font-size: 17px;
  color: #cfcfcf;
  max-width: 620px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.btn-primary:hover { opacity: 0.88; }
.btn-center { display: flex; margin: 50px auto 0; width: fit-content; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }

/* ============ STATS / CREDENTIALS ============ */
.stats-bar {
  padding: 56px 24px;
  background: var(--blue);
}
.stats-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 52px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 8px;
  opacity: 0.75;
}
@media (max-width: 640px) {
  .stats-bar { padding: 40px 20px; }
  .stats-grid { gap: 32px; }
  .stat-number { font-size: 36px; }
}

/* ============ HERO ============ */
.hero {
  padding: 120px 24px 100px;
  background: var(--white);
}
.hero-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
}
.hero h1 .accent { color: var(--blue-dark); }
.hero-sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; }
}

/* ============ 7 PILLARS (signature section) ============ */
.pillars {
  background: var(--ink);
  color: var(--white);
}
.pillars h2 { color: var(--white); }
.pillar-grid {
  max-width: var(--max-w);
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}
.pillar-card {
  background: var(--ink);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s ease;
}
.pillar-card:hover { background: #151515; }
.pillar-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.05em;
}
.pillar-name {
  font-size: 19px;
  font-weight: 700;
}
.pillar-mech {
  font-size: 13.5px;
  line-height: 1.55;
  color: #b8b8b8;
}
@media (max-width: 900px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pillar-grid { grid-template-columns: 1fr; }
}

/* ============ FREE RESOURCES ============ */
.resources { background: var(--white); }
.resource-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.resource-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
  text-decoration: none;
  color: var(--ink);
  background: var(--white);
  font-family: inherit;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.resource-card:hover { border-color: var(--blue-dark); transform: translateY(-2px); }
.resource-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue-dark);
}
.resource-title { font-size: 17px; font-weight: 700; }
.resource-desc { font-size: 14px; color: var(--gray); line-height: 1.5; }
.resource-cta { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-top: auto; text-align: left; }

/* ============ EMAIL GATE MODAL ============ */
.gate-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.gate-modal.open { display: flex; }
.gate-modal-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  max-width: 420px;
  width: 100%;
  position: relative;
}
.gate-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--gray);
  cursor: pointer;
}
.gate-close:hover { color: var(--ink); }
.gate-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-dark);
  margin: 0 0 8px;
}
.gate-modal-box h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
}
.gate-sub {
  font-size: 14px;
  color: var(--gray);
  margin: 0 0 22px;
}
#gateForm { display: flex; flex-direction: column; gap: 12px; }
#gateForm input {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
}
#gateForm input:focus { outline: none; border-color: var(--blue-dark); }
.gate-submit { width: 100%; margin-top: 4px; }
.gate-status {
  font-size: 13px;
  color: var(--gray);
  text-align: center;
  margin: 14px 0 0;
  min-height: 16px;
}
.gate-tool-link {
  display: inline-block;
  margin-top: 6px;
  font-weight: 700;
  color: var(--blue-dark);
  text-decoration: none;
}
.gate-tool-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .resource-grid { grid-template-columns: 1fr; }
}

/* ============ PRODUCTS ============ */
.products { background: var(--ink); color: var(--white); }
.products h2 { color: var(--white); }
.product-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue);
}
.product-title { font-size: 18px; font-weight: 700; }
.product-desc { font-size: 14px; color: #b8b8b8; line-height: 1.55; flex-grow: 1; }
.product-price { font-size: 22px; font-weight: 800; color: var(--white); }
.product-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  background: var(--blue);
  color: var(--ink);
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.product-buy:hover { opacity: 0.85; }

@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ============ COURSE ============ */
.course { background: var(--white); }
.course-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.course-desc {
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 32px;
}
.course-note {
  font-size: 13px;
  color: var(--gray);
  margin-top: 14px;
}

/* ============ COACHING ============ */
.coaching { background: var(--ink); color: var(--white); text-align: center; }
.coaching h2 { color: var(--white); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: #999;
  text-align: center;
  padding: 50px 24px 40px;
}
.site-footer .wordmark { color: var(--white); margin-bottom: 16px; }
.footer-disclaimer {
  font-size: 12px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
  color: #888;
}
