/* BizSteez landing page — Path B
 * Hostinger-deployable single-page styles.
 * Palette + typography matched to the v2 Gumroad listing
 * (midnight navy / off-white / teal-cyan accent).
 */

/* === Brand foundation === */
:root {
  --navy: #0A1120;        /* page base / dark sections */
  --navy-alt: #0C1526;    /* alternating sections */
  --navy-card: #101B30;   /* cards */
  --navy-card-hi: #142440;/* hover / active card */
  --border: #213149;      /* subtle hairline border */
  --teal: #19C8D8;        /* primary accent */
  --teal-deep: #11A6B6;   /* accent hover/secondary */
  --teal-soft: rgba(25, 200, 216, 0.12);
  --white: #FFFFFF;
  --paper: #FFFFFF;
  --text: #C9D4E2;        /* body text on navy */
  --muted: #8A98AB;       /* secondary text */
  --font-display: 'Poppins', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, Arial, sans-serif;
  --font-mono: 'Inter', system-ui, sans-serif;
}

/* === Reset === */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* === Layout helpers === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.container.narrow { max-width: 800px; }
.section { padding: 88px 0; }
.section.section-dark { background: var(--navy); color: var(--text); }
.section.section-light { background: var(--navy-alt); color: var(--text); }

/* === Brand mark === */
.brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--white);
  font-size: 22px;
  display: inline-flex;
  align-items: center;
}
.brand-mark::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 13px;
  border-radius: 7px;
  background: var(--teal);
  margin-right: 10px;
  box-shadow: 0 0 14px rgba(25, 200, 216, 0.5);
}
.brand-mark .bs-accent { color: var(--teal); }
.brand-mark.big { font-size: 34px; }
.brand-mark.big::before { width: 32px; height: 18px; border-radius: 9px; margin-right: 14px; }

/* === Top nav === */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 17, 32, 0.85);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
}

/* === Buttons === */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 10px;
  transition: transform 80ms ease, box-shadow 120ms ease, background 120ms ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.2px;
}
.btn-primary {
  background: var(--teal);
  color: #06101E;
  box-shadow: 0 6px 20px rgba(25, 200, 216, 0.22);
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--teal-deep);
  box-shadow: 0 10px 26px rgba(25, 200, 216, 0.32);
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 18px 38px; font-size: 18px; }

/* Temporary "checkout not live yet" state for the pricing CTA */
.btn-soon {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  cursor: default;
  letter-spacing: 0.5px;
  box-shadow: 0 0 0 4px var(--teal-soft);
}
.btn-soon:hover { transform: none; box-shadow: 0 0 0 4px var(--teal-soft); }
.price-soon-note {
  margin-top: 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.2px;
}

/* === Type scale === */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 6.2vw, 76px);
  line-height: 1.04;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 24px;
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2.5px;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 48px;
  color: var(--white);
}
.section-light .section-title,
.section-dark .section-title { color: var(--white); }

/* === HERO === */
.hero {
  padding: 100px 0 80px;
  background:
    radial-gradient(900px 480px at 88% 8%, rgba(25, 200, 216, 0.10), transparent 60%),
    var(--navy);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-sub {
  font-size: 20px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-cta-meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.3px;
}
.hero-art {
  position: relative;
  aspect-ratio: 16 / 9;
}
.hero-img,
.inside-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
}

/* === Image placeholder (fallback if a PNG is missing) === */
.img-placeholder {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 5px;
  background: var(--teal);
  border-radius: 14px 14px 0 0;
}
.img-placeholder .ph-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
}
.ph-hero, .ph-43, .ph-169 { aspect-ratio: 16 / 9; }
.ph-11 { aspect-ratio: 16 / 9; }

/* === PROBLEM === */
.problem .lead {
  font-size: 21px;
  line-height: 1.55;
  margin-bottom: 20px;
  color: var(--text);
}
.problem .lead-emph {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-top: 32px;
  font-style: italic;
}

/* === PILLARS === */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  transition: border-color 140ms ease, transform 140ms ease;
}
.pillar-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.pillar-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--teal);
  margin-bottom: 20px;
}
.pillar-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 16px;
}
.pillar-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

/* === WHAT'S INSIDE === */
.inside-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.checklist { list-style: none; padding: 0; }
.checklist li {
  padding: 14px 0 14px 40px;
  border-bottom: 1px solid var(--border);
  position: relative;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 17px;
  width: 22px; height: 22px;
  border: 2px solid var(--teal);
  border-radius: 5px;
  background: var(--teal-soft);
}
.checklist li::after {
  content: '';
  position: absolute;
  left: 7px; top: 21px;
  width: 6px; height: 12px;
  border: solid var(--teal);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.inside-art { aspect-ratio: 16 / 9; }

/* === ASSET STRIP === */
.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.strip-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.strip-item img,
.strip-item .img-placeholder {
  border-radius: 14px;
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
  background: var(--navy-card);
}
.strip-item figcaption {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.3px;
}

/* === HOW IT WORKS === */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.how-step {
  border-top: 3px solid var(--teal);
  padding-top: 24px;
}
.how-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--teal);
  margin-bottom: 12px;
}
.how-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 16px;
}
.how-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}
.how-closer {
  text-align: center;
  font-style: italic;
  font-size: 18px;
  color: var(--text);
  margin-top: 24px;
}

/* === WHO IT'S FOR === */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.who-col {
  padding: 34px 32px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  border-top: 3px solid;
}
.who-col:first-child { border-top-color: var(--teal); }
.who-col:last-child { border-top-color: var(--border); }
.who-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.3px;
  margin-bottom: 24px;
  color: var(--white);
}
.who-list { list-style: none; padding: 0; }
.who-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.who-list li:last-child { border-bottom: none; }
.who-col:first-child .who-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 12px;
  color: var(--teal);
  font-weight: 700;
}
.who-col:last-child .who-list li::before {
  content: '✕';
  position: absolute; left: 0; top: 12px;
  color: var(--muted);
  font-weight: 700;
}

/* === PRICING === */
.price-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--teal-soft);
}
.price-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 32px;
}
.price-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 92px;
  letter-spacing: -2px;
  color: var(--white);
  line-height: 1;
}
.price-meta {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--muted);
}
.price-list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.price-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 16px;
  color: var(--text);
}
.price-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 10px;
  color: var(--teal);
  font-weight: 700;
}
.price-foot {
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0.3px;
}

/* === FAQ === */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  color: var(--text);
}
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.3px;
  color: var(--white);
  list-style: none;
  position: relative;
  padding-right: 40px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 0;
  font-size: 30px;
  color: var(--teal);
  transition: transform 200ms ease;
  line-height: 1;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

/* === DISCLAIMERS === */
.disclaimers .section-title {
  font-size: 26px;
  margin-bottom: 24px;
}
.disclaimer {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 20px;
}
.disclaimer strong { color: var(--text); }

/* === FOOTER === */
.footer { padding: 64px 0 40px; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.footer-tag {
  font-style: italic;
  color: var(--muted);
  margin-top: 12px;
  font-size: 14px;
}
.footer-meta {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.footer-meta a {
  color: var(--teal);
  text-decoration: underline;
}
.footer-copyright {
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
  opacity: 0.85;
  line-height: 1.5;
}

/* === Mobile === */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .container { padding: 0 20px; }
  .hero { padding: 56px 0 44px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .pillar-grid { grid-template-columns: 1fr; gap: 18px; }
  .inside-grid { grid-template-columns: 1fr; gap: 36px; }
  .strip-grid { grid-template-columns: 1fr; gap: 24px; }
  .how-grid { grid-template-columns: 1fr; gap: 32px; }
  .who-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .price-card { padding: 32px 22px; }
  .price-tag { font-size: 68px; }
  .price-row { flex-direction: column; gap: 4px; align-items: center; }
  .nav-inner { padding-top: 14px; padding-bottom: 14px; }
  .brand-mark { font-size: 19px; }
  .brand-mark::before { width: 18px; height: 11px; margin-right: 8px; }
  .brand-mark.big { font-size: 30px; }
  .faq-item summary { font-size: 19px; padding-right: 30px; }
  .faq-item summary::after { font-size: 24px; }
}

/* === Print === */
@media print {
  .topnav, .footer, .btn { display: none; }
  .section { padding: 24px 0; page-break-inside: avoid; }
}
