/* Go Run It GPS — premium landing (Apple × Tesla × Stripe energy) */

:root {
  --bg: #0B0F1A;
  --bg-elevated: #101626;
  --bg-card: #101626;
  --bg-card-hover: #17213A;
  --navy-deep: #0B0F1A;
  --navy-mid: #3873EB;
  --navy-soft: rgba(56, 115, 235, 0.35);
  --accent: #00E5FF;
  --accent-soft: rgba(0, 229, 255, 0.15);
  --accent-muted: rgba(64, 156, 255, 0.75);
  --blue: #3873EB;
  --blue-bright: #599EFF;
  --teal: #2EC7B8;
  --purple: #7B61FF;
  --text: #FFFFFF;
  --text-muted: #A0A7B3;
  --text-dim: #6B7280;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.35);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .btn,
  .step-card,
  .feature-card,
  .audience-card,
  .price-card,
  .device__frame {
    transition: none !important;
    animation: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* ----- Nav ----- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(11, 15, 20, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.nav.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(11, 15, 20, 0.92);
}

.nav__inner {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 650;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.nav__logo img { width: 2rem; height: 2rem; object-fit: contain; border-radius: .55rem; }

.nav__logo span {
  color: var(--text);
}

.nav__logo b { color: var(--blue-bright); font-weight: 750; }

.nav__links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.nav__links a {
  transition: color 0.2s var(--ease);
}

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

.btn--nav {
  display: none;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text);
}

.nav__toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s var(--ease);
}

.nav__toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.nav__drawer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1rem 1.5rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.nav__drawer a {
  padding: 0.5rem 0;
  color: var(--text-muted);
  font-size: 1rem;
}

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

.nav__drawer[hidden] {
  display: none;
}

@media (min-width: 880px) {
  .nav__links,
  .btn--nav {
    display: flex;
  }
  .btn--nav {
    align-items: center;
    justify-content: center;
    line-height: 1;
  }
  .nav__toggle {
    display: none;
  }
  .nav__drawer {
    display: none !important;
  }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease);
}

.btn--primary {
  background: var(--accent);
  color: #0B0F14;
  box-shadow: 0 4px 24px rgba(247, 201, 72, 0.28);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(247, 201, 72, 0.4);
}

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

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.btn--nav {
  padding: 0.55rem 1.1rem;
  background: var(--accent-soft);
  border-color: rgba(247, 201, 72, 0.35);
  color: var(--accent);
}

.btn--nav:hover {
  background: rgba(247, 201, 72, 0.22);
  transform: translateY(-2px);
}

.btn--block {
  width: 100%;
}

.btn--xl {
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 6.5rem 0 4rem;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55vw;
  max-width: 720px;
  height: 70vh;
  background: radial-gradient(
    ellipse at center,
    rgba(247, 201, 72, 0.12) 0%,
    rgba(30, 58, 95, 0.15) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-muted);
}

.hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.35rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero__sub {
  margin: 0 0 2rem;
  max-width: 34rem;
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.hero__trust {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-dim);
}

.hero__trust li {
  position: relative;
  padding-left: 1.1rem;
}

.hero__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

/* Device mock */
.device {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.device__frame {
  width: min(300px, 85vw);
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(145deg, #2a3544 0%, #111820 100%);
  box-shadow: var(--shadow), 0 0 0 1px var(--border-strong);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.6s var(--ease);
}

.device:hover .device__frame {
  transform: rotateY(-4deg) rotateX(2deg) translateY(-6px);
}

.device__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 22px;
  background: #0a0e13;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.device__frame {
  position: relative;
}

.device__screen {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: var(--navy-deep);
  min-height: 520px;
}

.device__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1rem 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.device__signal {
  width: 14px;
  height: 10px;
  border: 1px solid var(--text-dim);
  border-radius: 2px;
  opacity: 0.7;
}

.device__map {
  position: relative;
  height: 280px;
  margin: 0.25rem 0.6rem 0;
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, #152535 0%, #0E1828 50%, #0B1220 100%);
  overflow: hidden;
}

.device__route {
  position: absolute;
  bottom: 18%;
  left: 12%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(247, 201, 72, 0.3));
  border-radius: 3px;
  transform: rotate(-12deg);
  box-shadow: 0 0 20px rgba(247, 201, 72, 0.35);
}

.device__pin,
.device__vehicle {
  position: absolute;
  border-radius: 50%;
}

.device__pin--a {
  width: 10px;
  height: 10px;
  top: 22%;
  left: 28%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(247, 201, 72, 0.25);
}

.device__pin--b {
  width: 10px;
  height: 10px;
  bottom: 28%;
  right: 22%;
  background: #5B9BD5;
  box-shadow: 0 0 0 4px rgba(91, 155, 213, 0.25);
}

.device__vehicle {
  width: 22px;
  height: 22px;
  bottom: 38%;
  left: 44%;
  background: linear-gradient(135deg, #f0f0f0, #a8a8a8);
  box-shadow: var(--shadow-soft);
}

.device__card {
  margin: 1rem 0.6rem;
  padding: 0.9rem 1rem;
  background: rgba(20, 28, 39, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.device__card strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.device__card span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.device__chip {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.45rem 0.9rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(247, 201, 72, 0.35);
  border-radius: 999px;
  white-space: nowrap;
}

/* ----- Sections ----- */
.section {
  padding: 5rem 0;
  scroll-margin-top: 5rem;
}

.section__head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section__lede {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.section--demo {
  background: linear-gradient(180deg, var(--bg) 0%, var(--navy-deep) 100%);
  border-top: 1px solid var(--border);
}

.steps {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.step-card {
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.step-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(247, 201, 72, 0.2);
  box-shadow: var(--shadow-soft);
}

.step-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
}

.step-card__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-muted);
  letter-spacing: 0.08em;
}

.step-card__title {
  margin: 0.5rem 0 0.75rem;
  font-size: 1.2rem;
  font-weight: 650;
}

.step-card__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

/* AI section */
.section--ai {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.ai-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 900px) {
  .ai-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.ai-features {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.ai-features li {
  padding-left: 1.25rem;
  border-left: 2px solid rgba(247, 201, 72, 0.45);
}

.ai-features strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.ai-features span {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.ai-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.ai-panel__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.15rem;
  background: var(--navy-deep);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.ai-panel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 10px #4ADE80;
  animation: pulse-dot 2s var(--ease) infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.ai-panel__body {
  padding: 1.75rem;
}

.ai-panel__wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 48px;
  margin-bottom: 1.25rem;
}

.ai-panel__wave span {
  display: block;
  width: 4px;
  border-radius: 2px;
  background: var(--accent);
  animation: wave 1.2s ease-in-out infinite;
}

.ai-panel__wave span:nth-child(1) {
  height: 16px;
  animation-delay: 0s;
}
.ai-panel__wave span:nth-child(2) {
  height: 28px;
  animation-delay: 0.1s;
}
.ai-panel__wave span:nth-child(3) {
  height: 38px;
  animation-delay: 0.2s;
}
.ai-panel__wave span:nth-child(4) {
  height: 22px;
  animation-delay: 0.15s;
}
.ai-panel__wave span:nth-child(5) {
  height: 34px;
  animation-delay: 0.25s;
}
.ai-panel__wave span:nth-child(6) {
  height: 18px;
  animation-delay: 0.05s;
}
.ai-panel__wave span:nth-child(7) {
  height: 26px;
  animation-delay: 0.2s;
}

@keyframes wave {
  0%,
  100% {
    transform: scaleY(0.5);
    opacity: 0.6;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.ai-panel__transcript {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: italic;
}

.ai-panel__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.ai-panel__ptt {
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.ai-panel__ptt:hover {
  background: var(--accent-soft);
  border-color: rgba(247, 201, 72, 0.45);
}

.ai-panel__hint {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Feature grid */
.feature-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.65rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  background: var(--bg-card);
}

.feature-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  font-weight: 650;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9125rem;
  line-height: 1.55;
}

/* Audience */
.section--audience {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
}

.audience-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.audience-card {
  padding: 1.5rem;
  background: rgba(17, 24, 32, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.audience-card:hover {
  transform: translateY(-3px);
  border-color: rgba(247, 201, 72, 0.18);
}

.audience-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.audience-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Dashboard */
.section--dash {
  border-top: 1px solid var(--border);
}

.dash {
  display: grid;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
}

@media (min-width: 800px) {
  .dash {
    grid-template-columns: 200px 1fr;
  }
}

.dash__sidebar {
  padding: 1.25rem;
  background: var(--navy-deep);
  border-bottom: 1px solid var(--border);
}

@media (min-width: 800px) {
  .dash__sidebar {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
}

.dash__brand {
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.dash__nav {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.dash__nav li {
  padding: 0.45rem 0;
  border-radius: var(--radius-sm);
  cursor: default;
}

.dash__nav li.is-active {
  color: var(--text);
  background: var(--accent-soft);
  padding-left: 0.5rem;
  margin-left: -0.5rem;
}

.dash__main {
  display: grid;
  gap: 0;
}

@media (min-width: 700px) {
  .dash__main {
    grid-template-columns: 1.2fr 0.85fr;
  }
}

.dash__map {
  position: relative;
  min-height: 240px;
  background: linear-gradient(145deg, #1a2838, #0e1620);
  border-bottom: 1px solid var(--border);
}

@media (min-width: 700px) {
  .dash__map {
    border-bottom: none;
    border-right: 1px solid var(--border);
    min-height: 320px;
  }
}

.dash__map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
}

.dash__map-route {
  position: absolute;
  top: 45%;
  left: 18%;
  right: 22%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), rgba(247, 201, 72, 0.2));
  border-radius: 4px;
  transform: rotate(-8deg);
}

.dash__marker {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--bg);
}

.dash__marker--1 {
  top: 30%;
  left: 25%;
  background: var(--accent);
}
.dash__marker--2 {
  top: 55%;
  left: 55%;
  background: #5B9BD5;
}
.dash__marker--3 {
  bottom: 22%;
  right: 28%;
  background: #7CBA6A;
}

.dash__panel {
  padding: 1.25rem;
}

.dash__panel h4 {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

.dash__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.dash__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.dash__avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--navy-mid);
  color: var(--text);
  flex-shrink: 0;
}

.dash__list strong {
  display: block;
  font-size: 0.875rem;
}

.dash__list small {
  color: var(--text-dim);
  font-size: 0.75rem;
}

.status {
  margin-left: auto;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.status--active {
  background: rgba(74, 222, 128, 0.15);
  color: #4ADE80;
}

.status--idle {
  background: rgba(251, 191, 36, 0.12);
  color: #FBBF24;
}

.status--done {
  background: rgba(148, 163, 184, 0.15);
  color: #94A3B8;
}

/* Pricing */
.section--pricing {
  background: linear-gradient(180deg, var(--bg) 0%, var(--navy-deep) 100%);
  border-top: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 880px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: flex-start;
  }
}

.price-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
}

.price-card--featured {
  background: linear-gradient(165deg, #1a2230 0%, #141c27 100%);
  border-color: rgba(247, 201, 72, 0.45);
  box-shadow: 0 20px 60px rgba(247, 201, 72, 0.08);
}

@media (min-width: 880px) {
  .price-card--featured {
    transform: scale(1.02);
  }
  .price-card--featured:hover {
    transform: scale(1.02) translateY(-4px);
  }
}

.price-card__badge {
  position: absolute;
  top: 0;
  right: 1.25rem;
  transform: translateY(-50%);
  padding: 0.35rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--accent);
  color: #0B0F14;
  border-radius: 999px;
}

.price-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.price-card__price {
  margin: 0 0 1rem;
}

.price-card__price span {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.price-card__price small {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-dim);
  font-size: 0.8125rem;
}

.price-card__note {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.price-card__list {
  margin: 0 0 1.5rem;
  padding: 0 0 0 1.15rem;
  flex: 1;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.price-card .btn {
  margin-top: auto;
}

/* Final CTA */
.final-cta {
  padding: 5.5rem 0;
  scroll-margin-top: 5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(247, 201, 72, 0.08), transparent),
    var(--bg);
}

.final-cta__inner {
  max-width: 560px;
  margin-inline: auto;
}

.final-cta__title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.final-cta__sub {
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

/* Footer */
.footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--navy-deep);
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
}

.footer__brand {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.footer__tag {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9125rem;
  max-width: 280px;
}

.footer__cols {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 0.85rem;
}

.footer__cols a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s var(--ease);
}

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

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.footer__bottom strong {
  color: var(--text-muted);
  font-weight: 600;
}

.footer__legal {
  margin: 0;
}

/* Reveal animations (enhanced by JS) */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--delay-1 {
  transition-delay: 0.08s;
}
.reveal--delay-2 {
  transition-delay: 0.16s;
}
.reveal--delay-3 {
  transition-delay: 0.24s;
}
