/* ----------------------------------------------------
   FONT + RESET
---------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

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

html, body {
  background: #020617;
  color: #f8fafc;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }

/* ----------------------------------------------------
   GLOBAL SCALE
---------------------------------------------------- */
:root {
  --text-main: #f8fafc;
  --text-soft: #94a3b8;
  --text-dim: #64748b;
  --bg-soft: #0f1623;
  --accent: #38bdf8;
  --accent-strong: #22c55e;
  --radius: 18px;
  --shadow: 0 18px 36px rgba(0,0,0,0.45);

  /* Typography Scale */
  --h1: clamp(2.6rem, 6vw, 3.6rem);
  --h2: clamp(1.9rem, 4vw, 2.4rem);
  --h3: 1.4rem;
  --body: 1.05rem;
  --small: 0.875rem;
}

/* ----------------------------------------------------
   LAYOUT
---------------------------------------------------- */
.page-wrap {
  width: 100%;
  max-width: 1080px;
  padding: 24px;
  margin: 0 auto;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

/* ----------------------------------------------------
   LOGO + NAV
---------------------------------------------------- */
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 44px; height: 44px;
  border-radius: 12px;
}

.logo-text-main {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-text-sub {
  font-size: var(--small);
  color: var(--text-soft);
}

.nav {
  display: none;
  gap: 20px;
}

.nav a {
  color: var(--text-soft);
  font-size: var(--small);
  font-weight: 600;
  transition: color .2s;
}

.nav a:hover { color: var(--text-main); }

@media (min-width: 820px) {
  .nav { display: flex; }
}

/* ----------------------------------------------------
   HERO
---------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;

  /* CHANGE #3 — remove huge gap above Method */
  margin-bottom: 40px; /* was 80px */
}

.hero h1 {
  font-size: var(--h1);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero h1 span {
  background: linear-gradient(135deg, #38bdf8, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  margin: 18px 0 24px;
  font-size: var(--body);
  color: var(--text-soft);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 12px 22px;
  border-radius: 999px;
  font-size: var(--body);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--text-main);
  color: #020617;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #334155;
  color: var(--text-main);
}

.hero-visual video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ----------------------------------------------------
   SECTION BASE
---------------------------------------------------- */
.section {
  background: var(--bg-soft);
  padding: 40px 28px;
  border-radius: var(--radius);
  border: 1px solid #1e293b;
  margin-bottom: 60px;
}

.section-header {
      max-width: 800px !important;
      margin-left: auto;
      margin-right: auto;
    }

.section-kicker {
  font-size: var(--small);
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: var(--h2);
  font-weight: 800;
  margin-bottom: 10px;
}

.section-sub {
  font-size: var(--body);
  color: var(--text-soft);
}

/* ----------------------------------------------------
   PILLARS
---------------------------------------------------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 12px;
}

.pillar-card {
  padding: 16px;
  border-radius: var(--radius);
  background: #0d1521;
  border: 1px solid #1e293b;
  position: relative;
}

.pillar-label {
  font-size: var(--small);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.pillar-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pillar-body {
  font-size: var(--small);
  color: var(--text-soft);
}

.pillar-tag {
  position: absolute;
  top: 10px; right: 10px;
  font-size: .7rem;
  padding: 2px 8px;
  border: 1px solid #334155;
  border-radius: 12px;
}

/* ----------------------------------------------------
   FEATURE BLOCKS
---------------------------------------------------- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.feature-block.reverse {
  direction: rtl;
}

.feature-block.reverse > * {
  direction: ltr;
}

.feature-text h3 {
  font-size: var(--h3);
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-text p {
  font-size: var(--body);
  color: var(--text-soft);
  margin-bottom: 14px;
}

.feature-bullets {
  list-style: none;
  font-size: var(--body);
  color: var(--text-main);
}

.feature-bullets li {
  margin-bottom: 8px;
}

.feature-bullets li::before {
  content: "•";
  color: var(--accent-strong);
  margin-right: 6px;
}

.visual-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #1e293b;
  box-shadow: var(--shadow);
}

/* ----------------------------------------------------
   CTA
---------------------------------------------------- */
.final-cta {
  text-align: center;
}

.final-cta h2 {
  font-size: var(--h2);
  margin-bottom: 10px;
}

/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
.footer {
  text-align: center;
  font-size: var(--small);
  color: var(--text-dim);
  margin-top: 60px;
}

/* ----------------------------------------------------
   RESPONSIVE + FIXES YOU REQUESTED
---------------------------------------------------- */
@media (max-width: 820px) {

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

  /* CHANGE #1 — Move CTAs lower on mobile */
  .hero-ctas {
    margin-top: 22px;
  }

  .feature-block {
    grid-template-columns: 1fr;
  }

  /* CHANGE #2 — audio-flow.mp4 800x600 container */
  #speaking .visual-frame {
    aspect-ratio: 4 / 3; /* 800 × 600 */
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }

  .nav { display: none; }
}
