/* ============================================================
   BRETT KRAIGER — SITE STYLES
   Palette drawn from The AI-Powered Business book cover
   Deep navy | Orange circuit glow | Metallic gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-deep:    #07091A;
  --bg-dark:    #0B0F24;
  --bg-mid:     #101728;
  --bg-card:    #0D1530;
  --orange:     #E8751A;
  --orange-h:   #FF8F35;
  --gold:       #e8a91a;
  --gold-light: #f5bc2e;
  --white:      #EEF0F8;
  --text:       #C0CADC;
  --muted:      #7888A4;
  --border:     #192238;
  --max-w:      1100px;
  --r:          8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.85rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--orange); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange-h); }

strong, b { color: var(--orange); font-weight: 600; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ---- NAV ---- */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,9,26,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; position: relative;
}
.nav-logo {
  font-family: 'Oswald', sans-serif; font-size: 1.2rem; font-weight: 700;
  color: var(--white); letter-spacing: .1em; white-space: nowrap;
  text-decoration: none;
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; list-style: none; gap: 4px; }
.nav-links a {
  color: var(--text); font-size: .88rem; padding: 6px 12px;
  border-radius: var(--r); transition: color .2s, background .2s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.nav-cta {
  background: var(--orange); color: #fff !important;
  font-size: .85rem; font-weight: 600; padding: 10px 18px;
  border-radius: var(--r); white-space: nowrap; text-decoration: none;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--orange-h) !important; transform: translateY(-1px); }

.nav-toggle { display: none; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block; background: var(--orange); color: #fff;
  font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 600;
  letter-spacing: .05em; padding: 16px 36px; border-radius: var(--r);
  border: none; cursor: pointer; text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(232,117,26,.3);
}
.btn-primary:hover { background: var(--orange-h); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 28px rgba(232,117,26,.45); }

.btn-secondary {
  display: inline-block; background: transparent; color: var(--orange);
  font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 600;
  letter-spacing: .05em; padding: 14px 34px; border-radius: var(--r);
  border: 2px solid var(--orange); cursor: pointer; text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
}
.btn-secondary:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }

.btn-gold {
  display: inline-block; background: var(--gold); color: var(--bg-deep);
  font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 700;
  letter-spacing: .05em; padding: 16px 36px; border-radius: var(--r);
  border: none; cursor: pointer; text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-gold:hover { background: var(--gold-light); color: var(--bg-deep); transform: translateY(-2px); }

/* ---- HERO (home) ---- */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 70%, rgba(232,117,26,.1) 0%, transparent 65%),
    linear-gradient(180deg, #07091A 0%, #0B0F24 100%);
  padding: 80px 0 60px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,117,26,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,117,26,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; max-width: 840px; }
.eyebrow {
  display: inline-block; font-family: 'Oswald', sans-serif;
  font-size: .78rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange); border: 1px solid rgba(232,117,26,.3);
  background: rgba(232,117,26,.08); padding: 6px 16px;
  border-radius: 100px; margin-bottom: 24px;
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--text);
  margin-bottom: 40px; max-width: 580px; line-height: 1.65;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 16px; }
.hero-note { font-size: .85rem; color: var(--muted); }
.hero-note a { color: var(--gold); }

/* ---- SECTIONS ---- */
section { padding: 80px 0; }
.section-dark  { background: var(--bg-dark); }
.section-mid   { background: var(--bg-mid); }
.section-deep  { background: var(--bg-deep); }

.section-label {
  font-family: 'Oswald', sans-serif; font-size: .75rem; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-sub { font-size: 1.1rem; color: var(--text); max-width: 640px; margin-bottom: 48px; }
.divider { width: 48px; height: 3px; background: var(--orange); margin: 16px 0 32px; border: none; }

/* ---- OFFER GRID ---- */
.offer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.offer-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 36px 28px; position: relative;
  transition: border-color .2s, transform .2s;
}
.offer-card:hover { border-color: rgba(232,117,26,.4); transform: translateY(-4px); }
.offer-card.featured {
  border-color: var(--orange);
  background: linear-gradient(145deg, #0E1630, #131E38);
  box-shadow: 0 0 40px rgba(232,117,26,.15);
}
.offer-badge {
  display: inline-block; background: var(--orange); color: #fff;
  font-size: .7rem; font-weight: 700; font-family: 'Oswald', sans-serif;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 16px;
}
.offer-price {
  font-family: 'Oswald', sans-serif; font-size: 2.8rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.offer-card h3 { font-size: 1.25rem; margin-bottom: 12px; }
.offer-card p { font-size: .93rem; color: var(--text); margin-bottom: 24px; line-height: 1.6; }

/* ---- TESTIMONIAL ---- */
.testimonial-block {
  max-width: 760px; margin: 0 auto; text-align: center;
  padding: 48px 40px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 12px; position: relative;
}
.testimonial-block::before {
  content: '\201C'; font-family: 'Oswald', sans-serif; font-size: 6rem;
  color: var(--orange); opacity: .25; position: absolute;
  top: -10px; left: 28px; line-height: 1;
}
.testimonial-text {
  font-size: 1.15rem; line-height: 1.8;
  color: var(--white); font-style: italic; margin-bottom: 24px;
  text-align: left;
}
.testimonial-name {
  font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--gold); letter-spacing: .1em; text-transform: uppercase;
}
.testimonial-role { font-size: .85rem; color: var(--muted); margin-top: 4px; }

/* ---- FORCE BLOCK ---- */
.force-block {
  background: linear-gradient(135deg, var(--bg-card), #0F1B36);
  border: 1px solid var(--border); border-left: 4px solid var(--orange);
  border-radius: var(--r); padding: 32px 36px; margin: 40px 0;
}
.force-equation {
  font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700;
  color: var(--orange); margin-bottom: 12px;
}
.force-block p { color: var(--text); }

/* ---- CREDENTIALS ---- */
.cred-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 14px; margin-top: 32px;
}
.cred-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 22px;
  display: flex; gap: 12px; align-items: flex-start;
}
.cred-dot {
  width: 8px; height: 8px; background: var(--orange); border-radius: 50%;
  flex-shrink: 0; margin-top: 8px;
}
.cred-text { font-size: .93rem; color: var(--text); line-height: 1.4; }

/* ---- DELIVERABLES ---- */
.deliverable-list { list-style: none; margin: 24px 0; }
.deliverable-list li {
  padding: 22px 0; border-bottom: 1px solid var(--border);
  display: flex; gap: 18px;
}
.deliverable-list li:last-child { border-bottom: none; }
.d-icon {
  width: 34px; height: 34px; background: rgba(232,117,26,.12);
  border: 1px solid rgba(232,117,26,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--orange);
  font-family: 'Oswald', sans-serif; font-weight: 700; font-size: .85rem;
}
.d-body h4 { color: var(--white); margin-bottom: 6px; }
.d-body p { font-size: .93rem; color: var(--text); }

/* ---- STEPS ---- */
.steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; margin-top: 40px;
}
.step-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 22px; text-align: center;
}
.step-num {
  font-family: 'Oswald', sans-serif; font-size: 2.4rem; font-weight: 700;
  color: var(--orange); opacity: .4; line-height: 1; margin-bottom: 12px;
}
.step-card h4 { color: var(--white); margin-bottom: 8px; font-size: 1rem; }
.step-card p { font-size: .88rem; color: var(--text); }

/* ---- PRICE BOX ---- */
.price-box {
  background: linear-gradient(135deg, var(--bg-card), #0F1B36);
  border: 2px solid var(--orange); border-radius: 14px;
  padding: 48px 40px; text-align: center; max-width: 520px;
  margin: 48px auto 0; box-shadow: 0 0 60px rgba(232,117,26,.12);
}
.price-box .big-price {
  font-family: 'Oswald', sans-serif; font-size: 4.5rem; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 6px;
}
.price-box .price-label {
  font-size: .82rem; color: var(--muted); margin-bottom: 20px;
  font-family: 'Oswald', sans-serif; letter-spacing: .15em; text-transform: uppercase;
}
.price-box p { color: var(--text); margin-bottom: 28px; font-size: .98rem; }

/* ---- FAQ ---- */
.faq { margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.faq-a { font-size: .95rem; color: var(--text); }

/* ---- USE CASES ---- */
.usecase-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 16px; margin: 32px 0;
}
.usecase-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px;
  font-size: .95rem; color: var(--text); line-height: 1.5;
}
.usecase-card::before {
  content: '"'; font-family: 'Oswald', sans-serif; font-size: 2rem;
  color: var(--orange); opacity: .5; line-height: 1;
  display: block; margin-bottom: 8px;
}

/* ---- BOOK LAYOUT ---- */
.book-layout {
  display: grid; grid-template-columns: 300px 1fr;
  gap: 64px; align-items: start;
}
.book-cover img {
  width: 100%; border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.7), 0 0 40px rgba(232,117,26,.15);
}
.book-subtitle {
  font-size: 1rem; color: var(--gold); font-family: 'Oswald', sans-serif;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 24px;
}

/* ---- FORM ---- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .9rem; font-weight: 500; color: var(--white); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--bg-mid); border: 1px solid var(--border);
  border-radius: var(--r); color: var(--white);
  font-family: 'Inter', sans-serif; font-size: 1rem; padding: 12px 16px;
  outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(232,117,26,.07) 0%, transparent 60%),
    linear-gradient(180deg, #07091A 0%, #0B0F24 100%);
  padding: 80px 0 60px; border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin-bottom: 20px; max-width: 800px; }
.page-hero .sub { font-size: 1.15rem; color: var(--text); max-width: 640px; line-height: 1.6; }

/* ---- STORY ---- */
.story-body { max-width: 720px; }
.story-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin: 48px 0 14px;
  padding-left: 16px;
  border-left: 3px solid var(--orange);
  line-height: 1.3;
}
.story-body h3:first-child { margin-top: 0; }

.story-body p { font-size: 1.05rem; line-height: 1.85; color: var(--text); margin-bottom: 1.5rem; }


/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, #0E1630, #0B1228);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 0; text-align: center;
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { font-size: 1.05rem; color: var(--text); max-width: 540px; margin: 0 auto 32px; }
.cta-band .cta-inner { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
footer { background: #040510; border-top: 1px solid var(--border); padding: 60px 0 32px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand {
  font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 700;
  color: var(--white); letter-spacing: .1em; margin-bottom: 14px;
}
.footer-brand span { color: var(--orange); }
.footer-tagline { font-size: .88rem; color: var(--muted); line-height: 1.65; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif; font-size: .75rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text); font-size: .88rem; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copyright { font-size: .8rem; color: var(--muted); }
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a { font-size: .8rem; color: var(--muted); }
.footer-legal-links a:hover { color: var(--orange); }

/* ---- LEGAL ---- */
.legal-content { max-width: 760px; }
.legal-content h2 {
  font-size: 2rem; margin-top: 60px; margin-bottom: 20px;
  padding-top: 48px; border-top: 1px solid var(--border);
}
.legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content h3 { font-size: 1.15rem; margin: 28px 0 12px; color: var(--gold); }
.legal-content p, .legal-content li { font-size: .93rem; color: var(--text); line-height: 1.8; }
.legal-content ul { margin: 10px 0 20px 22px; }
.legal-content ul li { margin-bottom: 8px; }
.legal-last-updated { font-size: .83rem; color: var(--muted); margin-bottom: 40px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .offer-grid { grid-template-columns: 1fr; max-width: 460px; margin: 40px auto 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .book-layout { grid-template-columns: 1fr; }
  .book-cover { max-width: 260px; }
}
@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  nav { position: relative; }
  .nav-toggle:checked ~ .nav-links {
    display: flex; flex-direction: column; position: absolute;
    top: 68px; left: 0; right: 0; background: rgba(7,9,26,.98);
    border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 4px; z-index: 200;
  }
  .nav-toggle:checked ~ .nav-cta {
    display: block; position: absolute; top: 68px; left: 0; right: 0;
    z-index: 200; margin: 0 24px 16px; text-align: center;
    background: rgba(7,9,26,.98); padding-top: 0;
  }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .price-box { padding: 32px 20px; }
  .testimonial-block { padding: 36px 24px; }
}
@media (max-width: 480px) {
  section { padding: 60px 0; }
  .steps { grid-template-columns: 1fr; }
  .price-box .big-price { font-size: 3.5rem; }
}
