/* ===========================
   Design Tokens
   =========================== */
:root {
  /* Colors — Core */
  --color-primary: #f23322;
  --color-primary-hover: #d42d1d;
  --color-dark: #1e1c1a;
  --color-bg: #fafafa;

  /* Colors — Text */
  --color-text: #4a4845;
  --color-text-light: #6b6966;
  --color-text-muted: #a8a5a1;

  /* Colors — Surfaces */
  --color-card-bg: #f3f4f7;
  --color-card-border: #f3f4ee80;

  /* Colors — Borders */
  --color-border: #e0e0dc;
  --color-border-light: #f3f4ee;
  --color-border-subtle: #c0bdb8;

  /* Colors — Accents */
  --color-green: #04c92e;
  --color-blue: #9dc5f7;
  --color-yellow: #fbe74d;
  --color-pink: #ffcadc;
  --color-gold: #c4a812;

  /* Typography */
  --font-family: 'Figtree', sans-serif;

  /* Border Radius */
  --radius-pill: 100px;
  --radius-section: 20px;
  --radius-card: 16px;
  --radius-sm: 12px;

  /* Layout */
  --max-width: 1200px;
  --content-width: 800px;
  --article-width: 720px;
}

/* ===========================
   Reset & Base
   =========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-dark);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

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

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

/* ===========================
   Typography System  (ARC Score page = gold standard)
   ———————————————
   1. Site hero        — 4rem / 700      — Homepage hero ONLY
   2. Page hero stmt   — 3.5rem / 700    — Centerpiece line on subpages (1 per page)
   3. Page headline    — 2.5rem / 700    — Section headings (h2)
   4. Page descriptor  — 1.15rem / 400   — Subpage taglines, muted color
   5. Subtle label     — 0.8rem / 700 uc — Page labels ("BLOG", "SPEAKING & MEDIA")
   6. Body             — 1.05rem / 400   — Paragraphs, descriptions
   7. Meta             — 0.85rem / 400   — Dates, badges, attribution
   =========================== */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 4rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.25rem;
}

p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
}

strong {
  font-weight: 700;
  color: var(--color-dark);
}

sup {
  font-size: 0.65em;
  vertical-align: 0.5em;
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-block;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-dark);
  border: 2px solid var(--color-dark);
}

.btn-outline:hover {
  background: var(--color-dark);
  color: var(--color-bg);
  transform: translateY(-2px);
}

/* ===========================
   Navbar
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-card-border);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-dark);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.nav-logo-short { display: none; }
.nav-logo-full { display: inline; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-text-light);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--color-dark);
}

.nav-icon {
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.nav-icon svg {
  width: 20px;
  height: 20px;
}

.nav-links li:has(.nav-icon) {
  margin-left: 4px;
}

.nav-icon:hover {
  color: var(--color-dark);
}

.nav-links a.nav-cta {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-bg);
  background: var(--color-primary);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  transition: all 0.2s ease;
}

.nav-links a.nav-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(250, 250, 250, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 40px;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-dark);
}

.mobile-menu .nav-icon {
  display: inline-flex;
  align-items: center;
}

.mobile-menu .nav-icon svg {
  width: 24px;
  height: 24px;
}

.mobile-cta {
  display: inline-block;
  font-size: 1rem !important;
  font-weight: 700 !important;
  padding: 14px 32px;
  background: var(--color-dark);
  color: var(--color-bg) !important;
  border-radius: var(--radius-pill);
  margin-top: 16px;
}

/* ===========================
   Hero
   =========================== */
.hero {
  padding: 0;
  min-height: 100vh;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 100vh;
}

.hero-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px;
}

.hero-photo {
  align-self: stretch;
  position: relative;
}

.hero-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(250, 250, 250, 0.7), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-intro {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.hero h1 {
  margin-bottom: 40px;
}

.wave {
  display: inline-block;
  animation: wave 2.5s infinite;
  transform-origin: 70% 70%;
}

@keyframes wave {
  0%, 60%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
}

.hero-accent {
  color: var(--color-primary);
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

/* ===========================
   Pain Points
   =========================== */
.pain-points {
  padding: 100px 0;
}

.pain-points > .container > h2 {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 12px;
}

.pain-intro {
  text-align: center;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: 60px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 40px;
}

.pain-item h3 {
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.pain-item p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ===========================
   Home Testimonials
   =========================== */
.home-testimonials {
  padding: 100px 0;
}

.home-testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.home-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home-testimonial-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  border: 1px solid var(--color-card-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-testimonial-quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.home-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.home-testimonial-card .testimonial-name {
  color: var(--color-dark);
}

.home-testimonial-card .testimonial-role {
  color: var(--color-text-light);
}

@media (max-width: 810px) {
  .home-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .home-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   About
   =========================== */
.about {
  padding: 100px 0;
  background: var(--color-dark);
  border-radius: var(--radius-section);
  margin: 40px 20px;
}

.about-header {
  max-width: 700px;
  margin: 0 auto 24px;
  text-align: center;
}

.about-lead {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.about-lead strong {
  color: var(--color-bg);
  font-weight: 700;
}

.about-video {
  margin-bottom: 48px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
}

.about-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.about-bio-prompt {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-style: italic;
  text-align: center;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-check-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-check-card::before {
  content: "\2713";
  color: var(--color-green);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-check-label {
  font-weight: 700;
  color: var(--color-bg);
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

/* ===========================
   About Split Layout
   =========================== */
.about-split {
  display: flex;
  flex-direction: column;
  max-width: var(--content-width);
  margin: 0 auto;
}

/* ===========================
   Video Carousel
   =========================== */
.video-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.video-carousel::-webkit-scrollbar {
  display: none;
}

.video-item {
  flex: 0 0 calc((100% - 2 * 18px) / 3.5);
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  position: relative;
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.video-item:hover video {
  transform: scale(1.03);
}

.video-sound-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.45);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.video-item:hover .video-sound-btn {
  opacity: 1;
}

.video-carousel-wrap {
  position: relative;
  margin-top: 40px;
  margin-bottom: 60px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: none;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: color 0.2s ease;
  opacity: 0.6;
}

.carousel-arrow:hover {
  color: var(--color-dark);
  opacity: 1;
}

.carousel-arrow-left {
  left: 12px;
}

.carousel-arrow-right {
  right: 12px;
}

.carousel-fade {
  position: absolute;
  top: 0;
  bottom: 8px;
  width: 45px;
  pointer-events: none;
  z-index: 2;
}

.carousel-fade-right {
  right: 0;
  background: linear-gradient(to right, transparent, rgba(250, 250, 250, 0.6));
}

.carousel-fade-left {
  left: 0;
  background: linear-gradient(to left, transparent, rgba(250, 250, 250, 0.6));
}

@media (max-width: 810px) {
  .video-sound-btn {
    opacity: 1;
  }

  .carousel-arrow {
    display: none;
  }
}

/* ===========================
   Speaking Page
   =========================== */
.speaking-hero {
  padding: 100px 0 0;
  text-align: center;
}

.speaking-hero-img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius-section);
}

.speaking-hero-text {
  padding: 48px 0 80px;
  text-align: center;
}

.speaking-tagline {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.speaking-topics {
  padding: 0 0 80px;
}

.speaking-topics h2 {
  margin-bottom: 32px;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.topic-block {
  border-left: 3px solid var(--color-border);
  padding: 4px 0 4px 24px;
}

.topic-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.35;
  margin-bottom: 12px;
}

.topic-block p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
}

.speaking-upcoming {
  padding: 80px 0;
}

.speaking-upcoming h2 {
  margin-bottom: 32px;
}


.speaking-past {
  padding: 0 0 80px;
}

.speaking-past h2 {
  margin-bottom: 32px;
}

.speaking-past .engagement-card {
  border: 1px solid var(--color-border);
}

.speaking-testimonials {
  padding: 80px 0;
}

.speaking-testimonials h2 {
  margin-bottom: 48px;
}

.speaking-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.speaking-testimonial-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-card);
  padding: 36px 32px;
}

.speaking-testimonial-card .testimonial-quote {
  color: var(--color-text);
}

.speaking-testimonial-card .testimonial-name {
  color: var(--color-dark);
}

.speaking-cta .booking-signal {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-green);
  margin-bottom: 12px;
}

.engagements-group {
  margin-bottom: 60px;
}

.engagements-group:last-child {
  margin-bottom: 0;
}

.group-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-weight: 700;
}

.engagements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.engagement-card {
  background: var(--color-bg);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all 0.3s ease;
}

.engagement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

a.engagement-card {
  text-decoration: none;
  color: inherit;
}

.engagement-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--color-card-bg);
}

.engagement-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s ease;
}

.engagement-card-img.is-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.engagement-card-img.is-logo img {
  object-fit: contain;
  padding: 36px;
}

.engagement-card:hover .engagement-card-img img {
  transform: scale(1.05);
}

.engagement-card-body {
  padding: 24px;
}

.engagement-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.engagement-type-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background: rgba(242, 51, 34, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.engagement-type-badge.podcast {
  color: var(--color-green);
  background: rgba(4, 201, 46, 0.08);
}

.engagement-type-badge.media {
  color: var(--color-blue);
  background: rgba(157, 197, 247, 0.12);
}

.engagement-type-badge.corporate {
  color: var(--color-gold);
  background: rgba(251, 231, 77, 0.12);
}

.engagement-episode {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 8px;
}

.engagement-card-body .engagement-date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.engagement-location {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Engagement Text List */
.engagements-list {
  display: flex;
  flex-direction: column;
}

.engagement-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.engagement-row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.engagement-row:has(.engagement-row-link) {
  padding: 0;
}

.engagement-row-link {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px 0;
  transition: opacity 0.2s ease;
}

.engagement-row-link:hover {
  opacity: 0.7;
}

.engagement-row .engagement-date {
  font-size: 0.85rem;
  color: var(--color-text-light);
  min-width: 100px;
  flex-shrink: 0;
  margin-bottom: 0;
}

.engagement-row .engagement-flag {
  font-size: 1rem;
  flex-shrink: 0;
  min-width: 24px;
}

.engagement-row .engagement-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-bg);
  white-space: nowrap;
}

.engagement-row .engagement-detail {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-left: auto;
  text-align: right;
}

.engagement-row .engagement-type-badge {
  margin-left: auto;
  margin-bottom: 0;
  flex-shrink: 0;
}

/* Light-bg overrides for speaking upcoming section */
.speaking-upcoming .engagement-row {
  border-bottom: 1px solid var(--color-border);
}

.speaking-upcoming .engagement-row:first-child {
  border-top: 1px solid var(--color-border);
}

.speaking-upcoming .engagement-row .engagement-name {
  color: var(--color-dark);
}

.speaking-upcoming .engagement-row .engagement-date {
  color: var(--color-text);
}

.speaking-upcoming .engagement-row .engagement-detail {
  color: var(--color-text-light);
}

.speaking-upcoming .engagement-row-link .engagement-name {
  color: var(--color-dark);
}

.engagements-cta {
  text-align: center;
  margin-top: 48px;
  padding-bottom: 60px;
}

.engagements-cta .booking-signal {
  margin-bottom: 20px;
}

.btn-outline-dark {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--color-bg);
}

.btn-outline-dark:hover {
  background: var(--color-bg);
  color: var(--color-dark);
  border-color: var(--color-bg);
}

/* ===========================
   Testimonials
   =========================== */
.testimonials {
  padding: 80px 0;
  background: var(--color-dark);
  border-radius: 0 0 var(--radius-section) var(--radius-section);
  margin: 0 20px;
}

.testimonials h2 {
  color: var(--color-bg);
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 36px 32px;
}

.testimonial-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  color: var(--color-bg);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.booking-signal {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-green);
  margin-bottom: 20px;
}

.speaking-cta {
  padding: 100px 0;
  text-align: center;
}

.speaking-cta .cta-content {
  max-width: 560px;
  margin: 0 auto;
}

.speaking-cta h2 {
  margin-bottom: 16px;
}

.speaking-cta p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 36px;
}

/* ===========================
   Blog Page
   =========================== */
.page-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.blog-hero {
  padding: 100px 0 32px;
  text-align: center;
}

.blog-hero-label {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.blog-list {
  padding: 0 0 80px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: var(--article-width);
  margin: 0 auto;
}

.blog-post-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-card-border);
  transition: all 0.3s ease;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.blog-post-meta time {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.blog-post-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background: rgba(242, 51, 34, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.blog-post-card h2 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.blog-post-card p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--color-text-light);
  flex: 1;
}

.blog-read-more {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-primary);
  transition: color 0.2s ease;
}

.blog-post-card:hover .blog-read-more {
  color: var(--color-primary-hover);
}

/* ===========================
   Article Page
   =========================== */
.article-hero {
  padding: 140px 0 64px;
}

.article-back {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
  transition: color 0.2s ease;
}

.article-back:hover {
  color: var(--color-primary);
}

.article-hero h1 {
  max-width: var(--content-width);
  font-size: 3rem;
  margin-top: 16px;
}

.article-featured-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-card);
}

.blog-article {
  padding: 16px 0 100px;
}

.article-content {
  max-width: var(--article-width);
  margin: 0 auto;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-top: 20px;
}

.article-author-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.article-meta-sep {
  color: var(--color-border-subtle);
}

.article-content h2 {
  margin-top: 48px;
  margin-bottom: 24px;
}

.article-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.article-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-content hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 40px 0;
}

.article-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.article-content a.btn {
  text-decoration: none;
  color: inherit;
}

.article-content a.btn-primary {
  color: var(--color-bg);
}

.article-content a.btn-outline {
  color: var(--color-dark);
}

.article-illustration {
  width: 100%;
  border-radius: var(--radius-sm);
  margin: 32px 0;
}

.article-list {
  margin: 16px 0 24px;
  padding-left: 0;
}

.article-list li {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
  padding: 8px 0 8px 24px;
  position: relative;
}

.article-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

.article-download {
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  padding: 36px;
  margin: 40px 0;
  display: flex;
  gap: 32px;
  align-items: center;
}

.article-download-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.article-download-text h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.article-download-text p {
  font-size: 0.95rem !important;
  margin-bottom: 16px;
}

.article-cta {
  padding: 60px 0;
  text-align: center;
}

.article-cta-content {
  max-width: 560px;
  margin: 0 auto;
}

.article-cta h2 {
  margin-bottom: 16px;
}

.article-cta p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

/* ===========================
   ARC Score
   =========================== */
.arc-score {
  padding: 100px 0;
  background: var(--color-dark);
  border-radius: var(--radius-section);
  margin: 40px 20px;
}

.arc-score-content {
  max-width: var(--content-width);
  margin: 0 auto;
  text-align: center;
}

.arc-score h2 {
  margin-bottom: 24px;
  color: var(--color-bg);
}

.arc-score p {
  margin-bottom: 20px;
  color: var(--color-text-muted);
  text-align: center;
}

.arc-score .btn {
  margin-top: 16px;
}

/* ===========================
   Work Together
   =========================== */
.work-together {
  padding: 100px 0;
}

.work-together > .container > h2 {
  text-align: center;
  margin-bottom: 60px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--content-width);
  margin: 0 auto;
}

.work-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  border: 1px solid var(--color-card-border);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.work-card-header {
  margin-bottom: 12px;
}

.work-card-header h3 {
  margin-bottom: 8px;
  color: var(--color-dark);
}

.work-card-sub {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.work-card-sub a {
  color: var(--color-primary);
  text-decoration: underline;
}

.work-card-desc {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.65;
  margin-bottom: 28px;
  flex-grow: 1;
}

.work-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.work-features li {
  font-size: 0.95rem;
  color: var(--color-text);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.work-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.work-card .btn {
  align-self: flex-start;
}

/* ===========================
   FAQ
   =========================== */
.faq {
  padding: 100px 0;
  text-align: center;
}

.faq h2 {
  margin-bottom: 16px;
}

.faq-sub {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

.faq-sub a {
  color: var(--color-primary);
  text-decoration: underline;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: left;
}

.faq-category-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin: 40px 0 16px;
}

.faq-category-label:first-child {
  margin-top: 0;
}

.faq-accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark);
  text-align: left;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-accordion-trigger:hover {
  color: var(--color-primary);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-text-muted);
}

.faq-accordion-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-accordion-item.open .faq-accordion-content {
  max-height: 600px;
}

.faq-accordion-content p {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
  padding-bottom: 20px;
}

.faq-accordion-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.faq-accordion-content a:hover {
  color: var(--color-primary-hover);
}


/* ===========================
   Footer CTA / Newsletter
   =========================== */
.footer-cta {
  padding: 100px 0 60px;
  text-align: center;
  background: var(--color-dark);
  border-radius: var(--radius-section);
  margin: 40px 20px;
}

.footer-cta h2 {
  color: var(--color-bg);
  margin-bottom: 8px;
}

.footer-cta h3 {
  color: var(--color-bg);
  font-weight: 300;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-cta p {
  color: var(--color-text-light);
  max-width: 520px;
  margin: 0 auto 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 440px;
  margin: 0 auto 24px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-bg);
  font-family: var(--font-family);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.newsletter-form input::placeholder {
  color: var(--color-text-light);
}

.newsletter-form input:focus {
  border-color: var(--color-primary);
}

.newsletter-form .btn-primary {
  flex-shrink: 0;
}

.footer-social {
  font-size: 0.9rem;
  color: var(--color-text-light) !important;
}

.footer-social a {
  color: var(--color-primary);
  text-decoration: underline;
}

.newsletter-success {
  color: var(--color-green);
  font-weight: 700;
  font-size: 1.05rem;
}

.newsletter-error {
  color: var(--color-primary);
  font-size: 0.95rem;
}

.newsletter-error a {
  color: var(--color-bg);
  text-decoration: underline;
}

/* ===========================
   404
   =========================== */
.page-404 {
  background: var(--color-dark);
}

.page-404 .navbar {
  background: transparent;
}

.page-404 .nav-logo,
.page-404 .nav-links a,
.page-404 .hamburger span {
  color: var(--color-bg);
}

.page-404 .footer,
.page-404 .footer-logo {
  color: var(--color-bg);
}

.page-404 .footer-content p {
  color: var(--color-text-light);
}

.page-404 .footer-icon {
  color: var(--color-text-light);
}

.page-404 .footer-icon:hover {
  color: var(--color-bg);
}

.not-found {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 0 100px;
}

.not-found h1 {
  color: var(--color-bg);
  margin-bottom: 12px;
}

.not-found p {
  color: var(--color-text-muted);
  font-size: 1.25rem;
  margin-bottom: 40px;
}

.not-found-links {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ===========================
   Footer
   =========================== */
.footer {
  padding: 40px 0;
}

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

.footer-logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-dark);
}

.footer-content p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-icon {
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.footer-icon:hover {
  color: var(--color-dark);
}

.footer-icon svg {
  display: block;
}

/* ===========================
   Responsive — Tablet
   =========================== */
@media (max-width: 810px) {
  .container {
    padding: 0 28px;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .nav-logo { font-size: 1.3rem; }

  .hero {
    padding: 120px 0 0;
    min-height: auto;
  }

  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
  }

  .hero-text {
    text-align: center;
    padding: 0 28px 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-photo::before {
    display: none;
  }

  .hero-img {
    max-width: 100%;
    max-height: 400px;
  }

  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about {
    margin: 0 12px;
  }


  .work-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .arc-score {
    margin: 0 12px;
  }

  .footer-cta {
    margin: 0 12px;
  }

  .footer-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .article-hero h1 {
    font-size: 2.2rem;
  }

  .article-download {
    flex-direction: column;
    text-align: center;
  }

  .article-download-img {
    width: 160px;
    height: 160px;
  }


  .speaking-hero-img {
    max-height: 400px;
  }

  .speaking-tagline {
    font-size: 2.5rem;
  }

  .topics-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .engagements-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .engagement-row {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .engagement-row .engagement-detail {
    margin-left: 0;
    text-align: left;
    width: 100%;
    padding-left: 0;
    opacity: 0.7;
    font-size: 0.85rem;
  }

  .speaking-testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .nav-logo-full { display: none; }
  .nav-logo-short { display: inline; }
  .nav-logo { font-size: 1.5rem; }
}

/* ===========================
   Responsive — Mobile
   =========================== */
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about,
  .arc-score,
  .footer-cta {
    margin: 0 8px;
    padding: 60px 0;
    border-radius: var(--radius-card);
  }

  .pain-points {
    padding: 60px 0;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .about-lead {
    font-size: 1.2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }


  .article-hero h1 {
    font-size: 1.8rem;
  }

  .article-featured-img {
    max-height: 300px;
  }

  .article-download {
    padding: 24px;
  }

  .article-download-img {
    width: 120px;
    height: 120px;
  }

  .video-item {
    flex: 0 0 calc((100% - 18px) / 1.5);
  }



  .blog-post-card {
    padding: 28px 24px;
  }

  .blog-post-card h2 {
    font-size: 1.5rem;
  }

  .speaking-hero-img {
    max-height: 300px;
    border-radius: var(--radius-card);
  }

  .speaking-tagline {
    font-size: 2rem;
  }

  .engagements-grid {
    grid-template-columns: 1fr;
  }

  .engagement-card-img {
    height: 180px;
  }

  .engagement-row .engagement-date {
    min-width: 80px;
    font-size: 0.8rem;
  }

  .engagement-row .engagement-name {
    white-space: normal;
    font-size: 0.9rem;
  }

  .engagement-row .engagement-detail {
    padding-left: 0;
    font-size: 0.8rem;
  }

  .speaking-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .home-testimonials,
  .work-together,
  .faq,
  .speaking-cta {
    padding: 60px 0;
  }

  .speaking-upcoming,
  .speaking-testimonials {
    padding: 60px 0;
  }

  .speaking-past {
    padding: 0 0 60px;
  }

  .blog-list {
    padding: 0 0 60px;
  }

  .blog-article {
    padding: 16px 0 60px;
  }

  .article-hero {
    padding: 100px 0 40px;
  }

  .not-found {
    padding: 120px 0 60px;
  }
}
