/* ============================================================
   ZYGO-RIDE — styles.css
   Architecture: variables → reset → layout → components → responsive
   ============================================================ */

/* ──────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES
   ────────────────────────────────────────── */
:root {
  /* Brand */
  --clr-primary:     #7952c1;
  --clr-secondary:   #3d2c75;
  --clr-accent:      #311b63;
  --clr-primary-lt:  #a87fe8;
  --clr-primary-xl:  #c9a8ff;
  --clr-primary-dim: rgba(121, 82, 193, 0.14);

  /* Dark theme (default) */
  --clr-bg:          #0a0612;
  --clr-surface:     #130e24;
  --clr-surface-2:   #1a1333;
  --clr-text:        #f0ecff;
  --clr-text-2:      #c4b8e8;
  --clr-muted:       #6b5f8a;
  --clr-muted-2:     #9485ba;
  --clr-border:      rgba(121, 82, 193, 0.18);
  --blob-color-1:    rgba(121, 82, 193, 0.18);
  --blob-color-2:    rgba(61, 44, 117, 0.14);
  --store-badge-bg:  #1a1333;

  /* Typography */
  --font-display:    'Bricolage Grotesque', sans-serif;
  --font-body:       'Epilogue', sans-serif;

  /* Radii */
  --radius:          18px;
  --radius-sm:       10px;
  --radius-pill:     999px;

  /* Transitions */
  --tr:              0.24s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --section-pad:     clamp(80px, 10vw, 130px);
  --container-max:   1160px;
  --container-pad:   clamp(20px, 5vw, 60px);

  /* Nav */
  --nav-h:           68px;
}

[data-theme="light"] {
  --clr-bg:          #f5f0ff;
  --clr-surface:     #ffffff;
  --clr-surface-2:   #f0ebff;
  --clr-text:        #1a0f3c;
  --clr-text-2:      #3d2c75;
  --clr-muted:       #8070aa;
  --clr-muted-2:     #5a4490;
  --clr-border:      rgba(121, 82, 193, 0.2);
  --blob-color-1:    rgba(121, 82, 193, 0.08);
  --blob-color-2:    rgba(61, 44, 117, 0.06);
  --store-badge-bg:  #1a0f3c;
}

/* ──────────────────────────────────────────
   2. RESET + BASE
   ────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  overflow-x: hidden;
  transition: background-color var(--tr), color var(--tr);
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: var(--clr-primary-lt);
  text-decoration: none;
  transition: color var(--tr);
}
a:hover {
  color: var(--clr-primary-xl);
}

ul[role="list"] {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input,
select,
textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--clr-text);
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color var(--tr), box-shadow var(--tr);
  appearance: none;
  -webkit-appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--clr-muted);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(121, 82, 193, 0.2);
}

:focus-visible {
  outline: 2px solid var(--clr-primary-lt);
  outline-offset: 3px;
}

/* ──────────────────────────────────────────
   3. LAYOUT HELPERS
   ────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--section-pad);
}

.section__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--clr-text-2);
  max-width: 540px;
  margin-inline: auto;
}

/* ──────────────────────────────────────────
   4. SCROLL REVEAL
   ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ──────────────────────────────────────────
   5. AMBIENT BLOBS
   ────────────────────────────────────────── */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.blob--1 {
  width: 600px;
  height: 600px;
  background: var(--blob-color-1);
  top: -200px;
  left: -200px;
  animation: blobDrift 18s ease-in-out infinite alternate;
}
.blob--2 {
  width: 500px;
  height: 500px;
  background: var(--blob-color-2);
  bottom: 20%;
  right: -150px;
  animation: blobDrift 22s ease-in-out infinite alternate-reverse;
}
.blob--3 {
  width: 400px;
  height: 400px;
  background: var(--blob-color-1);
  top: 60%;
  left: 30%;
  animation: blobDrift 26s ease-in-out infinite alternate;
}

@keyframes blobDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60px, 40px) scale(1.1); }
}

/* Ensure content is above blobs */
header, main, footer {
  position: relative;
  z-index: 1;
}

/* ──────────────────────────────────────────
   6. NAVIGATION
   ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--tr), box-shadow var(--tr);
}
.nav.scrolled {
  background: rgba(10, 6, 18, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--clr-border);
}
[data-theme="light"] .nav.scrolled {
  background: rgba(245, 240, 255, 0.88);
}

.nav__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--clr-text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav__logo:hover {
  color: var(--clr-primary-lt);
}

.nav__links {
  display: none;
  list-style: none;
  gap: 0.25rem;
  margin-left: auto;
}

.nav__link {
  color: var(--clr-text-2);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  transition: color var(--tr), background var(--tr);
}
.nav__link:hover {
  color: var(--clr-text);
  background: var(--clr-primary-dim);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.nav__theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-pill);
  color: var(--clr-text-2);
  transition: color var(--tr), background var(--tr);
}
.nav__theme-toggle:hover {
  color: var(--clr-text);
  background: var(--clr-primary-dim);
}

/* Show sun in dark mode, moon in light mode */
[data-theme="dark"]  .icon-sun  { display: block; }
[data-theme="dark"]  .icon-moon { display: none; }
[data-theme="light"] .icon-sun  { display: none; }
[data-theme="light"] .icon-moon { display: block; }

.nav__cta {
  display: none;
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--tr);
}
.nav__hamburger:hover {
  background: var(--clr-primary-dim);
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr);
}
.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem var(--container-pad);
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__mobile[aria-hidden="false"] {
  max-height: 400px;
  padding-block: 1.5rem;
}
.nav__mobile[aria-hidden="true"] {
  max-height: 0;
  padding-block: 0;
}
.nav__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nav__mobile .nav__link {
  display: block;
  padding: 0.6rem 0.75rem;
  font-size: 1rem;
}

/* ──────────────────────────────────────────
   7. BUTTONS
   ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.5rem;
  transition: transform var(--tr), box-shadow var(--tr), opacity var(--tr);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  color: #fff;
  box-shadow: 0 4px 20px rgba(121, 82, 193, 0.35);
}
.btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(121, 82, 193, 0.5);
}
.btn--primary:active {
  transform: translateY(0);
}

.btn--sm {
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem;
}

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

/* Store badges */
.store-badge {
  display: inline-block;
  color: var(--store-badge-bg);
  border-radius: 7px;
  transition: transform var(--tr), box-shadow var(--tr);
}
.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(121, 82, 193, 0.3);
}
.store-badge__bg {
  fill: var(--store-badge-bg);
}

/* ──────────────────────────────────────────
   8. HERO
   ────────────────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: var(--section-pad);
  overflow: hidden;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-primary-lt);
  background: var(--clr-primary-dim);
  border: 1px solid var(--clr-border);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 1rem;
}

.hero__eyebrow-coming {
  color: var(--clr-muted-2);
  font-weight: 400;
}

.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--clr-text);
}

.hero__tagline {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--clr-text-2);
  max-width: 480px;
  margin-top: 1.25rem;
  line-height: 1.7;
}

.hero__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero__stat {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.1rem;
  min-width: 90px;
  text-align: center;
}

.hero__stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--clr-primary-xl);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero__stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--clr-muted-2);
  font-weight: 500;
}

/* Phone mockups (hidden on mobile, shown 900px+) */
.hero__phones {
  display: none;
  position: relative;
  height: 560px;
  justify-content: center;
  flex-shrink: 0;
}

.hero__phone {
  position: absolute;
}

.hero__phone--main {
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.hero__phone--left {
  z-index: 2;
  left: 0;
  top: 60px;
  transform: rotate(-6deg);
  opacity: 0.8;
}

.hero__phone--right {
  z-index: 2;
  right: 0;
  top: 60px;
  transform: rotate(6deg);
  opacity: 0.8;
}

/* Phone frame */
.phone__frame {
  width: 200px;
  height: 420px;
  background: var(--clr-surface);
  border: 2px solid var(--clr-border);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--clr-border);
  position: relative;
}

.phone__frame--main {
  width: 220px;
  height: 460px;
  box-shadow: 0 30px 80px rgba(121, 82, 193, 0.3), 0 0 0 1px var(--clr-border);
}

.phone__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.phone__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 100%;
  color: var(--clr-muted);
  font-size: 0.7rem;
  text-align: center;
  padding: 1rem;
  background: var(--clr-surface-2);
  position: absolute;
  top: 0;
  left: 0;
}

/* Floating notifications */
.hero__notif {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  min-width: 190px;
  z-index: 10;
  animation: notifFloat 3s ease-in-out infinite alternate;
}

.hero__notif--top {
  top: -10px;
  right: -30px;
}
.hero__notif--bottom {
  bottom: 30px;
  left: -30px;
  animation-delay: 1.5s;
}

@keyframes notifFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}

.hero__notif-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--clr-primary-dim);
  color: var(--clr-primary-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__notif-icon--green {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
}

.hero__notif-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.hero__notif-sub {
  font-size: 0.7rem;
  color: var(--clr-muted-2);
}

/* ──────────────────────────────────────────
   9. TRUST BAR
   ────────────────────────────────────────── */
.trust-bar {
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-surface);
  padding-block: 1rem;
  overflow: hidden;
  position: relative;
}

.trust-bar::before,
.trust-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.trust-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--clr-surface), transparent);
}
.trust-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--clr-surface), transparent);
}

.trust-bar__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-text-2);
  white-space: nowrap;
  padding: 0.25rem 0;
  color: var(--clr-muted-2);
}

.trust-bar__item svg {
  color: var(--clr-primary-lt);
  flex-shrink: 0;
}

/* ──────────────────────────────────────────
   10. FEATURES / BENTO
   ────────────────────────────────────────── */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.bento__card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
  position: relative;
  overflow: hidden;
}

.bento__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(121, 82, 193, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--tr);
  pointer-events: none;
}

.bento__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(121, 82, 193, 0.2);
  border-color: rgba(121, 82, 193, 0.4);
}

.bento__card:hover::before {
  opacity: 1;
}

.bento__card-icon {
  width: 44px;
  height: 44px;
  background: var(--clr-primary-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary-lt);
  margin-bottom: 1rem;
}

.bento__card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--clr-text);
  margin-bottom: 0.5rem;
}

.bento__card p {
  font-size: 0.92rem;
  color: var(--clr-text-2);
  line-height: 1.65;
}

.bento__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.chip {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  background: var(--clr-primary-dim);
  color: var(--clr-primary-xl);
  border: 1px solid var(--clr-border);
}

/* Route preview widget */
.route-preview {
  margin-top: 1.25rem;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
}

.route-preview__stop {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.2rem 0;
}

.route-preview__line {
  width: 2px;
  height: 16px;
  background: var(--clr-border);
  margin-left: 8px;
}

.route-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.route-dot--from { background: var(--clr-primary-lt); }
.route-dot--to   { background: #4ade80; }

.route-preview__addr {
  font-size: 0.8rem;
  color: var(--clr-text-2);
}

.route-preview__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.route-preview__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-primary-xl);
}

.route-preview__pill {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  color: var(--clr-muted-2);
}

/* Schedule preview widget */
.bento__card-split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bento__card-text {
  flex: 1;
}

.schedule-preview {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.schedule-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.schedule-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.schedule-dot--green  { background: #4ade80; }
.schedule-dot--purple { background: var(--clr-primary-lt); }

.schedule-label {
  font-size: 0.78rem;
  color: var(--clr-text-2);
  flex: 1;
}

.schedule-time {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--clr-muted-2);
}

/* ──────────────────────────────────────────
   11. HOW IT WORKS
   ────────────────────────────────────────── */
.hiw__tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-pill);
  padding: 0.3rem;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.hiw__tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  color: var(--clr-muted-2);
  transition: background var(--tr), color var(--tr);
}

.hiw__tab--active,
.hiw__tab[aria-selected="true"] {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  color: #fff;
}

.hiw__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hiw__panel {
  flex: 1;
}

.hiw__steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hiw__step {
  display: flex;
  gap: 1.25rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--tr), border-color var(--tr);
}

.hiw__step:hover,
.hiw__step--active {
  background: var(--clr-surface);
  border-color: var(--clr-border);
}

.hiw__step--active .hiw__step-num {
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  color: #fff;
}

.hiw__step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--clr-primary-lt);
  width: 36px;
  height: 36px;
  background: var(--clr-primary-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--tr), color var(--tr);
}

.hiw__step-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.3rem;
}

.hiw__step-body p {
  font-size: 0.88rem;
  color: var(--clr-text-2);
  line-height: 1.6;
}

.hiw__phone {
  display: none;
}

/* ──────────────────────────────────────────
   12. SCREENSHOTS
   ────────────────────────────────────────── */
.screenshots__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.screenshot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.screenshot figcaption {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--clr-muted-2);
  text-align: center;
}

.screenshot .phone__frame {
  width: 100%;
  max-width: 160px;
  height: 300px;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}

.screenshot:hover .phone__frame {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(121, 82, 193, 0.25);
  border-color: rgba(121, 82, 193, 0.4);
}

/* ──────────────────────────────────────────
   13. SUPPORT
   ────────────────────────────────────────── */
.support__grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.support__cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.support__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}

.support__card-icon {
  width: 40px;
  height: 40px;
  background: var(--clr-primary-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary-lt);
  flex-shrink: 0;
}

.support__card-label {
  font-size: 0.78rem;
  color: var(--clr-muted-2);
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.support__card-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--clr-text);
}

/* FAQ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq__item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--clr-surface);
}

.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text);
  background: none;
  transition: color var(--tr);
}

.faq__trigger:hover {
  color: var(--clr-primary-lt);
}

.faq__chevron {
  flex-shrink: 0;
  transition: transform var(--tr);
  color: var(--clr-muted-2);
}

.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
}

.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.is-open .faq__body {
  max-height: 300px;
}

.faq__body p {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.88rem;
  color: var(--clr-text-2);
  line-height: 1.65;
}

/* Contact form */
.contact-form-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 0.4rem;
}

.contact-form-card__sub {
  font-size: 0.88rem;
  color: var(--clr-muted-2);
  margin-bottom: 1.75rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text-2);
}

.form-group label span {
  color: var(--clr-primary-lt);
}

.form-error {
  font-size: 0.75rem;
  color: #f87171;
  min-height: 1em;
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--clr-muted);
  text-align: center;
  margin-top: 0.75rem;
}

.form-privacy a {
  color: var(--clr-primary-lt);
}

/* Form success state */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
  color: #4ade80;
}

.form-success h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text);
}

.form-success p {
  font-size: 0.88rem;
  color: var(--clr-text-2);
}

/* ──────────────────────────────────────────
   14. CTA BANNER
   ────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-secondary) 50%, var(--clr-primary) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.cta-banner__sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.cta-banner .hero__stores {
  justify-content: center;
  margin-top: 0;
}

.cta-banner .store-badge__bg {
  fill: rgba(0, 0, 0, 0.3);
}
.cta-banner .store-badge {
  color: rgba(0, 0, 0, 0.3);
}
.cta-banner .store-badge:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

/* ──────────────────────────────────────────
   15. FOOTER
   ────────────────────────────────────────── */
.footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  padding-top: 3.5rem;
  padding-bottom: 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--clr-border);
}

.footer__brand {
  max-width: 280px;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--clr-muted-2);
  line-height: 1.6;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer__socials {
  display: flex;
  gap: 0.6rem;
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted-2);
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}

.footer__social:hover {
  background: var(--clr-primary-dim);
  color: var(--clr-primary-lt);
  border-color: rgba(121, 82, 193, 0.4);
}

.footer__nav-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-muted-2);
  margin-bottom: 0.9rem;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
}

.footer__nav a {
  font-size: 0.88rem;
  color: var(--clr-text-2);
  transition: color var(--tr);
}

.footer__nav a:hover {
  color: var(--clr-primary-lt);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--clr-muted);
}

.footer__bottom-links {
  display: flex;
  gap: 1.25rem;
}

.footer__bottom-links a {
  color: var(--clr-muted);
  transition: color var(--tr);
}
.footer__bottom-links a:hover {
  color: var(--clr-primary-lt);
}

/* ──────────────────────────────────────────
   16. BACK TO TOP
   ────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(121, 82, 193, 0.4);
  transition: transform var(--tr), box-shadow var(--tr), opacity var(--tr);
  opacity: 0;
}

.back-to-top:not([hidden]) {
  opacity: 1;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(121, 82, 193, 0.6);
}

/* ──────────────────────────────────────────
   17. PROSE (privacy / terms pages)
   ────────────────────────────────────────── */
.prose {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  padding-block: var(--section-pad);
}

.prose h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--clr-text);
  margin-bottom: 0.5rem;
}

.prose .prose__updated {
  font-size: 0.85rem;
  color: var(--clr-muted-2);
  margin-bottom: 3rem;
  display: block;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-text);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.prose p,
.prose li {
  font-size: 0.95rem;
  color: var(--clr-text-2);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.prose ul {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose a {
  color: var(--clr-primary-lt);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ──────────────────────────────────────────
   18. BREAKPOINT: 600px
   ────────────────────────────────────────── */
@media (min-width: 600px) {

  .nav__cta {
    display: inline-flex;
  }

  .bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento__card--wide {
    grid-column: span 2;
  }

  .bento__card--full {
    grid-column: span 2;
  }

  .screenshots__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ──────────────────────────────────────────
   19. BREAKPOINT: 900px
   ────────────────────────────────────────── */
@media (min-width: 900px) {

  .nav__links {
    display: flex;
    margin-left: auto;
  }

  .nav__actions {
    margin-left: 0;
  }

  .nav__hamburger {
    display: none;
  }

  /* Hero */
  .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }

  .hero__content {
    flex: 1;
    max-width: 520px;
  }

  .hero__phones {
    display: flex;
    flex: 0 0 400px;
    width: 400px;
  }

  /* Bento */
  .bento {
    grid-template-columns: repeat(3, 1fr);
  }

  .bento__card--wide {
    grid-column: span 3;
  }

  .bento__card--full {
    grid-column: span 3;
  }

  .bento__card-split {
    flex-direction: row;
    align-items: flex-start;
  }

  /* HIW */
  .hiw__content {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }

  .hiw__panel {
    flex: 1;
  }

  .hiw__phone {
    display: block;
    flex-shrink: 0;
  }

  /* Screenshots */
  .screenshots__grid {
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
  }

  .screenshot--center .phone__frame {
    transform: translateY(-22px);
  }

  .screenshot--center:hover .phone__frame {
    transform: translateY(-28px);
  }

  /* Support */
  .support__grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }

  .support__left {
    flex: 1;
  }

  .support__right {
    flex: 1;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ──────────────────────────────────────────
   20. BREAKPOINT: 1200px
   ────────────────────────────────────────── */
@media (min-width: 1200px) {

  .hero__phones {
    flex: 0 0 480px;
    width: 480px;
    height: 620px;
  }

  .hero__phone--left {
    left: -20px;
  }

  .hero__phone--right {
    right: -20px;
  }

  .phone__frame {
    width: 220px;
    height: 460px;
  }

  .phone__frame--main {
    width: 240px;
    height: 500px;
  }
}

/* ──────────────────────────────────────────
   21. STORE BUTTONS — COMING SOON
   ────────────────────────────────────────── */
.store-btn-img {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: opacity var(--tr), transform var(--tr);
}

.store-btn-img--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(0.2);
  pointer-events: none;
}

.store-btn-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.store-btn-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--clr-primary-xl);
  background: var(--clr-primary-dim);
  border: 1px solid rgba(121, 82, 193, 0.35);
  border-radius: var(--radius-pill);
  padding: 0.15rem 0.6rem;
  line-height: 1.5;
}

.stores-coming-soon-note {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--clr-muted-2);
  margin-bottom: 0.15rem;
}

/* ──────────────────────────────────────────
   22. PRICING CALLOUT SECTION
   ────────────────────────────────────────── */
.pricing-callout {
  background: linear-gradient(135deg, var(--clr-surface) 0%, var(--clr-surface-2) 100%);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.pricing-callout__inner {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.pricing-callout__badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.9rem;
  margin-bottom: 1rem;
}

.pricing-callout__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.pricing-callout__sub {
  font-size: 1rem;
  color: var(--clr-text-2);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.pricing-callout__points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.75rem;
}

.pricing-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text-2);
}

.pricing-point svg {
  color: #4ade80;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────
   23. PAYMENT PREVIEW WIDGET (bento card)
   ────────────────────────────────────────── */
.payment-preview {
  background: var(--clr-surface-2);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-width: 180px;
}

.payment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.payment-row--total {
  border-top: 1px solid var(--clr-border);
  padding-top: 0.55rem;
  margin-top: 0.15rem;
}

.payment-label {
  font-size: 0.8rem;
  color: var(--clr-muted-2);
}

.payment-value {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-2);
}

.payment-value--green {
  color: #4ade80;
}

.payment-value--bold {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.35rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--clr-border);
}

/* ──────────────────────────────────────────
   24. IMAGE QUALITY FIXES (Phase 2)
   ────────────────────────────────────────── */

/* Make <picture> behave like a block so it fills the phone frame */
.phone__frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* Ensure images inside picture render crisply */
.phone__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  image-rendering: auto;
  display: block;
}

/* Screenshots section — single column on very small screens */
@media (max-width: 480px) {
  .screenshots__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .screenshot .phone__frame {
    max-width: 220px;
    height: 380px;
  }
}

/* ──────────────────────────────────────────
   25. REDUCED MOTION
   ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .trust-bar__track {
    animation: none;
  }

  .blob {
    animation: none;
  }

  .hero__notif {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
