:root {
  /* Matches the Maintra app's Carbon theme (constants/theme.ts). */
  --bg: #0A0A0A;
  --surface: #111111;
  --card: #181818;
  --border: #2A2A2A;
  --text: #F5F5F5;
  --text-muted: #AAAAAA;
  --text-faint: #666666;
  --primary: #D4AF37;        /* classic gold */
  --primary-dark: #B8960C;
  --warning: #FF6B35;        /* warm orange (matches app's "warning") */
  --danger: #FF3B30;
  --success: #34C759;
  --max-w: 760px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Ambient garage background ──────────────────────────────────────
   - html carries the solid fallback color (paints first, even before bg.jpg
     loads).
   - body is transparent so the negative-z-index pseudos below show through.
   - body::before is the blurred bg.jpg, body::after the dark overlay; both
     position: fixed so they stay put while the page scrolls (the "parallax"
     feel — no JS required, no jank on mobile). */
html { background: var(--bg); overflow-x: hidden; }
body { background: transparent; position: relative; overflow-x: hidden; }

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
}

body::after {
  inset: 0;
}

/* The bg image element is slightly taller than the viewport (top: -15vh,
   bottom: -15vh) so it has room to drift up via --bg-shift without
   revealing black edges at the bottom of long pages. */
body::before {
  z-index: -2;
  top: -15vh;
  left: 0;
  right: 0;
  bottom: -15vh;
  background: url(bg.jpg) center/cover no-repeat;
  filter: blur(8px) brightness(0.6);
  transform: translateY(var(--bg-shift, 0)) scale(1.04);
  will-change: transform;
}

body::after {
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(10, 10, 10, 0.30) 0%,
    rgba(10, 10, 10, 0.55) 55%,
    rgba(10, 10, 10, 0.78) 100%);
}

/* ─── Drifting smoke / haze particles ────────────────────────────────
   Injected from fancy-fx.js as <div.smoke><div.smoke-particle/>...
   Sits between the bg overlay and page content. Pure CSS animation. */
.smoke {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.smoke-particle {
  position: absolute;
  bottom: -300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.12) 0%,
    rgba(212, 175, 55, 0.04) 40%,
    transparent 70%
  );
  filter: blur(50px);
  will-change: transform, opacity;
  animation: smoke-drift linear infinite;
}
@keyframes smoke-drift {
  0%   { transform: translate3d(0, 0, 0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate3d(60px, -130vh, 0); opacity: 0; }
}

/* Make sure page content paints above .smoke. */
.container { position: relative; z-index: 1; }

/* ─── Scroll-reveal ───────────────────────────────────────────────────
   fancy-fx.js adds .reveal to sections / cards on load, then toggles
   .visible when they enter the viewport. The fallback (no JS) leaves
   elements fully visible because the .reveal class is added at runtime,
   not in HTML. */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .smoke { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

a {
  color: var(--primary);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 20px 80px;
}

header.site-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

header.site-header .brand {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

header.site-header nav {
  margin-left: auto;
  display: flex;
  gap: 20px;
  font-size: 14px;
}

header.site-header nav a {
  color: var(--text-muted);
}
header.site-header nav a:hover { color: var(--primary); text-decoration: none; }

h1 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--text);
}

h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 8px;
  color: var(--text);
}

p, li {
  color: var(--text);
}

.muted {
  color: var(--text-muted);
  font-size: 14px;
}

.lede {
  color: var(--text-muted);
  font-size: 17px;
  margin: 0 0 24px;
}

ul { padding-left: 20px; }
li { margin-bottom: 6px; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 20px 0;
}

.card.accent {
  border-left: 3px solid var(--primary);
}

.card.warning {
  border-left: 3px solid var(--warning);
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 28px 0;
}
@media (min-width: 640px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
}

.cards-grid a.card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s;
}
.cards-grid a.card:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}
.cards-grid .card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.cards-grid .card-desc {
  font-size: 14px;
  color: var(--text-muted);
}

.step-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.step-list li {
  counter-increment: step;
  padding: 14px 16px 14px 52px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
}
.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary);
  color: #0A0A0A;
  font-weight: 800;
  text-align: center;
  line-height: 26px;
  font-size: 13px;
}

code {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 14px;
  color: var(--primary);
  font-family: "SF Mono", Consolas, Monaco, monospace;
}

footer {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

footer a { color: var(--text-muted); }
footer a:hover { color: var(--primary); }

.logo-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
}

.logo-img {
  height: 32px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

/* ─────────────────────────────────────────────────────────────────────
   Landing page (index.html) — wider layout + hero, features, pricing.
   Inner pages keep the 760px container; the home page opts in via
   .container.wide on <body>. Nothing below affects existing policy
   pages.
   ───────────────────────────────────────────────────────────────────── */

.container.wide {
  max-width: 1080px;
}

/* Hero
   Mobile (<880px): 2-col grid — text on the left, narrow "peek" column on
     the right that holds the phone screenshot. The image is wider than the
     column so ~70% of the phone overflows off the right edge of the viewport,
     leaving the left ~30% peeking in.
   ≥880px: balanced 2-col, phone fully visible. */
.hero {
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 12px;
  align-items: center;
  padding: 24px 0 32px;
}
@media (min-width: 880px) {
  .hero { grid-template-columns: 1.1fr 0.9fr; gap: 56px; padding: 40px 0 56px; }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 30px;     /* mobile: smaller so it fits next to the phone peek */
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}
@media (min-width: 880px) {
  .hero h1 { font-size: 52px; letter-spacing: -0.8px; }
}

.hero .hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0 0 28px;
  max-width: 540px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
}

.play-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  padding: 10px 20px 10px 16px;
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  text-decoration: none;
  transition: transform 0.15s, border-color 0.15s;
}
.play-badge:hover {
  text-decoration: none;
  border-color: var(--primary);
  transform: translateY(-1px);
}
.play-badge .play-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.play-badge .play-text { line-height: 1.15; }
.play-badge .play-small {
  font-size: 10px;
  letter-spacing: 0.5px;
  color: #cfcfcf;
  text-transform: uppercase;
}
.play-badge .play-big {
  font-size: 18px;
  font-weight: 600;
}

.hero-trust {
  font-size: 13px;
  color: var(--text-muted);
}
.hero-trust strong { color: var(--text); }

/* Real screenshot on the right side of the hero.
   Mobile: image is wider than its column → overflows right, ~30% peeks in.
   Desktop: image fully visible, centered in its column. */
.hero-shot {
  position: relative;
  display: flex;
  justify-content: flex-start;  /* mobile: hug left edge of column */
}
.hero-shot img {
  width: 260px;
  max-width: none;
  height: auto;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px -20px rgba(212, 175, 55, 0.18),
              0 10px 30px -10px rgba(0, 0, 0, 0.8);
  display: block;
}
@media (min-width: 880px) {
  .hero-shot { justify-content: center; }
  .hero-shot img { width: 100%; max-width: 320px; border-radius: 28px; }
}

/* Mobile (<880px): override the column-overflow approach. Use absolute
   positioning so the WHOLE phone is visible (constrained by height, not
   width) and ~50% of its width peeks in from the right edge. */
@media (max-width: 879px) {
  .hero {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 28px 0 32px;
    min-height: 300px;
    overflow: clip;
  }
  .hero > div:first-child {
    padding-right: 64px;     /* leave space for the peek */
  }
  .hero h1 { font-size: 30px; }
  .hero .hero-sub { font-size: 16px; margin-bottom: 22px; }

  .hero-shot {
    position: absolute;
    right: -55px;            /* phone overflows 55px past viewport right edge */
    top: 50%;
    transform: translateY(-50%);
    display: block;
    margin: 0;
    pointer-events: none;
  }
  .hero-shot img {
    width: auto;
    height: 240px;           /* full phone visible — no top/bottom crop */
    max-width: none;
    border-radius: 16px;
  }
}

/* Screenshot showcase
   Mobile: horizontal scroll-snap carousel (native swipe, no JS).
   ≥720px: 3-column grid, fully visible. */
.shot-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;             /* Firefox */
  padding: 4px 20px 16px;            /* room for shadow + side padding for snap centering */
  margin: 0 -20px;                   /* counter the side padding to use full viewport width */
  scroll-padding: 0 20px;
}
.shot-grid::-webkit-scrollbar { display: none; } /* Chrome/Safari */
@media (min-width: 720px) {
  .shot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
    overflow: visible;
    padding: 0;
    margin: 0;
    justify-items: center;
  }
}
.shot {
  margin: 0;
  flex: 0 0 80%;
  scroll-snap-align: center;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 720px) {
  .shot { flex: 1; width: 100%; }
}
.shot img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.shot:hover img {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -15px rgba(212, 175, 55, 0.15),
              0 20px 40px -15px rgba(0, 0, 0, 0.7);
}
.shot figcaption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* Legacy: pure-CSS phone mock (kept as a fallback — no longer used in
   index.html now that real screenshots are wired up). */
.phone-mock {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 9 / 18;
  border-radius: 36px;
  background: linear-gradient(160deg, #181818 0%, #0A0A0A 100%);
  border: 1px solid var(--border);
  padding: 18px 14px;
  box-shadow: 0 30px 60px -20px rgba(212, 175, 55, 0.18),
              0 10px 30px -10px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}
.phone-mock::before {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 6px;
  background: #0a0f18;
  border-radius: 3px;
}
.phone-mock-body {
  margin-top: 18px;
  height: calc(100% - 18px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone-card {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: 12px 14px;
}
.phone-card .pc-title { font-size: 13px; font-weight: 700; }
.phone-card .pc-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.phone-card.alt {
  background: rgba(255, 190, 11, 0.04);
  border-color: rgba(255, 190, 11, 0.25);
}
.phone-card.alt .pc-title { color: var(--warning); }
.phone-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
}
.phone-row .pr-label { color: var(--text-muted); }
.phone-row .pr-value { color: var(--text); font-weight: 600; }
.phone-pill {
  display: inline-block;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--primary);
  letter-spacing: 0.4px;
}

/* Section heading */
.section {
  padding: 48px 0;
}
.section-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.4px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 32px;
  max-width: 640px;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .feature-grid { grid-template-columns: 1fr 1fr 1fr; } }
/* Glass material — iOS-style frosted panels.
   The semi-transparent dark fill + backdrop-filter blurs whatever's
   behind the card (the bg image, drifting smoke). The inset white
   top-edge shadow is the subtle highlight that sells the "glass" feel. */
.feature {
  background: rgba(24, 24, 24, 0.38);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(212, 175, 55, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.feature-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease,
              box-shadow 0.3s ease;
}
.feature:hover .feature-icon {
  transform: scale(1.15) rotate(-6deg);
  background: rgba(212, 175, 55, 0.22);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}
.feature h3 { margin: 0 0 6px; font-size: 17px; }
.feature p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* How it works steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .steps { grid-template-columns: 1fr 1fr 1fr; } }
.step {
  background: rgba(24, 24, 24, 0.38);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 22px;
  position: relative;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(212, 175, 55, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.step-num {
  position: absolute; top: 18px; right: 18px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: #0A0A0A;
  font-weight: 800;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
}
.step:hover .step-num {
  transform: scale(1.18) rotate(6deg);
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.55);
}
.step h3 { margin: 0 0 6px; font-size: 17px; padding-right: 42px; }
.step p { color: var(--text-muted); font-size: 14px; margin: 0; }

/* Pricing tiers */
/* Pricing tiers
   Mobile: horizontal scroll-snap carousel (swipe through Free / Pro / VIP).
   ≥800px: 3-column grid, all visible. */
.tiers {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 20px 16px;
  margin: 0 -20px;
  scroll-padding: 0 20px;
}
.tiers::-webkit-scrollbar { display: none; }
.tier {
  flex: 0 0 85%;
  scroll-snap-align: center;
  max-width: 360px;
}
@media (min-width: 800px) {
  .tiers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    overflow: visible;
    padding: 0;
    margin: 0;
  }
  .tier { flex: 1; max-width: none; }
}
.tier {
  background: rgba(24, 24, 24, 0.38);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.tier:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(212, 175, 55, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.tier.recommended {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(212, 175, 55, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.tier-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.tier.recommended .tier-label { color: var(--primary); }
.tier-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}
.tier-tag {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.tier ul {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  font-size: 14px;
}
.tier li {
  padding: 6px 0 6px 22px;
  position: relative;
  color: var(--text);
}
.tier li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 6px;
  color: var(--primary);
  font-weight: 800;
}
.tier-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
}

/* FAQ teaser */
.faq-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) { .faq-teaser { grid-template-columns: 1fr 1fr; } }
.faq-q {
  background: rgba(24, 24, 24, 0.38);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.faq-q:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.25);
}
.faq-q h3 { margin: 0 0 4px; font-size: 15px; }
.faq-q p { margin: 0; font-size: 14px; color: var(--text-muted); }

/* ─────────────────────────────────────────────────────────────────────
   Mobile layout overrides (< 880px / < 720px / < 800px)
   - Hero: text full-width, phone screenshot peeks ~30% from the right
   - Screenshot showcase: horizontal swipe carousel
   - Pricing tiers: horizontal swipe carousel
   All carousels use CSS scroll-snap — no JS required, native touch feel.
   ───────────────────────────────────────────────────────────────────── */

@media (max-width: 879px) {
  /* Mobile: hide the hero screenshot entirely — the "See it in action"
     carousel right below shows the same garage shot anyway, so the hero
     stays clean and the headline gets full width. */
  .hero {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
    padding: 28px 0 32px;
  }
  .hero > div:first-child {
    padding-right: 0;
  }
  .hero-shot {
    display: none;
  }
  .hero h1 {
    font-size: 34px;
  }
  .hero .hero-sub {
    font-size: 16px;
    margin-bottom: 22px;
  }
}

/* Screenshot showcase as a horizontal swipe carousel on mobile.
   Each card is 78% of viewport, so the next card peeks in from the
   right as a swipe affordance. */
@media (max-width: 719px) {
  .shot-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 4px 20px 12px;
    margin: 0 -20px;
    scrollbar-width: none;
  }
  .shot-grid::-webkit-scrollbar { display: none; }
  .shot {
    flex: 0 0 78%;
    max-width: 280px;
    scroll-snap-align: center;
  }
}

/* Pricing tiers as a swipe carousel on narrower-than-tablet screens. */
@media (max-width: 799px) {
  .tiers {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 4px 20px 12px;
    margin: 0 -20px;
    scrollbar-width: none;
  }
  .tiers::-webkit-scrollbar { display: none; }
  .tier {
    flex: 0 0 82%;
    max-width: 320px;
    scroll-snap-align: center;
  }
}
