/* QR Scanner — Landing page (mobile-first) */
:root {
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --bg: #f8f9fe;
  --bg-elevated: #ffffff;
  --text: #0f1228;
  --text-muted: #5a6178;
  --line: rgba(15, 18, 40, 0.08);
  --shadow: 0 18px 50px rgba(15, 18, 40, 0.08);
  --shadow-sm: 0 8px 24px rgba(15, 18, 40, 0.06);
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --accent-1: #6d4aff;
  --accent-2: #00c6ff;
  --accent-3: #7b61ff;
  --gradient-hero: linear-gradient(135deg, #6d4aff 0%, #00c6ff 50%, #7b61ff 100%);
  --gradient-soft: linear-gradient(180deg, rgba(109, 74, 255, 0.12), transparent 55%);
  --focus: 0 0 0 3px rgba(109, 74, 255, 0.45);
  --header-h: 4rem;
}

[data-theme="dark"] {
  --bg: #0a0b12;
  --bg-elevated: #12131f;
  --text: #f0f2ff;
  --text-muted: #a0a6bf;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 10px 32px rgba(0, 0, 0, 0.35);
  --gradient-soft: linear-gradient(180deg, rgba(109, 74, 255, 0.25), transparent 50%);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

a:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 0.35rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--bg-elevated);
  border-radius: 0.5rem;
}
.skip-link:focus {
  left: 0.5rem;
  outline: none;
  box-shadow: var(--focus);
}

.bg-gradient {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--gradient-soft);
}

.container {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section {
  padding-block: 4.5rem;
}
.section--muted {
  background: color-mix(in srgb, var(--bg-elevated) 88%, var(--accent-1) 2%);
  border-block: 1px solid var(--line);
}
.section__head {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto 3.5rem;
}
.section__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.section__subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-1);
  margin: 0 0 0.75rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 75%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  flex-wrap: wrap;
}
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  cursor: pointer;
  padding: 0.45rem 0.55rem;
  margin-right: 0.25rem;
  transition: background 0.2s, border-color 0.2s;
}
.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child {
  transform: translateY(5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child {
  transform: translateY(-5px) rotate(-45deg);
}
.nav-toggle:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}
.nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 40;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1.25rem 1rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  animation: navIn 0.2s ease;
}
.nav--open {
  display: flex;
}
@keyframes navIn {
  from {
    opacity: 0.85;
    transform: translateY(-0.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  padding: 0.6rem 0.25rem;
  border-radius: 0.5rem;
}
.nav__link:hover,
.nav__link:focus-visible {
  color: var(--text);
  background: color-mix(in srgb, var(--accent-1) 6%, transparent);
}
@media (min-width: 60rem) {
  .nav-toggle {
    display: none;
  }
  .nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    animation: none;
  }
  .nav--open {
    display: flex;
  }
  .nav__link {
    padding: 0.25rem 0;
  }
}
.nav-backdrop {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-h);
  bottom: 0;
  z-index: 30;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(1px);
}
.nav-backdrop--visible {
  display: block;
}
@media (min-width: 60rem) {
  .nav-backdrop,
  .nav-backdrop--visible {
    display: none !important;
  }
}
body.nav-locked {
  overflow: hidden;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
}
.logo__mark {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  background: var(--gradient-hero);
  box-shadow: var(--shadow-sm);
}
.logo--footer .logo__mark {
  width: 1.5rem;
  height: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  font: inherit;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn--sm {
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
}
.btn--primary {
  background: var(--gradient-hero);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(109, 74, 255, 0.35);
}
.btn--ghost {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--line);
}
.btn--ghost:hover {
  border-color: color-mix(in srgb, var(--accent-1) 50%, var(--line));
}
.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.btn-icon:hover {
  border-color: var(--accent-1);
}

.theme-toggle__icon--moon {
  display: none;
}
[data-theme="dark"] .theme-toggle__icon--sun {
  display: none;
}
[data-theme="dark"] .theme-toggle__icon--moon {
  display: block;
}
.theme-toggle__icon--sun,
.theme-toggle__icon--moon {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
}
.theme-toggle__icon--sun {
  background: radial-gradient(circle at 30% 30%, #ffeaa7, #f39c12);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4) inset;
}
.theme-toggle__icon--moon {
  background: linear-gradient(135deg, #dfe6ff, #8b9cff);
  box-shadow: -4px 0 0 0 #b8c0ff inset;
}

/* Store buttons */
.btn--store {
  background: #111;
  color: #fff;
  padding: 0.65rem 1.1rem 0.65rem 0.75rem;
  border-radius: 0.75rem;
  min-width: 10rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
}
.btn--store:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}
.btn--store--secondary {
  background: #000;
  border: 1px solid #333;
}
.store-badge {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
  border-radius: 0.25rem;
  margin-right: 0.1rem;
}
.store-badge--play {
  background: linear-gradient(135deg, #3ddc84, #0f9d58);
  position: relative;
}
.store-badge--play::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.32rem 0 0.32rem 0.55rem;
  border-color: transparent transparent transparent #fff;
  transform: translateX(0.05rem);
}
.store-badge--apple {
  background: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M16.1 1.2c-1.2.1-2.5.8-3.3 1.7-.7.7-1.3 1.8-1.1 2.8 1.2 0 2.4-.5 3.1-1.2.7-.7 1.2-1.8 1.3-2.3zm2.1 3.1c-1.8 0-3.2.7-4.1.7-.9 0-2.3-.6-3.7-.5-1.9.1-3.5 1.1-4.4 2.7-1.8 3.1-.4 7.2 1.1 9.3.7 1.1 1.4 2.1 2.3 2.1 1 0 1.3-.6 2.3-.6 1.1 0 1.3.5 2.2.5 1 0 1.6-1.1 2.1-1.8.4-.5.5-.8.8-1.2-.2-.1-1.7-.6-1.7-2.1 0-1.3 1-1.9 1.1-1.9-.6-.7-1.2-1.1-1.3-1.1z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M16.1 1.2c-1.2.1-2.5.8-3.3 1.7-.7.7-1.3 1.8-1.1 2.8 1.2 0 2.4-.5 3.1-1.2.7-.7 1.2-1.8 1.3-2.3zm2.1 3.1c-1.8 0-3.2.7-4.1.7-.9 0-2.3-.6-3.7-.5-1.9.1-3.5 1.1-4.4 2.7-1.8 3.1-.4 7.2 1.1 9.3.7 1.1 1.4 2.1 2.3 2.1 1 0 1.3-.6 2.3-.6 1.1 0 1.3.5 2.2.5 1 0 1.6-1.1 2.1-1.8.4-.5.5-.8.8-1.2-.2-.1-1.7-.6-1.7-2.1 0-1.3 1-1.9 1.1-1.9-.6-.7-1.2-1.1-1.3-1.1z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}
.store-badge__line {
  display: block;
  line-height: 1.15;
}
.store-badge__line--small {
  font-size: 0.6rem;
  opacity: 0.9;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}
.store-badge__line--large {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Hero */
.hero {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}
.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 60rem) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}
.hero__title {
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}
.hero__lede {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 32rem;
}
.hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
@media (min-width: 32rem) {
  .hero__ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.hero__meta {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
}
.dot {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  margin-right: 0.2rem;
  vertical-align: middle;
}
.dot--ok {
  background: #2ecc71;
}
.hero__visual {
  display: flex;
  justify-content: center;
  padding-block: 0.5rem;
}

/* Phone + app UI */
.phone {
  position: relative;
  width: min(18rem, 100%);
  aspect-ratio: 9 / 19;
  background: linear-gradient(145deg, #1a1c2e, #0e0f18);
  border-radius: 2.2rem;
  padding: 0.5rem;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transform: perspective(1000px) rotateY(-6deg) rotateX(4deg);
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: perspective(1000px) rotateY(-6deg) rotateX(4deg) translateY(0);
  }
  50% {
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg) translateY(-0.4rem);
  }
}
.phone--sm {
  width: 11rem;
  border-radius: 1.4rem;
  padding: 0.35rem;
  transform: none;
  animation: none;
  margin-inline: auto;
}
.phone__notch {
  position: absolute;
  top: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 0.5rem;
  background: #000;
  border-radius: 0 0 0.4rem 0.4rem;
  z-index: 2;
}
.phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 1.8rem;
  overflow: hidden;
  background: var(--bg-elevated);
  position: relative;
}
.phone--sm .phone__screen {
  border-radius: 1.1rem;
}
.app-ui {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(180deg, #eef0ff 0%, #f8f9fe 100%);
}
[data-theme="dark"] .app-ui {
  background: linear-gradient(180deg, #1e2035 0%, #12131f 100%);
}
.app-ui--compact {
  padding: 1.75rem 0.6rem 0.75rem;
  font-size: 0.75rem;
}
.app-ui--scanner .app-ui__viewfinder {
  border-color: var(--accent-1);
  box-shadow: 0 0 0 4px rgba(109, 74, 255, 0.2);
}
.app-ui--result .app-ui__result-title {
  color: var(--accent-1);
  font-weight: 600;
  text-align: center;
  font-size: 0.85rem;
  margin: 0.5rem 0;
  word-break: break-all;
  padding: 0 0.5rem;
}
.app-ui--history .app-ui__list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  width: 100%;
  font-size: 0.65rem;
  color: var(--text);
}
.app-ui--gen .app-ui__qr {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0.4rem 0 0.2rem;
  background-image: repeating-linear-gradient(
      0deg,
      #111,
      #111 2px,
      #fff 2px,
      #fff 4px
    ),
    repeating-linear-gradient(90deg, #111, #111 2px, #fff 2px, #fff 4px);
  background-blend-mode: difference;
  border-radius: 0.3rem;
}
.app-ui--compact .app-ui__qr {
  width: 3.2rem;
  height: 3.2rem;
}
.app-ui__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.app-ui__time {
  font-variant-numeric: tabular-nums;
}
.app-ui__pill {
  background: var(--text);
  color: #fff;
  font-size: 0.6rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}
.app-ui__viewfinder {
  flex: 1;
  width: 72%;
  max-height: 11rem;
  border: 2px dashed var(--line);
  border-radius: 1rem;
  position: relative;
  margin: 0.5rem 0 1rem;
  background: rgba(109, 74, 255, 0.04);
}
.app-ui__viewfinder--sm {
  max-height: 6.5rem;
  width: 80%;
  margin: 0.3rem 0 0.4rem;
}
.app-ui__corner {
  position: absolute;
  width: 0.9rem;
  height: 0.9rem;
  border: 2px solid var(--accent-1);
}
.app-ui__corner--tl {
  top: 0.4rem;
  left: 0.4rem;
  border-right: none;
  border-bottom: none;
  border-radius: 0.3rem 0 0 0;
}
.app-ui__corner--tr {
  top: 0.4rem;
  right: 0.4rem;
  border-left: none;
  border-bottom: none;
  border-radius: 0 0.3rem 0 0;
}
.app-ui__corner--bl {
  bottom: 0.4rem;
  left: 0.4rem;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 0.3rem;
}
.app-ui__corner--br {
  bottom: 0.4rem;
  right: 0.4rem;
  border-left: none;
  border-top: none;
  border-radius: 0 0 0.3rem 0;
}
.app-ui__hint {
  margin: 0;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
}
.app-ui--compact .app-ui__hint {
  font-size: 0.6rem;
  margin-top: auto;
}
.app-ui__actions {
  display: flex;
  gap: 0.3rem;
  margin: 0.3rem 0 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}
.app-ui__chip {
  background: var(--text);
  color: #fff;
  font-size: 0.55rem;
  padding: 0.2rem 0.4rem;
  border-radius: 0.3rem;
}
.app-ui__row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
  gap: 0.5rem;
}
.app-ui__row span:last-child {
  color: var(--text-muted);
  font-size: 0.6rem;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 40rem) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64rem) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.card--feature .card__icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}
.card__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Carousel */
.carousel__track-wrap {
  overflow: hidden;
  margin-bottom: 1rem;
  padding-bottom: 0.25rem;
}
.carousel__track {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0.5rem 0 1.5rem;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-1) var(--line);
}
.carousel__slide {
  flex: 0 0 min(16rem, 80vw);
  scroll-snap-align: center;
}
.shot {
  margin: 0;
  text-align: center;
}
.shot__cap {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-bottom: 0.5rem;
}
.carousel__btn {
  min-width: 2.75rem;
  min-height: 2.75rem;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
}
.carousel__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--line);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel__dot[aria-selected="true"] {
  background: var(--accent-1);
  transform: scale(1.2);
}
.carousel__dot:focus-visible {
  box-shadow: var(--focus);
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 50rem) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}
.step {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 4.25rem;
  overflow: hidden;
}
.step__num {
  position: absolute;
  left: 1.5rem;
  top: 1.4rem;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 0.6rem;
  color: #fff;
  background: var(--gradient-hero);
  box-shadow: var(--shadow-sm);
}
.step__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
}
.step__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Benefits */
.benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  max-width: 48rem;
  margin-inline: auto;
}
@media (min-width: 45rem) {
  .benefit-list {
    grid-template-columns: 1fr 1fr;
  }
}
.benefit {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.benefit__check {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-1) 15%, var(--bg-elevated));
  color: var(--accent-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.benefit__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
}
.benefit__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 50rem) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.quote {
  margin: 0;
  padding: 1.5rem;
}
.quote__text {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.5;
  color: var(--text);
}
.quote__by {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--bg-elevated);
  border-block: 1px solid var(--line);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.08;
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  padding-block: 1rem;
}
.cta-band__title {
  font-size: clamp(1.6rem, 3.5vw, 2.1rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}
.cta-band__text {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.cta-band__ctas {
  justify-content: center;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.site-footer__inner {
  text-align: center;
}
.footer-links {
  list-style: none;
  margin: 1.25rem 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
  font-size: 0.95rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}
.site-footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Legal subpages (shared) */
.legal {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 2rem 0 4rem;
}
.legal__inner {
  max-width: 40rem;
  margin-inline: auto;
}
.legal h1 {
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}
.legal p,
.legal li {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.legal a {
  color: var(--accent-1);
  text-decoration: underline;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .phone {
    animation: none;
  }
  .nav {
    animation: none;
  }
  .card:hover,
  .btn--primary:hover,
  .btn--store:hover {
    transform: none;
  }
  .carousel__track {
    scroll-behavior: auto;
  }
}
