/* ─────────────────────────────────────────
   axiotrax  ·  main.css
   Brand: Metropolis · #1C3A5F · #FF6B35
───────────────────────────────────────── */

:root {
  --navy:    #1C3A5F;
  --navy-dk: #122540;
  --navy-md: #2D5080;
  --orange:  #FF6B35;
  --orange-lt: rgba(255,107,53,0.12);
  --steel:   #4A5568;
  --white:   #FFFFFF;
  --mist:    #F2F7FC;
  --sky:     #E8F4FD;

  --navy-20: rgba(28,58,95,0.20);
  --navy-08: rgba(28,58,95,0.08);
  --white-12: rgba(255,255,255,0.12);
  --white-60: rgba(255,255,255,0.60);

  --radius: 12px;
  --radius-sm: 7px;
  --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Metropolis', 'system-ui', -apple-system, sans-serif;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

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

/* ── Typography helpers ── */
.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.95;
}

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 4rem;
  transition: background var(--transition), backdrop-filter var(--transition);
}

/* ── Nav links ── */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  flex: 1;
  justify-content: flex-end;
}

.header-nav a {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active { color: var(--orange); }

@media (max-width: 640px) {
  .header-nav { gap: 1.25rem; }
  .header-nav a { font-size: 0.6rem; }
  .header-badge { display: none; }
}

.site-header.scrolled {
  background: rgba(18,37,64,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.header-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-60);
}

.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,107,53,0.5); }
  50%      { box-shadow: 0 0 0 7px rgba(255,107,53,0); }
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 4rem 5rem;
}

/* Animated GPS track lines in the background */
.hero-track {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-track svg {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0.06;
}

/* Orange glow top-right */
.hero::before {
  content: '';
  position: absolute;
  top: -160px; right: -120px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.20) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--orange-lt);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: 100px;
  padding: 0.45rem 1.1rem 0.45rem 0.7rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.3s;
}

.hero-badge span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
}

.hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.5s;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 400;
  color: var(--white-60);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.7s;
}

.hero-sub strong { color: var(--white); font-weight: 600; }

/* Email form */
.hero-form-wrap {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.9s;
}

.form-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 0.9rem;
}

.email-row {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.email-input {
  flex: 1;
  min-width: 240px;
  max-width: 340px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.email-input::placeholder { color: rgba(255,255,255,0.35); }

.email-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.18);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.9rem 2.2rem;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  background: #ff7d4e;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,107,53,0.35);
}

.btn-primary:active { transform: translateY(0); }

.form-note {
  margin-top: 1rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.25);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.5s;
}

.scroll-cue svg {
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}

/* ─────────────────────────────────────────
   FEATURES
───────────────────────────────────────── */
.features {
  background: var(--white);
  padding: 7rem 4rem;
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.features-header .eyebrow { margin-bottom: 1rem; }

.features-header .section-title { color: var(--navy); }

.features-header p {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  color: var(--steel);
  line-height: 1.7;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--mist);
  border: 1px solid var(--navy-08);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--navy-20);
}

.feature-icon {
  width: 48px; height: 48px;
  background: var(--orange-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 24px; height: 24px;
  stroke: var(--orange);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.feature-card p {
  font-size: 0.93rem;
  color: var(--steel);
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   GARMIN
───────────────────────────────────────── */
.garmin-section {
  background: var(--navy-dk);
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}

/* Subtle glow top-left */
.garmin-section::before {
  content: '';
  position: absolute;
  top: -120px; left: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.13) 0%, transparent 65%);
  pointer-events: none;
}

.garmin-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.garmin-copy .eyebrow { margin-bottom: 1.25rem; }

.garmin-copy .section-title {
  color: var(--white);
}

.garmin-copy .section-title em {
  font-style: normal;
  color: var(--orange);
}

.garmin-copy > p {
  margin-top: 1.75rem;
  font-size: 1rem;
  color: var(--white-60);
  line-height: 1.85;
  max-width: 460px;
}

.garmin-checklist {
  list-style: none;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.garmin-checklist li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.garmin-checklist li svg { flex-shrink: 0; }

.garmin-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.garmin-watch-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
}

/* Orange halo behind the watch */
.garmin-watch-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(255,107,53,0.16) 0%, transparent 65%);
  pointer-events: none;
}

.garmin-watch-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 40px 80px rgba(0,0,0,0.5);
}

@media (max-width: 900px) {
  .garmin-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .garmin-copy > p { max-width: 100%; }
  .garmin-visual { order: -1; }
  .garmin-watch-wrap { max-width: 300px; margin: 0 auto; }
}

/* ─────────────────────────────────────────
   SCREENS
───────────────────────────────────────── */
.screens {
  background: var(--navy);
  padding: 7rem 4rem;
  overflow: hidden;
}

.screens-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.screens-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.screens-header .eyebrow { opacity: 0.7; }

.screens-header .section-title {
  color: var(--white);
}

.phones-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: end;
}

.phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.phone-frame {
  position: relative;
  width: 100%;
  max-width: 240px;
  background: #0a0a0a;
  border-radius: 36px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 30px 70px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}

.phone-frame img {
  width: 100%;
  border-radius: 28px;
  display: block;
}

/* Notch */
.phone-frame::before {
  content: '';
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 22px;
  background: #0a0a0a;
  border-radius: 0 0 14px 14px;
  z-index: 1;
}

.phone-caption {
  text-align: center;
}

.phone-caption strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.phone-caption span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

/* Scale middle phone up slightly */
.phone-wrap.featured .phone-frame {
  max-width: 264px;
  box-shadow:
    0 0 0 1.5px rgba(255,107,53,0.4),
    0 40px 80px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,107,53,0.12);
}

/* ─────────────────────────────────────────
   VIDEO TEASER (right after hero)
───────────────────────────────────────── */
.video-teaser {
  background: #0d1117;
  padding: 5.5rem 4rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.video-teaser::before {
  content: '';
  position: absolute;
  top: -120px; left: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.video-teaser-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}

.video-teaser-copy .eyebrow { margin-bottom: 1.25rem; }

.video-teaser-copy .section-title {
  color: var(--white);
  margin-bottom: 1.75rem;
}

.video-teaser-copy .section-title em {
  font-style: normal;
  color: var(--orange);
}

.video-teaser-copy p {
  font-size: 1.05rem;
  color: var(--white-60);
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 1rem;
}

.video-teaser-copy .eyebrow-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0.7rem 1.25rem;
  background: var(--orange-lt);
  border: 1px solid rgba(255,107,53,0.3);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.video-teaser-visual {
  position: relative;
}

.video-teaser-visual::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(255,107,53,0.14) 0%, transparent 65%);
  pointer-events: none;
}

.video-teaser-wrap {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,107,53,0.25),
    0 40px 80px rgba(0,0,0,0.55);
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.4s ease;
}

.video-teaser-wrap:hover {
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
}

.video-teaser-wrap video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

@media (max-width: 900px) {
  .video-teaser { padding: 4rem 2rem; }
  .video-teaser-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .video-teaser-wrap {
    transform: none;
  }
  .video-teaser-wrap:hover { transform: none; }
  .video-teaser-copy p { max-width: 100%; }
}

/* ─────────────────────────────────────────
   VIDEO SHOWCASE (full story)
───────────────────────────────────────── */
.video-showcase {
  background: var(--navy-dk);
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}

.video-showcase::before {
  content: '';
  position: absolute;
  bottom: -180px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.video-showcase-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.video-showcase-header {
  max-width: 680px;
  margin: 0 auto 4.5rem;
  text-align: center;
}

.video-showcase-header .eyebrow { margin-bottom: 1rem; }

.video-showcase-header .section-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.video-showcase-header .section-title em {
  font-style: normal;
  color: var(--orange);
}

.video-showcase-header p {
  font-size: 1.05rem;
  color: var(--white-60);
  line-height: 1.8;
}

.overlay-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.overlay-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.overlay-chip svg { stroke: var(--orange); flex-shrink: 0; }

.video-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.video-pair-item {}

.video-pair-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.video-pair-label .eyebrow { margin: 0; }

.video-pair-player {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 30px 60px rgba(0,0,0,0.5);
  background: #000;
  aspect-ratio: 16/9;
  margin-bottom: 1.25rem;
}

.video-pair-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-pair-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.video-pair-desc {
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.75;
}

.video-showcase-note {
  margin-top: 3.5rem;
  padding: 1.25rem 1.75rem;
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.22);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.video-showcase-note svg { flex-shrink: 0; stroke: var(--orange); margin-top: 2px; }

.video-showcase-note p {
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.75;
  margin: 0;
}

.video-showcase-note strong { color: var(--white); }

@media (max-width: 900px) {
  .video-showcase { padding: 5rem 2rem; }
  .video-pair { grid-template-columns: 1fr; gap: 3rem; }
}

/* ─────────────────────────────────────────
   VIDEO
───────────────────────────────────────── */
.video-section {
  background: var(--mist);
  padding: 7rem 4rem;
}

.video-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.video-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.video-header .eyebrow { margin-bottom: 1rem; }
.video-header .section-title { color: var(--navy); }
.video-header .section-title em { font-style: normal; color: var(--orange); }
.video-header p {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: var(--steel);
  line-height: 1.7;
}

.video-player-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px var(--navy-20);
  background: #000;
  aspect-ratio: 16/9;
}

.video-player-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play overlay for browsers that show default controls poorly */
.video-smartcourse-note {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-top: 1.25rem;
  font-size: 0.92rem;
  color: var(--steel);
  line-height: 1.6;
  background: var(--orange-lt);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.1rem;
  max-width: 600px;
  text-align: left;
}

.sc-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
}

.video-player-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,37,64,0.4) 0%, transparent 50%);
  pointer-events: none;
}

/* ─────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────── */
.cta-section {
  background: var(--navy-dk);
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}

/* Subtle orange glow */
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.14) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cta-section .section-title {
  color: var(--white);
  margin: 1.25rem 0;
}

.cta-section p {
  font-size: 1rem;
  color: var(--white-60);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: #0d1e33;
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

footer img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer-center {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

.footer-right {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  text-align: right;
}

.footer-right a:hover { color: var(--orange); }

/* ─────────────────────────────────────────
   NO GARMIN STRIP
───────────────────────────────────────── */
.no-garmin-strip {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.4rem 4rem;
}

.no-garmin-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.6;
}

.no-garmin-inner svg {
  flex-shrink: 0;
  color: var(--orange);
}

.no-garmin-inner strong {
  color: var(--white);
  font-weight: 700;
}

@media (max-width: 900px) {
  .no-garmin-strip { padding: 1.25rem 2rem; }
}


/* ─────────────────────────────────────────
   IPAD SECTION
───────────────────────────────────────── */
.ipad-section {
  background: var(--white);
  padding: 7rem 4rem;
  overflow: hidden;
}

.ipad-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ipad-frame-wrap {
  position: relative;
  width: 100%;
}

.ipad-frame-wrap::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(28,58,95,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.ipad-frame-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(28,58,95,0.10),
    0 40px 80px rgba(28,58,95,0.18);
}

.ipad-copy .eyebrow { margin-bottom: 1.25rem; }

.ipad-copy .section-title {
  color: var(--navy);
  margin-bottom: 1.75rem;
}

.ipad-copy .section-title em {
  font-style: normal;
  color: var(--orange);
}

.ipad-copy > p {
  font-size: 1rem;
  color: var(--steel);
  line-height: 1.85;
  max-width: 460px;
}

.ipad-checklist li { color: var(--navy); }

.ipad-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ipad-frame-secondary {
  opacity: 0.75;
  transform: scale(0.94);
  transform-origin: top left;
}

.ipad-frame-secondary::before { display: none; }

@media (max-width: 900px) {
  .ipad-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ipad-copy > p { max-width: 100%; }
  .ipad-frame-wrap { max-width: 560px; margin: 0 auto; }
}


/* ─────────────────────────────────────────
   PLATFORM SECTION
───────────────────────────────────────── */
.platform-section {
  background: var(--mist);
  padding: 7rem 4rem;
}

.platform-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.platform-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.platform-header .eyebrow { margin-bottom: 1rem; }

.platform-header .section-title { color: var(--navy); }

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.platform-card {
  background: var(--white);
  border: 1px solid var(--navy-08);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px var(--navy-20);
}

.platform-card.featured {
  border-color: rgba(255,107,53,0.35);
  box-shadow: 0 0 0 1px rgba(255,107,53,0.15), 0 20px 50px rgba(255,107,53,0.10);
}

.platform-icon {
  width: 48px; height: 48px;
  background: var(--orange-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-icon svg {
  width: 24px; height: 24px;
  stroke: var(--orange);
}

.platform-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.platform-card p {
  font-size: 0.93rem;
  color: var(--steel);
  line-height: 1.7;
  flex: 1;
}

.platform-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  align-self: flex-start;
}

.platform-badge.available {
  background: rgba(34,197,94,0.12);
  color: #16a34a;
  border: 1px solid rgba(34,197,94,0.25);
}

.platform-badge.coming-soon {
  background: var(--orange-lt);
  color: var(--orange);
  border: 1px solid rgba(255,107,53,0.25);
}

@media (max-width: 900px) {
  .platform-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}


/* ─────────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────────── */
.about-section {
  background: var(--navy);
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  bottom: -160px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.13) 0%, transparent 65%);
  pointer-events: none;
}

.about-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}

.about-photo-wrap {
  position: relative;
}

.about-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -24px;
  background: radial-gradient(circle, rgba(255,107,53,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.about-photo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 30px 70px rgba(0,0,0,0.45);
  filter: grayscale(15%);
}

.about-copy .eyebrow { margin-bottom: 1.25rem; }

.about-copy .section-title {
  color: var(--white);
  margin-bottom: 1.75rem;
}

.about-copy .section-title em {
  font-style: normal;
  color: var(--orange);
}

.about-lead {
  font-size: 1.05rem;
  color: var(--white-60);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

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

.career-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  padding-left: 0;
}

.career-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.career-role {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.career-co {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
}

.about-bio {
  font-size: 1rem;
  color: var(--white-60);
  line-height: 1.85;
  font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 1.75rem;
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-photo-wrap { max-width: 280px; margin: 0 auto; }
}

@media (max-width: 640px) {
  .about-section { padding: 5rem 2rem; }
}


/* ─────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─────────────────────────────────────────
   KEYFRAMES
───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
  .site-header { padding: 1.25rem 2rem; }
  .hero { padding: 7rem 2rem 4rem; }
  .features, .screens, .video-section, .cta-section,
  .ipad-section, .platform-section, .garmin-section { padding: 5rem 2rem; }
  footer { padding: 2.5rem 2rem; }

  .features-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .phones-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .phone-frame { border-radius: 24px; }
  .phone-frame::before { width: 60px; height: 18px; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: clamp(2.6rem, 10vw, 3.5rem); }

  .phones-row { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  .phone-wrap.featured { order: -1; }

  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-right { text-align: center; }

  .email-row { flex-direction: column; align-items: center; }
  .email-input { min-width: 0; max-width: 100%; width: 100%; }
  .btn-primary { width: 100%; }
}

/* ─────────────────────────────────────────
   FOOTER NAV
───────────────────────────────────────── */
.footer-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--orange); }

/* ─────────────────────────────────────────
   GUIDE SCREENSHOT — inline phone in docs
───────────────────────────────────────── */
.guide-screenshot {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin: 2rem 0 2.5rem;
  flex-wrap: wrap;
}

.guide-screenshot.center {
  justify-content: center;
}

.guide-phone {
  flex-shrink: 0;
  width: 190px;
  background: #0a0a0a;
  border-radius: 32px;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(28,58,95,0.15),
    0 20px 50px rgba(28,58,95,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  position: relative;
}

.guide-phone::before {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 64px; height: 18px;
  background: #0a0a0a;
  border-radius: 0 0 12px 12px;
  z-index: 1;
}

.guide-phone img {
  width: 100%;
  border-radius: 26px;
  display: block;
}

.guide-screenshot-pair {
  display: flex;
  gap: 1.25rem;
  flex-shrink: 0;
}

.guide-screenshot-pair .guide-phone {
  width: 160px;
}

.guide-caption {
  flex: 1;
  min-width: 200px;
  padding-top: 0.5rem;
}

.guide-caption p {
  margin-bottom: 0.75rem !important;
}

@media (max-width: 640px) {
  .guide-screenshot { flex-direction: column; align-items: center; }
  .guide-caption { text-align: center; }
  .guide-screenshot-pair .guide-phone { width: 140px; }
}

/* ─────────────────────────────────────────
   INNER PAGE HERO (condensed banner)
───────────────────────────────────────── */
.page-banner {
  background: var(--navy-dk);
  padding: 9rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.page-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.page-banner .eyebrow { margin-bottom: 1rem; }

.page-banner h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.page-banner h1 em {
  font-style: normal;
  color: var(--orange);
}

.page-banner p {
  font-size: 1.05rem;
  color: var(--white-60);
  line-height: 1.75;
  max-width: 560px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
  transition: color var(--transition);
}

.back-link:hover { color: var(--orange); }

.back-link svg { stroke: currentColor; }

@media (max-width: 900px) {
  .page-banner { padding: 8rem 2rem 3rem; }
}

/* ─────────────────────────────────────────
   PROSE CONTENT (guide, TOS)
───────────────────────────────────────── */
.prose-section {
  background: var(--white);
  padding: 5rem 4rem;
}

.prose-inner {
  max-width: 820px;
  margin: 0 auto;
}

.prose-inner h2 {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 3rem 0 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--navy-08);
}

.prose-inner h2:first-child { margin-top: 0; }

.prose-inner h3 {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

.prose-inner p {
  font-size: 0.97rem;
  color: var(--steel);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.prose-inner ul, .prose-inner ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.prose-inner li {
  font-size: 0.97rem;
  color: var(--steel);
  line-height: 1.75;
  margin-bottom: 0.4rem;
}

.prose-inner strong { color: var(--navy); font-weight: 700; }

.prose-inner a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose-callout {
  background: var(--mist);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.1rem 1.5rem;
  margin: 1.5rem 0;
}

.prose-callout p {
  margin: 0;
  font-size: 0.93rem;
}

.prose-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.prose-step-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  margin-top: 0.1rem;
}

.prose-step-body p { margin: 0; }
.prose-step-body strong { display: block; margin-bottom: 0.25rem; }

@media (max-width: 900px) {
  .prose-section { padding: 4rem 2rem; }
}

/* ─────────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────────── */
.faq-section {
  background: var(--mist);
  padding: 5rem 4rem;
}

.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}

.faq-header {
  margin-bottom: 3rem;
}

.faq-header .eyebrow { margin-bottom: 0.75rem; }

.faq-header .section-title { color: var(--navy); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--navy-08);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--orange); }

.faq-question svg {
  flex-shrink: 0;
  stroke: currentColor;
  transition: transform var(--transition);
}

.faq-item.open .faq-question { color: var(--orange); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.93rem;
  color: var(--steel);
  line-height: 1.8;
}

.faq-answer p { margin-bottom: 0.6rem; }
.faq-answer p:last-child { margin-bottom: 0; }

.faq-item.open .faq-answer { display: block; }

@media (max-width: 900px) {
  .faq-section { padding: 4rem 2rem; }
}

/* ─────────────────────────────────────────
   WATCHES SECTION
───────────────────────────────────────── */
.watches-section {
  background: var(--navy-dk);
  padding: 7rem 4rem;
  position: relative;
  overflow: hidden;
}

/* Orange glow top-left */
.watches-section::before {
  content: '';
  position: absolute;
  top: -120px; left: -100px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.13) 0%, transparent 65%);
  pointer-events: none;
}

/* Subtle second glow bottom-right */
.watches-section::after {
  content: '';
  position: absolute;
  bottom: -140px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.watches-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.watches-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.watches-header .eyebrow { margin-bottom: 1.25rem; }

.watches-header .section-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.watches-header .section-title em {
  font-style: normal;
  color: var(--orange);
}

.watches-header > p {
  font-size: 1.05rem;
  color: var(--white-60);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

.watches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* ── Individual watch card ── */
.watch-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.watch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.45);
}

/* Image container — white bg matches both product shots; contain shows full watch */
.watch-card-img-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.watch-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Card body */
.watch-card-body {
  padding: 2.25rem 2rem 2.5rem;
}

.watch-card-label {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.9rem;
}

.watch-card-body h3 {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.watch-card-body > p {
  font-size: 0.93rem;
  color: var(--white-60);
  line-height: 1.82;
  margin-bottom: 1.75rem;
}

/* Checklist — reuses same orange-box SVG pattern as garmin-checklist */
.watch-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.watch-checklist li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  line-height: 1.4;
}

.watch-checklist li svg { flex-shrink: 0; }

@media (max-width: 900px) {
  .watches-section  { padding: 5rem 2rem; }
  .watches-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .watches-header > p { max-width: 100%; }
  .watch-card-img-wrap { height: 260px; }
}

@media (max-width: 640px) {
  .watch-card-body  { padding: 1.75rem 1.5rem 2rem; }
}

/* ─────────────────────────────────────────
   SUPPORT FORM
───────────────────────────────────────── */
.support-form-section {
  background: var(--navy-dk);
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
}

.support-form-section::before {
  content: '';
  position: absolute;
  bottom: -160px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.13) 0%, transparent 65%);
  pointer-events: none;
}

.support-form-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.support-form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.support-form-header .eyebrow { margin-bottom: 0.75rem; }
.support-form-header .section-title { color: var(--white); margin-bottom: 1rem; }
.support-form-header p { color: var(--white-60); font-size: 0.97rem; line-height: 1.75; }

.support-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  font-family: inherit;
  font-size: 0.93rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.18);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option { background: #1c2d45; color: var(--white); }

.form-textarea { resize: vertical; min-height: 140px; }

.support-form .btn-primary { align-self: flex-start; }

.form-privacy {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .support-form-section { padding: 4rem 2rem; }
  .support-form .btn-primary { width: 100%; }
}

/* ─────────────────────────────────────────
   BUILT DIFFERENT — the engineering behind
   the coach (patent-pending section)
───────────────────────────────────────── */
.built-different {
  background: linear-gradient(180deg, var(--navy-dk) 0%, var(--navy) 100%);
  padding: 96px 24px 80px;
  color: var(--white);
}
.bd-inner { max-width: 1100px; margin: 0 auto; }
.bd-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.bd-head .section-title { margin: 14px 0 18px; }
.bd-head .section-title em { font-style: normal; color: var(--orange); }
.bd-head p { color: var(--white-60); font-size: 1.05rem; line-height: 1.65; }

.bd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 820px) { .bd-grid { grid-template-columns: 1fr; } }

.bd-card {
  background: var(--white-12);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 30px 30px 24px;
  backdrop-filter: blur(4px);
}
.bd-card h3 { font-size: 1.25rem; font-weight: 800; line-height: 1.25; margin-bottom: 10px; }
.bd-card p  { color: var(--white-60); font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }
.bd-card svg { width: 100%; height: auto; display: block; border-radius: 8px; }

.bd-patent-line {
  text-align: center; margin-top: 56px;
  font-size: 0.85rem; color: var(--white-60); letter-spacing: 0.04em;
}
.bd-patent-line .pp {
  color: var(--white); font-weight: 700;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px; padding: 4px 14px; margin-right: 10px;
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
}

/* ─────────────────────────────────────────
   BETA SIGNUP — intent-capturing CTA forms
───────────────────────────────────────── */
.signup-stack {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 380px;
  margin: 0 auto;
}
/* Center the hero signup block — label, controls, and note */
.hero-form-wrap { text-align: center; }
.signup-stack .email-input { width: 100%; min-width: 0; }
.signup-stack .form-select { width: 100%; }

.cta-form.signup-form {
  display: flex; flex-direction: column; gap: 12px;
  max-width: 480px; margin: 0 auto; text-align: left;
}
.signup-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 12px;
}
.signup-submit { width: 100%; }

@media (max-width: 640px) {
  .signup-grid { grid-template-columns: 1fr; }
  .signup-stack { max-width: 100%; }
}

/* ─────────────────────────────────────────
   VAKAROS / VKX IMPORT
───────────────────────────────────────── */
.vakaros-section {
  background: var(--mist);
  padding: 96px 24px;
}
.vakaros-inner { max-width: 1100px; margin: 0 auto; }
.vakaros-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.vakaros-head .section-title { margin: 14px 0 18px; }
.vakaros-head .section-title em { font-style: normal; color: var(--orange); }
.vakaros-lead { color: var(--steel); font-size: 1.05rem; line-height: 1.7; }

/* 3-step flow: Connect → share → axiotrax */
.vakaros-flow {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-bottom: 56px;
}
.vk-step { flex: 1; max-width: 290px; margin: 0; }
.vk-step .phone-frame img {
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(18,37,64,0.22);
}
.vk-step:last-child .phone-frame img {
  box-shadow: 0 20px 44px rgba(255,107,53,0.30);
  outline: 3px solid var(--orange); outline-offset: -1px;
}
.vk-step figcaption {
  margin-top: 14px; text-align: center;
  font-size: 0.92rem; font-weight: 600; color: var(--navy); line-height: 1.4;
}
.vk-step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-weight: 800; font-size: 0.75rem; margin-right: 7px;
}
.vk-arrow { font-size: 2rem; color: var(--orange); font-weight: 800; flex: none; }
@media (max-width: 760px) {
  .vakaros-flow { flex-direction: column; }
  .vk-arrow { transform: rotate(90deg); }
  .vk-step { max-width: 320px; }
}

.vakaros-detail {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: start;
}
@media (max-width: 760px) { .vakaros-detail { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────
   MULTI-DEVICE SYNC
───────────────────────────────────────── */
.sync-section {
  background: var(--white);
  padding: 96px 24px 80px;
}
.sync-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.sync-head .section-title { margin: 14px 0 18px; }
.sync-head .section-title em { font-style: normal; color: var(--orange); }
.sync-lead {
  color: var(--steel); font-size: 1.05rem; line-height: 1.7;
  max-width: 680px; margin: 0 auto 40px;
}
.sync-visual img {
  width: 100%; border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(18,37,64,0.18);
  margin-bottom: 40px;
}
.sync-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left;
}
@media (max-width: 760px) { .sync-steps { grid-template-columns: 1fr; } }
.sync-step {
  background: var(--mist); border-radius: var(--radius);
  padding: 18px 20px; color: var(--navy);
  font-size: 0.95rem; line-height: 1.55;
}
.sync-step-n {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-weight: 800; font-size: 0.85rem; margin-right: 8px;
}
