/* ============================================================
   Podcast Connect — design system v2
   Editorial gallery-dark · warm black · amber on-air accent
   ============================================================ */

:root {
  /* color tokens */
  --bg: #0d0c0a;
  --bg-alt: #11100d;
  --surface: #171511;
  --surface-2: #1e1b15;
  --border: rgba(244, 241, 234, 0.1);
  --border-strong: rgba(244, 241, 234, 0.18);
  --text: #f4f1ea;
  --text-muted: #a8a297;
  --text-faint: #6f6a60;
  --accent: #ffad33;
  --accent-strong: #ff8d24;
  --accent-soft: rgba(255, 173, 51, 0.12);
  --ink: #14120e;
  --success: #56d364;

  /* typography */
  --font-display: "Bricolage Grotesque", "Inter", sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --font-accent: "Instrument Serif", Georgia, serif;

  /* rhythm */
  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* z-scale */
  --z-nav: 100;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--ink); }

img, svg { display: block; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 em, h2 em, .featured-quote em, .cta-inner em, .footer-wordmark em, .logo em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.005em;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

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

.container-narrow { max-width: 860px; }

/* ============ buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease),
              border-color 0.18s var(--ease), color 0.18s var(--ease),
              box-shadow 0.18s var(--ease);
  touch-action: manipulation;
}

.btn:active { transform: scale(0.97); }

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(255, 152, 40, 0.4);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-sm { min-height: 44px; padding: 10px 22px; font-size: 14px; }

/* ============ nav ============ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-nav);
  background: rgba(13, 12, 10, 0);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav.scrolled {
  background: rgba(13, 12, 10, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.18s ease;
}

.nav-links a sup {
  font-size: 9px;
  color: var(--accent);
  margin-right: 5px;
  font-weight: 600;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { display: flex; align-items: center; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-left: auto;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 28px 28px;
  background: rgba(13, 12, 10, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

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

.mobile-menu a {
  padding: 14px 4px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:not(.btn):hover { color: var(--accent); }
.mobile-menu .btn { margin-top: 18px; border-bottom: none; }

/* ============ hero ============ */
.hero { padding: 150px 0 0; }

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-meta span { display: inline-flex; align-items: center; gap: 10px; }
.hero-meta-right { color: var(--text-faint); }

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255, 173, 51, 0.5);
  animation: pulse 2.4s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 173, 51, 0.45); }
  70% { box-shadow: 0 0 0 9px rgba(255, 173, 51, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 173, 51, 0); }
}

.hero-title {
  font-size: clamp(52px, 8.6vw, 128px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 48px;
}

.h-line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }

.h-line > span {
  display: inline-block;
  transform: translateY(115%);
  animation: line-up 1s var(--ease) forwards;
}

.h-line:nth-child(2) > span { animation-delay: 0.12s; }
.h-line:nth-child(3) > span { animation-delay: 0.24s; }

@keyframes line-up {
  to { transform: translateY(0); }
}

.hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
}

.hero-sub {
  font-size: 17.5px;
  color: var(--text-muted);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
}

/* hero stage image */
.hero-stage {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1800 / 860;
}

.hero-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.6s var(--ease);
}

.hero-stage.in-view img { transform: scale(1); }

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 12, 10, 0.45), transparent 38%);
  pointer-events: none;
}

.onair {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 8px;
  background: rgba(13, 12, 10, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #fca5a5;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  z-index: 2;
}

.onair-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef4444;
  animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

.stage-time {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 15px;
  border-radius: 8px;
  background: rgba(13, 12, 10, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  z-index: 2;
}

.match-chip {
  position: absolute;
  bottom: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(13, 12, 10, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(86, 211, 100, 0.45);
  color: var(--success);
  font-size: 13px;
  font-weight: 600;
  z-index: 2;
}

.match-chip svg { width: 14px; height: 14px; }

.hero-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 20px 4px 26px;
  border-bottom: 1px solid var(--border);
}

.stage-caption {
  font-size: 14px;
  color: var(--text-faint);
}

.stage-caption em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--text-muted);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stats div { display: flex; align-items: baseline; gap: 8px; }

.hero-stats dt {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.hero-stats dd { font-size: 13.5px; color: var(--text-faint); }

/* ============ ticker ============ */
.ticker {
  margin-top: 84px;
  padding: 26px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.ticker span {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text);
}

.ticker .t-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text-muted);
}

.ticker i {
  font-style: normal;
  font-size: 26px;
  color: var(--accent);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ sections ============ */
.section { padding: 130px 0; }

.section-rule { border-top: 1px solid var(--border); }

.section-head {
  max-width: 760px;
  margin-bottom: 72px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-head h2, .split-copy h2 {
  font-size: clamp(36px, 4.8vw, 64px);
  margin-bottom: 18px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 52ch;
}

/* ============ process (editorial rows) ============ */
.process { list-style: none; border-top: 1px solid var(--border); }

.process-row {
  display: grid;
  grid-template-columns: 140px 1fr 60px;
  align-items: center;
  gap: 36px;
  padding: 44px 12px;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease);
}

.process-row:hover {
  background: var(--bg-alt);
  padding-left: 28px;
  padding-right: 28px;
}

.p-num {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--accent);
  line-height: 1;
}

.p-body h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  margin-bottom: 10px;
}

.p-body p {
  font-size: 15.5px;
  color: var(--text-muted);
  max-width: 62ch;
}

.p-arrow {
  width: 30px;
  height: 30px;
  color: var(--text-faint);
  opacity: 0;
  transform: translate(-10px, 10px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), color 0.3s ease;
  justify-self: end;
}

.process-row:hover .p-arrow {
  opacity: 1;
  transform: translate(0, 0);
  color: var(--accent);
}

/* ============ split sections ============ */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.split-flip .split-copy { order: 2; }
.split-flip .split-visual { order: 1; }

.split-copy h2 { margin-bottom: 20px; }
.split-copy > p { color: var(--text-muted); margin-bottom: 30px; font-size: 16.5px; max-width: 56ch; }

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
  border-top: 1px solid var(--border);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15.5px;
  color: var(--text);
  padding: 15px 4px;
  border-bottom: 1px solid var(--border);
}

.check-list svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

/* match list + tour card visuals */
.match-list, .tour-card {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 28px;
}

.ml-title {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 20px;
}

.ml-title span { color: var(--accent); text-transform: none; letter-spacing: 0.02em; }

.ml-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease);
}

.ml-row:hover {
  background: rgba(244, 241, 234, 0.04);
  border-color: var(--border);
  transform: translateX(4px);
}

.ml-info { flex: 1; min-width: 0; }
.ml-info p { font-size: 15px; font-weight: 600; line-height: 1.3; }
.ml-info span { font-size: 13px; color: var(--text-muted); }

.ml-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--success);
}

.ml-foot {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-faint);
  text-align: center;
  letter-spacing: 0.06em;
}

.avatar {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 12.5px;
  font-weight: 700;
  font-family: var(--font-display);
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--surface-2);
}

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

.av-1 { background: linear-gradient(135deg, #f97316, #db2777); }
.av-3 { background: linear-gradient(135deg, #06b6d4, #3b82f6); }
.av-4 { background: linear-gradient(135deg, #10b981, #14b8a6); }

/* tour card */
.tour-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.tour-stat {
  padding: 18px 12px;
  background: rgba(244, 241, 234, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}

.ts-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.ts-label { font-size: 12.5px; color: var(--text-muted); margin-top: 4px; }

.tour-bar {
  height: 7px;
  border-radius: 99px;
  background: rgba(244, 241, 234, 0.08);
  overflow: hidden;
  margin-bottom: 16px;
}

.tour-bar-fill {
  width: 0;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  transition: width 1.4s var(--ease) 0.3s;
}

.tour-card.in-view .tour-bar-fill { width: 72%; }

.tour-note { font-size: 13.5px; color: var(--text-muted); }

/* ============ features (hairline grid) ============ */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feature {
  padding: 40px 34px 46px;
  background: var(--bg);
  transition: background 0.3s var(--ease);
}

.feature:hover { background: var(--bg-alt); }

.f-num {
  display: inline-block;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 30px;
  color: var(--accent);
  margin-bottom: 22px;
  line-height: 1;
}

.feature h3 { font-size: 20px; margin-bottom: 12px; }
.feature p { font-size: 14.5px; color: var(--text-muted); }

/* ============ stats band ============ */
.stats {
  padding: 110px 0 130px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats .eyebrow { margin-bottom: 48px; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat {
  padding-top: 26px;
  border-top: 1px solid var(--border-strong);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.4vw, 96px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-num span { color: var(--accent); }

.stat-label {
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-muted);
}

/* ============ testimonials ============ */
.featured-quote {
  max-width: 980px;
  margin-bottom: 90px;
}

.featured-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin-bottom: 34px;
  text-wrap: balance;
}

.featured-quote figcaption,
.tcard figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
}

.featured-quote .avatar { width: 44px; height: 44px; }

.featured-quote figcaption p,
.tcard figcaption p { font-size: 15px; font-weight: 600; line-height: 1.3; }

.featured-quote figcaption span:not(.avatar),
.tcard figcaption span:not(.avatar) { font-size: 13.5px; color: var(--text-muted); }

.featured-quote figcaption div,
.tcard figcaption div { display: flex; flex-direction: column; }

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

.tcard {
  display: flex;
  flex-direction: column;
  padding-top: 26px;
  border-top: 1px solid var(--border-strong);
}

.tcard blockquote {
  font-size: 14.5px;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 24px;
}

/* ============ FAQ ============ */
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 6px;
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  transition: color 0.18s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }

.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease);
}

.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq-body { padding: 0 6px 28px; }
.faq-body p { font-size: 15.5px; color: var(--text-muted); max-width: 68ch; }

/* ============ CTA ============ */
.cta {
  padding: 150px 0 140px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 55% 65% at 50% 110%, rgba(255, 152, 40, 0.13), transparent 70%),
    var(--bg);
}

.cta-inner {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: clamp(44px, 6.6vw, 92px);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.cta-inner > p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto 40px;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 20px;
}

.cta-form input {
  flex: 1;
  min-height: 52px;
  padding: 14px 22px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.cta-form input::placeholder { color: var(--text-faint); }

.cta-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 173, 51, 0.18);
}

.cta-form input.error { border-color: #f87171; }

.cta-note {
  font-size: 14px;
  color: var(--text-faint);
}

.cta-note a { color: var(--accent); text-decoration: none; }
.cta-note a:hover { text-decoration: underline; }
.cta-note.success { color: var(--success); font-weight: 500; }

/* ============ footer ============ */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 80px 0 32px;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 80px;
}

.footer-brand p {
  font-size: 14.5px;
  color: var(--text-muted);
  max-width: 34ch;
}

.footer-head {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
}

.footer-col { display: flex; flex-direction: column; gap: 11px; }

.footer-col a {
  font-size: 14.5px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.18s ease;
  width: fit-content;
}

.footer-col a:hover { color: var(--accent); }

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

.footer-wordmark {
  font-family: var(--font-display);
  font-size: clamp(58px, 10.8vw, 168px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  white-space: nowrap;
  margin-bottom: 48px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--text-faint);
}

.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: var(--text-faint); text-decoration: none; }
.footer-legal a:hover { color: var(--text-muted); }

/* ============ reveal animations ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

.d-1 { transition-delay: 0.1s; }
.d-2 { transition-delay: 0.2s; }
.d-3 { transition-delay: 0.3s; }

/* ============ reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }

  .reveal { opacity: 1; transform: none; }
  .h-line > span { transform: none; animation: none; }
  .hero-stage img { transform: none; }
  .ticker-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .tour-card .tour-bar-fill { width: 72%; }
}

/* ============ responsive ============ */
@media (max-width: 1024px) {
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 28px; }

  .split { grid-template-columns: 1fr; gap: 56px; }
  .split-flip .split-copy { order: 1; }
  .split-flip .split-visual { order: 2; }
  .split-visual { max-width: 560px; }

  .features { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 44px 32px; }

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

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav {
    background: rgba(13, 12, 10, 0.92);
    backdrop-filter: blur(14px);
    border-bottom-color: var(--border);
  }

  .process-row {
    grid-template-columns: 70px 1fr;
    gap: 20px;
    padding: 32px 6px;
  }

  .process-row:hover { padding-left: 6px; padding-right: 6px; }
  .p-arrow { display: none; }

  .hero-strip { flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero-stats { flex-wrap: wrap; gap: 18px 28px; }
}

@media (max-width: 640px) {
  .section { padding: 88px 0; }
  .hero { padding-top: 120px; }
  .hero-title { margin-bottom: 36px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 8px; }

  .hero-stage { aspect-ratio: 4 / 3; border-radius: 14px; }
  .ticker { margin-top: 60px; padding: 18px 0; }

  .features { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; gap: 30px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }

  .featured-quote { margin-bottom: 64px; }

  .cta { padding: 100px 0 96px; }
  .cta-form { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 56px; }
  .footer-wordmark { margin-bottom: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
