@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --bg-deep: #07191e;
  --bg: #0b252c;
  --bg-surface: #0f3039;
  --bg-card: rgba(15, 48, 57, 0.65);
  --bg-card-hover: rgba(19, 58, 68, 0.85);
  --border: rgba(255, 255, 255, 0.09);
  --border-bright: rgba(20, 184, 166, 0.35);
  --border-hover: rgba(255, 255, 255, 0.22);
  --text: #f4f8f7;
  --text-muted: #8aa49f;
  --text-sub: #b2cac5;
  --teal: #0f4c5c;
  --teal-bright: #14b8a6;
  --teal-glow: rgba(20, 184, 166, 0.2);
  --amber: #fb8b24;
  --amber-bright: #fca311;
  --amber-glow: rgba(251, 139, 36, 0.25);
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 var(--font-sans);
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(ellipse 90% 600px at 50% -120px, rgba(15, 76, 92, 0.55), transparent),
    radial-gradient(circle 500px at 85% 300px, rgba(251, 139, 36, 0.08), transparent);
  background-repeat: no-repeat;
  min-height: 100vh;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

button, a, summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

::selection {
  background: var(--amber);
  color: var(--bg-deep);
}

.wrap {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: 20px;
  top: -100px;
  z-index: 50;
  background: var(--amber);
  color: var(--bg-deep);
  padding: 10px 16px;
  font-weight: 700;
  border-radius: 6px;
}
.skip:focus {
  top: 14px;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 37, 44, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.2;
}
.brand img {
  border-radius: 11px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.brand-sub {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--amber);
  margin-top: 1px;
}

.header nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13.5px;
  font-weight: 600;
}
.header nav > a:not(.nav-pill) {
  color: var(--text-sub);
  transition: color 0.2s ease;
}
.header nav > a:not(.nav-pill):hover {
  color: var(--text);
}

.nav-pill {
  background: var(--amber);
  color: var(--bg-deep);
  border-radius: 99px;
  padding: 9px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 750;
  box-shadow: 0 4px 14px var(--amber-glow);
  transition: transform 0.2s, background 0.2s;
}
.nav-pill:hover {
  background: var(--amber-bright);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 40px;
  padding-block: 55px 75px;
  min-height: 720px;
}

.hero-copy {
  max-width: 580px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 11px;
  font-weight: 750;
  color: var(--teal-bright);
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.25);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 22px;
}
.badge-dot {
  font-size: 13px;
  color: var(--teal-bright);
}

h1 {
  font-size: clamp(48px, 6.2vw, 80px);
  font-weight: 800;
  letter-spacing: -2.2px;
  line-height: 1.05;
  margin: 0 0 24px;
  color: var(--text);
}
.amber-glow {
  color: var(--amber);
  text-shadow: 0 0 35px var(--amber-glow);
}

.hero-text {
  color: var(--text-sub);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 26px;
}

/* Audio Callout Banner (Mockup Highlight) */
.audio-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(15, 76, 92, 0.35);
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: 14px;
  padding: 13px 18px;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}
.audio-play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 2px 10px var(--amber-glow);
}
.audio-content {
  flex: 1;
}
.audio-quote {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.35;
}
.audio-sub {
  font-size: 11px;
  color: var(--teal-bright);
  margin: 2px 0 0;
  font-family: var(--font-mono);
}
.audio-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 18px;
}
.audio-wave span {
  display: inline-block;
  width: 3px;
  background: var(--teal-bright);
  border-radius: 3px;
  animation: wave 1.2s ease-in-out infinite;
}
.audio-wave span:nth-child(1) { height: 7px; animation-delay: 0.1s; }
.audio-wave span:nth-child(2) { height: 16px; animation-delay: 0.3s; }
.audio-wave span:nth-child(3) { height: 10px; animation-delay: 0.15s; }
.audio-wave span:nth-child(4) { height: 18px; animation-delay: 0.4s; }
.audio-wave span:nth-child(5) { height: 8px; animation-delay: 0.2s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary, .button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #14b8a6 0%, #0f4c5c 100%);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(20, 184, 166, 0.3);
  transition: all 0.2s ease;
}
.btn-primary:hover, .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(20, 184, 166, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-hover);
  color: var(--text);
  font-size: 13.5px;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.btn-ghost {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
  border-bottom: 1px dashed var(--text-muted);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.btn-ghost:hover {
  color: var(--amber);
  border-color: var(--amber);
}

.small-note {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 22px;
}
.release-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber-glow);
  display: inline-block;
}

/* Hero Showcase Composition */
.hero-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}
.hero-glow-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 60% 40%, rgba(251, 139, 36, 0.18) 0%, rgba(15, 76, 92, 0.35) 45%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.hero-phone-wrap {
  position: relative;
  z-index: 2;
  width: 260px;
  transform: rotate(4deg);
  transition: transform 0.3s ease;
}
.hero-phone-wrap:hover {
  transform: rotate(1deg) scale(1.02);
}

.hero-carplay-wrap {
  position: absolute;
  z-index: 3;
  bottom: -15px;
  left: -40px;
  width: 320px;
  transition: transform 0.3s ease;
}
.hero-carplay-wrap:hover {
  transform: translateY(-4px);
}

.phone-frame {
  background: #111a1a;
  border: 7px solid #203133;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.55), 0 0 25px rgba(20, 184, 166, 0.15);
}
.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.carplay-frame {
  background: #081a1d;
  border: 5px solid #1c383e;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 20px rgba(251, 139, 36, 0.15);
}
.carplay-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.floating-pill {
  position: absolute;
  z-index: 4;
  background: rgba(8, 26, 30, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-bright);
  border-radius: 99px;
  padding: 8px 15px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 7px;
}
.floating-pill.top {
  top: 15px;
  right: -10px;
}
.floating-pill.bottom {
  bottom: 60px;
  right: -25px;
}

/* ============================================================
   DISCOVERY RIBBON
   ============================================================ */
.discovery-strip {
  background: rgba(15, 48, 57, 0.5);
  border-block: 1px solid var(--border);
  overflow: hidden;
}
.discovery-strip > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.discovery-strip i {
  font-style: normal;
  color: var(--amber);
  margin-inline: 14px;
}

/* ============================================================
   SECTIONS & HOW IT WORKS (CARDS)
   ============================================================ */
.section {
  padding-block: 90px;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 55px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  font-weight: 750;
  color: var(--amber);
  margin: 0 0 12px;
}

h2 {
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 800;
  letter-spacing: -1.4px;
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--text);
}
h2 em {
  font-style: normal;
  color: var(--amber);
}

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

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px 28px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.step-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.step-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-bright), var(--amber));
  opacity: 0.8;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--amber);
  display: block;
  margin-bottom: 14px;
}

h3 {
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--text);
}

.step-card p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
  margin: 0 0 20px;
}

.category-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.category-tags span {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--text-sub);
}

.mini-route {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-sub);
}
.mini-route i {
  height: 2px;
  background: var(--border-hover);
  width: 28px;
  position: relative;
}
.mini-route i:after {
  content: '';
  position: absolute;
  right: 0;
  top: -2px;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background: var(--amber);
}

/* ============================================================
   SPOKEN NARRATION ENGINE FEATURE
   ============================================================ */
.narration-section {
  background: linear-gradient(180deg, rgba(7, 25, 30, 0.4) 0%, rgba(15, 76, 92, 0.25) 50%, rgba(7, 25, 30, 0.4) 100%);
  border-block: 1px solid var(--border);
  padding-block: 85px;
}

.narration-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.narration-cues {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cue-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.2s ease;
}
.cue-card:hover {
  border-color: var(--teal-bright);
  background: rgba(15, 76, 92, 0.35);
  transform: translateX(4px);
}
.cue-badge {
  background: rgba(20, 184, 166, 0.15);
  color: var(--teal-bright);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
}
.cue-body h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.cue-body p {
  margin: 4px 0 0;
  font-size: 12.5px;
  color: var(--text-muted);
}

/* ============================================================
   FILTER SHOWCASE
   ============================================================ */
.filter-showcase {
  padding-block: 85px;
}

.filter-phones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  align-items: start;
  max-width: 860px;
  margin: 45px auto 0;
}
.filter-phones figure {
  margin: 0;
}
.filter-phones .phone-frame {
  max-width: 290px;
  margin: 0 auto;
}
.filter-phones figcaption {
  max-width: 290px;
  margin: 20px auto 0;
  font-size: 13.5px;
  color: var(--text-sub);
  line-height: 1.6;
}
.filter-phones figcaption b {
  display: block;
  font-size: 17px;
  font-weight: 750;
  color: var(--text);
  margin-bottom: 6px;
}

.filter-switcher {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 22px;
}
.filter-switcher .chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-sub);
  transition: all 0.2s ease;
}
.filter-switcher .chip:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.1);
}
.filter-switcher .chip.active {
  background: var(--amber);
  color: var(--bg-deep);
  border-color: var(--amber);
  font-weight: 750;
  box-shadow: 0 2px 10px var(--amber-glow);
}

/* ============================================================
   SUNDAY DRIVE SECTION
   ============================================================ */
.sunday-section {
  border-top: 1px solid var(--border);
  padding-block: 85px;
}
.sunday-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  margin-block: 45px 65px;
}
.sunday-preview .phone-frame {
  max-width: 285px;
  margin: auto;
}

.sunday-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sunday-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.2s ease;
}
.sunday-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}
.sunday-card h3 {
  font-size: 19px;
  margin-top: 8px;
}
.sunday-card p {
  font-size: 13.5px;
  color: var(--text-sub);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   CARPLAY SECTION
   ============================================================ */
.carplay-section {
  background: linear-gradient(180deg, var(--bg) 0%, #061519 100%);
  border-top: 1px solid var(--border);
  padding-block: 85px;
}

.carplay-hero {
  max-width: 900px;
  margin: 0 auto;
}

.carplay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 45px;
}
.carplay-grid figure {
  margin: 0;
}
.carplay-grid figcaption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}
.carplay-grid figcaption b {
  display: block;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

/* ============================================================
   SCREENSHOT GALLERY
   ============================================================ */
.gallery-section {
  border-top: 1px solid var(--border);
  padding-block: 85px;
}

.gallery-filters {
  display: flex;
  gap: 9px;
  margin: 25px 0 35px;
  flex-wrap: wrap;
}
.gallery-filters button {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-sub);
  transition: all 0.2s ease;
}
.gallery-filters button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}
.gallery-filters button.active {
  background: var(--amber);
  color: var(--bg-deep);
  border-color: var(--amber);
  font-weight: 750;
  box-shadow: 0 2px 10px var(--amber-glow);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
}
.screen-card {
  min-width: 0;
}
.screen-card:has(.screen-button.landscape) {
  grid-column: span 2;
}
.screen-button {
  background: rgba(15, 48, 57, 0.45);
  border: 1px solid var(--border);
  border-radius: 14px;
  width: 100%;
  padding: 22px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}
.screen-button:hover {
  border-color: var(--teal-bright);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
.screen-button img {
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  width: 100%;
}
.screen-button.landscape {
  min-height: 280px;
  display: grid;
  align-items: center;
  padding: 20px;
}
.screen-card h3 {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 14px 0 3px;
}
.screen-card p {
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
}
.screen-button > span {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 14px;
  color: var(--teal-bright);
}

/* ============================================================
   FAQS & ACCORDION
   ============================================================ */
.faq-section {
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  padding-block: 85px;
}
details {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
details:first-child {
  border-top: 1px solid var(--border);
}
summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  font-size: 22px;
  line-height: 1;
  color: var(--amber);
  transition: transform 0.2s ease;
}
details[open] summary span {
  transform: rotate(45deg);
}
details p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
  margin: 14px 28px 0 0;
}
details p a {
  color: var(--amber);
  text-decoration: underline;
}

/* ============================================================
   AVAILABILITY & HANDOUT PROMO
   ============================================================ */
.availability {
  text-align: center;
  background: linear-gradient(135deg, rgba(15, 76, 92, 0.4) 0%, rgba(11, 37, 44, 0.8) 100%);
  border: 1px solid var(--border-bright);
  border-radius: 20px;
  padding: 60px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  margin-block: 40px;
}
.availability img {
  margin: 0 auto 24px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
.availability h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 16px;
}
.availability > p:not(.eyebrow) {
  font-size: 15px;
  color: var(--text-sub);
  max-width: 580px;
  margin: 0 auto 28px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
  padding-block: 60px 30px;
  border-top: 1px solid var(--border);
}
.footer-brand {
  font-size: 22px;
  font-weight: 800;
}
.footer-brand span {
  color: var(--amber);
}
.footer p {
  color: var(--text-muted);
  font-size: 12px;
  margin: 6px 0;
}
.footer nav {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 600;
  align-items: center;
}
.footer nav a {
  color: var(--text-sub);
  transition: color 0.2s;
}
.footer nav a:hover {
  color: var(--amber);
}
.legal {
  width: 100%;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 40px;
  font-size: 11px;
  color: var(--text-muted);
  padding-top: 24px;
}

/* ============================================================
   LIGHTBOX DIALOG
   ============================================================ */
dialog {
  border: 1px solid var(--border-hover);
  border-radius: 18px;
  background: var(--bg-surface);
  color: var(--text);
  max-width: min(1100px, 95vw);
  width: 100%;
  padding: 24px;
  max-height: 96dvh;
}
dialog::backdrop {
  background: rgba(3, 11, 14, 0.88);
  backdrop-filter: blur(10px);
}
.viewer-close {
  display: block;
  margin-left: auto;
  font-size: 14px;
  color: var(--text-sub);
  padding: 8px 12px;
}
.viewer-close:hover {
  color: var(--amber);
}
.viewer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.viewer-content > img {
  max-height: 70dvh;
  width: auto;
  max-width: calc(100% - 90px);
  object-fit: contain;
  border-radius: 10px;
}
.viewer-prev, .viewer-next {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s;
}
.viewer-prev:hover, .viewer-next:hover {
  background: var(--amber);
  color: var(--bg-deep);
}
.viewer-caption {
  text-align: center;
  margin-top: 18px;
}
.viewer-caption h2 {
  font-size: 18px;
  letter-spacing: 0;
  margin: 0;
}
.viewer-caption p, .viewer-caption a {
  font-size: 12px;
  color: var(--text-sub);
  margin: 5px 0;
}
.viewer-caption a {
  color: var(--amber);
  text-decoration: underline;
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */
@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 55px;
    text-align: center;
  }
  .hero-copy {
    max-width: 100%;
  }
  .audio-banner {
    max-width: 480px;
    margin-inline: auto;
    text-align: left;
  }
  .hero-actions {
    justify-content: center;
  }
  .steps-grid, .sunday-grid, .carplay-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .narration-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .filter-phones, .sunday-preview {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .header {
    height: 75px;
  }
  .menu-toggle {
    display: block;
  }
  .header nav {
    display: none;
    position: absolute;
    top: 75px;
    left: 18px;
    right: 18px;
    background: #081d22;
    padding: 24px;
    z-index: 50;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-hover);
    border-radius: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .header nav.open {
    display: flex;
  }
  .nav-pill {
    justify-content: center;
  }
  .hero {
    padding-block: 35px 50px;
  }
  h1 {
    font-size: 42px;
  }
  .hero-phone-wrap {
    width: 220px;
  }
  .hero-carplay-wrap {
    width: 260px;
    left: -15px;
    bottom: -10px;
  }
  .floating-pill {
    display: none;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .screen-card:has(.screen-button.landscape) {
    grid-column: span 1;
  }
  .footer {
    flex-direction: column;
  }
  .legal {
    flex-direction: column;
    gap: 12px;
  }
}
