/* =========================================
   Jump Automations — Global Styles
   ========================================= */

:root {
  /* Dark palette (nav + inverted zones) */
  --bg-dark: #000;
  --bg-dark-card: #0d0d0d;
  --border-dark: #222;
  --border-dark-hover: #444;
  --text-dark: #fff;
  --text-dark-secondary: #8c8c8c;
  --text-dark-muted: #5a5a5a;

  /* Light palette (content) — cooler, sharper */
  --bg: #FAFAF9;
  --bg-card: #fff;
  --bg-elevated: #F2F2F0;
  --border: #DEDEDA;
  --border-hover: #000;
  --text: #0A0A0A;
  --text-secondary: #4A4A4A;
  --text-muted: #8A8A8A;

  /* Accent — deep, restrained. Used sparingly, never on large surfaces. */
  --accent: #4C1D5E;
  --accent-hover: #35143F;
  --accent-glow: rgba(76, 29, 94, 0.06);
  --accent-soft: #6B2E82;
  --green: #1F5C42;

  --display: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'Inter', -apple-system, sans-serif;

  --radius: 0px;
  --radius-sm: 0px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  /* clip, not hidden — hidden would break the sticky sidebars */
  overflow-x: clip;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

/* Nothing may exceed the viewport and make the page pannable on mobile */
img, video, svg, canvas, iframe {
  max-width: 100%;
}

/* long unbreakable tokens like $800/month or a URL must not push width */
h1, h2, h3, h4, p, li, a {
  overflow-wrap: break-word;
}

/* Dark zone: nav only */
.nav {
  --bg: var(--bg-dark);
  --bg-card: var(--bg-dark-card);
  --border: var(--border-dark);
  --border-hover: var(--border-dark-hover);
  --text: var(--text-dark);
  --text-secondary: var(--text-dark-secondary);
  --text-muted: var(--text-dark-muted);
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =========================================
   NAV
   ========================================= */
/* Boom-style layout: logo left, links + CTA pushed right.
   Done with flex ordering so the HTML stays untouched. */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-dark);
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-logo { order: 1; }
.nav-links { order: 2; margin-left: auto; }
.nav-right { order: 3; }
.hamburger { order: 4; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--text-dark-secondary); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
}

/* "jump" wordmark — SVG lockup, j tail rises into an arrow */
.nav-logo-svg {
  height: 30px;
  width: auto;
  color: var(--text-dark);
  display: block;
  overflow: visible;
}

/* the j hops on hover — the name, made literal */
.nav-logo-svg .jm-j {
  transform-box: fill-box;
  transform-origin: center bottom;
  transition: transform 0.42s cubic-bezier(0.34, 1.7, 0.5, 1);
}

.nav-logo:hover .jm-j,
.nav-logo:focus-visible .jm-j {
  transform: translateY(-9px);
}

.nav-logo:active .jm-j {
  transform: translateY(-3px);
  transition-duration: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  .nav-logo-svg .jm-j { transition: none; }
  .nav-logo:hover .jm-j { transform: none; }
}

.nav-logo-type {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1;
  color: var(--text-dark);
}

/* "AUTOMATIONS" descriptor — hairline rule, then tracked caps */
.nav-logo-word {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dark-secondary);
  padding-left: 11px;
  border-left: 1px solid var(--border-dark-hover);
  line-height: 1;
  white-space: nowrap;
}

/* Drop the descriptor before it crowds the centered nav */
@media (max-width: 860px) {
  .nav-logo-word { display: none; }
}

.nav-logo-text {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}

/* Footer lockup */
.footer-logo-svg {
  height: 24px;
  width: auto;
  color: var(--text);
  display: block;
  overflow: visible;
}

.footer-logo-svg .jm-j {
  transform-box: fill-box;
  transform-origin: center bottom;
  transition: transform 0.42s cubic-bezier(0.34, 1.7, 0.5, 1);
}

.footer-left:hover .jm-j { transform: translateY(-7px); }

@media (prefers-reduced-motion: reduce) {
  .footer-logo-svg .jm-j { transition: none; }
  .footer-left:hover .jm-j { transform: none; }
}

.footer-logo-type {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1;
  color: var(--text);
}

.footer-logo-word {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-left: 10px;
  border-left: 1px solid var(--border);
  line-height: 1;
  white-space: nowrap;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-self: end;
}

.nav-right a {
  color: var(--text-dark-secondary);
  transition: color var(--transition);
}

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

.nav-right svg {
  width: 18px;
  height: 18px;
}

/* White filled CTA, Boom-style */
.nav-cta {
  background: #fff !important;
  color: #000 !important;
  padding: 12px 24px;
  border: 1px solid #fff;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition) !important;
}

.nav-cta:hover {
  background: transparent !important;
  color: #fff !important;
  border-color: #fff;
}


/* =========================================
   NAV DROPDOWNS
   ========================================= */
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: color var(--transition);
}

.nav-trigger:hover,
.nav-item.open .nav-trigger { color: var(--text-dark-secondary); }

.nav-caret {
  width: 9px;
  height: 9px;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.nav-item.open .nav-caret { transform: rotate(180deg); }

.nav-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 340px;
  background: #0a0a0a;
  border: 1px solid #262626;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 1200;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.nav-item.open .nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* hover bridge so the menu does not close in the gap */
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 18px;
}

.nav-menu a {
  display: block;
  padding: 15px 16px;
  color: #fff;
  position: relative;
  transition: background var(--transition), padding-left var(--transition);
}

/* hairline between items, not after the last */
.nav-menu a + a { border-top: 1px solid #1a1a1a; }

.nav-menu a:hover {
  background: #151515;
  padding-left: 22px;
}

/* accent bar slides in on hover */
.nav-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0;
  background: var(--accent-soft);
  transition: height var(--transition);
}

.nav-menu a:hover::before { height: 60%; }

.nav-menu .nm-title {
  display: block;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 5px;
}

.nav-menu .nm-desc {
  display: block;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 400;
  color: #8c8c8c;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .nav-item { display: none; }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 100001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 15, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 100000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  transition: color var(--transition);
}

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

.nav-mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  z-index: 100002;
}

.nav-mobile-close::before,
.nav-mobile-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background: var(--text);
}

.nav-mobile-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav-mobile-close::after { transform: translate(-50%, -50%) rotate(-45deg); }

body.menu-open [id*="chat"],
body.menu-open .maileyai-widget-container,
body.menu-open [class*="widget-launcher"] { display: none !important; }

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 48px 80px;
  position: relative;
  background: var(--bg);
  color: var(--text);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.hero-eyebrow .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(26, 26, 26, 0.3); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(26, 26, 26, 0); }
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3px;
  color: var(--text);
  max-width: 900px;
  margin-bottom: 28px;
}

.hero-title .dim {
  color: var(--text-muted);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 34px;
  background: var(--text);
  color: #fff;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid var(--text);
  transition: all var(--transition);
}

.hero-cta:hover {
  background: transparent;
  color: var(--text);
}

.hero-cta .arrow { transition: transform 0.3s; }
.hero-cta:hover .arrow { transform: translateX(5px); }

/* =========================================
   SECTION COMMON
   ========================================= */
.section {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 56px;
}

.section-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--text);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.08;
  color: var(--text);
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  margin-top: 14px;
  max-width: 560px;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 0 40px;
}

/* =========================================
   FEATURED WORK — EXPANDABLE DRAWERS
   ========================================= */
.work-drawers {
  display: flex;
  flex-direction: column;
}

.work-drawer {
  border-top: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
}

.work-drawer:last-child {
  border-bottom: 1px solid var(--border);
}

.work-drawer-header {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 36px 0;
  transition: padding var(--transition);
}

.work-drawer.open .work-drawer-header {
  padding-bottom: 20px;
}

.work-drawer-number {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 2px;
  transition: color var(--transition);
}

.work-drawer.open .work-drawer-number,
.work-drawer:hover .work-drawer-number {
  color: var(--text);
}

.work-drawer-title {
  font-family: var(--display);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  transition: color var(--transition);
}

.work-drawer:hover .work-drawer-title {
  color: var(--accent);
}

.work-drawer-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.work-drawer:hover .work-drawer-toggle {
  border-color: var(--accent);
}

.work-drawer-toggle svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-secondary);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), stroke var(--transition);
}

.work-drawer.open .work-drawer-toggle svg {
  transform: rotate(45deg);
  stroke: var(--accent);
}

.work-drawer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-drawer.open .work-drawer-content {
  max-height: 700px;
}

.work-drawer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 0 0 40px 88px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s 0.1s, transform 0.4s 0.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-drawer.open .work-drawer-inner {
  opacity: 1;
  transform: translateY(0);
}

.work-drawer-image {
  border-radius: 8px;
  overflow: hidden;
}

.work-drawer-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.work-drawer-body {}

.work-drawer-client {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.work-drawer-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.work-drawer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.work-drawer-tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 0;
  letter-spacing: 0.5px;
}

.work-drawer-link {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}

.work-drawer-link:hover { gap: 14px; }

/* Dramatic scroll reveal for drawers */
.work-drawer {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              border-top var(--transition);
}

.work-drawer.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .work-drawer-inner {
    grid-template-columns: 1fr;
    padding-left: 0;
  }
  .work-drawer-header {
    grid-template-columns: 40px 1fr auto;
    gap: 16px;
  }
  .work-drawer-number { font-size: 28px; }
}

@media (max-width: 680px) {
  .work-drawer-header { padding: 24px 0; }
  .work-drawer-toggle { width: 36px; height: 36px; }
}

/* =========================================
   SERVICES STRIP
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.service-number {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.service-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-desc {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =========================================
   PODCAST STRIP
   ========================================= */
.podcast-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 36px;
  transition: all var(--transition);
}

.podcast-strip:hover { border-color: var(--border-hover); }

.podcast-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.podcast-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.podcast-text strong { color: var(--text); }
.podcast-text span { color: var(--text-secondary); font-size: 14px; }

.podcast-arrow {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent);
}

/* =========================================
   CTA
   ========================================= */
.cta-section {
  padding: 140px 0;
  text-align: center;
  background: #000;
  color: #fff;
  --text: #fff;
  --text-secondary: rgba(255,255,255,0.6);
  --text-muted: rgba(255,255,255,0.4);
  --border: #222;
}

.cta-title {
  font-family: var(--display);
  font-size: clamp(36px, 7vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

.cta-byline {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
}

/* CTA button override inside black CTA section */
.cta-section .hero-cta {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.cta-section .hero-cta:hover {
  background: transparent;
  color: #fff;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--bg-elevated);
  color: var(--text);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-left img,
.footer-logo {
  height: 24px;
  width: auto;
  opacity: 0.5;
  color: var(--text-muted);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--text); }

/* Page hero (sub-pages) */
.page-hero {
  background: var(--bg);
  color: var(--text);
}

/* =========================================
   REVEAL ANIMATION
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .container { padding: 0 28px; }
  .nav { padding: 0 28px; gap: 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .nav-right { margin-left: 0; }
  .hero { padding: 120px 28px 60px; }

  .work-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .work-card.reverse { direction: ltr; }

  .work-card-image { min-height: 280px; }

  .work-card-body { padding: 36px 28px; }

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

  .podcast-strip { flex-direction: column; align-items: flex-start; gap: 16px; }

  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }

  .divider { margin: 0 28px; }
}

@media (max-width: 680px) {
  .container { padding: 0 20px; }
  .nav { padding: 0 20px; }
  .nav-cta { padding: 10px 18px; font-size: 13px; }
  .hero { padding: 100px 20px 48px; }
  .hero-title { letter-spacing: -1.5px; }
  .section { padding: 72px 0; }
  .divider { margin: 0 20px; }
  .cta-section { padding: 80px 0; }
}

@media (max-width: 420px) {
  .nav-right { display: none; }
  .container { padding: 0 16px; }
  .nav { padding: 0 16px; }
  .hero { padding: 96px 16px 40px; }
  .divider { margin: 0 16px; }
}
