/* ============================================================
   FuelHub Landing Page — styles.css  v2.1
   Design system: OLED Dark + Glassmorphism + Aurora
   Typography: Outfit (headings) + Rubik (body)
   Mobile-first · Accessible · No emoji icons
   ============================================================ */

/* ─── Design Tokens ───────────────────────────────────────── */
:root {
  /* Backgrounds — OLED-optimised dark palette */
  --bg-base:       #050912;
  --bg-mid:        #070E18;
  --bg-card:       rgba(255,255,255,0.038);
  --bg-card-solid: #0C1524;
  --bg-card-hover: rgba(255,255,255,0.065);
  --bg-light:      #F4F7FB;

  /* Glass */
  --glass-bg:      rgba(255,255,255,0.042);
  --glass-border:  rgba(255,255,255,0.1);
  --glass-blur:    20px;
  --glass-shadow:  0 8px 40px rgba(0,0,0,0.5);

  /* Premium accent (borders / eyebrows—CTA stays brand green) */
  --champagne:     #C9A962;
  --champagne-dim: rgba(201, 169, 98, 0.22);

  /* Brand */
  --green:         #22C55E;
  --green-d:       #16A34A;
  --green-bright:  #4ADE80;
  --blue:          #3B82F6;
  --yellow:        #EAB308;
  --orange:        #F97316;
  --purple:        #A855F7;

  /* Text */
  --text-primary:   #F1F5F9;
  --text-secondary: #A1ADBD;
  --text-muted:     #7A8BA3;
  --text-dark:      #0F172A;

  /* Glow / Aurora */
  --glow-green:    rgba(34,197,94,0.2);
  --glow-blue:     rgba(59,130,246,0.15);
  --glow-purple:   rgba(168,85,247,0.12);

  /* CTA gradient */
  --cta-grad:      linear-gradient(135deg, #16C155 0%, #22C55E 50%, #4ADE80 100%);
  --cta-glow:      0 0 32px rgba(34,197,94,0.45), 0 4px 16px rgba(34,197,94,0.25);

  /* Borders */
  --border:        rgba(255,255,255,0.07);
  --border-hover:  rgba(255,255,255,0.14);

  /* Spacing */
  --section-gap:   clamp(5rem, 9vw, 8rem);
  --container:     1180px;
  --radius-sm:     0.5rem;
  --radius-md:     0.875rem;
  --radius-lg:     1.25rem;
  --radius-xl:     1.75rem;
  --radius-full:   999px;

  /* Phone */
  --phone-shadow:  0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.07);
  --phone-radius:  2.75rem;

  /* Transitions — 150-300ms per skill guideline */
  --ease:          cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast:        150ms;
  --t-med:         250ms;
  --t-slow:        400ms;
}

/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  color-scheme: dark;
  /* Prevent horizontal scroll without breaking vertical on mobile browsers */
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: 'Rubik', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ─── Skip link ───────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--green); color: #000;
  padding: 0.5rem 1rem; border-radius: var(--radius-sm);
  font-weight: 600; z-index: 9999; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ─── Screen reader only ──────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.hide-mobile { display: none; }
@media (min-width: 700px) { .hide-mobile { display: inline; } }

/* ─── Container ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  border: none;
  cursor: pointer;
  transition:
    transform var(--t-med) var(--ease),
    box-shadow var(--t-med) var(--ease),
    background-color var(--t-fast);
  white-space: nowrap;
  text-decoration: none;
}
.btn:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--cta-grad);
  color: #000;
  font-weight: 700;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--cta-glow);
}
.btn--primary:active { transform: translateY(0); }

.btn--glow { box-shadow: 0 0 0 rgba(34,197,94,0); }
.btn--glow:hover { box-shadow: var(--cta-glow); }

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
}

.btn--lg  { padding: 1rem 2rem; font-size: 1rem; }
.btn--sm  { padding: 0.5rem 1.1rem; font-size: 0.8125rem; }

/* ─── Gradient text ───────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--green-bright) 0%, var(--green) 50%, #86EFAC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── Badge ───────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.badge--cyprus {
  background: rgba(34,197,94,0.1);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.2);
}

/* ─── Fuel Tags ───────────────────────────────────────────── */
.hero__fueltypes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.fuel-tag {
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
}
.fuel-tag--green  { background: rgba(34,197,94,0.1);  color: var(--green);  border-color: rgba(34,197,94,0.2); }
.fuel-tag--blue   { background: rgba(59,130,246,0.1); color: var(--blue);   border-color: rgba(59,130,246,0.2); }
.fuel-tag--yellow { background: rgba(234,179,8,0.1);  color: var(--yellow); border-color: rgba(234,179,8,0.2); }
.fuel-tag--orange { background: rgba(249,115,22,0.1); color: var(--orange); border-color: rgba(249,115,22,0.2); }
.fuel-tag--purple { background: rgba(168,85,247,0.1); color: var(--purple); border-color: rgba(168,85,247,0.2); }

/* ─── Fuel dots (replace emoji) ───────────────────────────── */
.fuel-dot {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.fuel-dot--green  { background: var(--green);  box-shadow: 0 0 8px var(--green); }
.fuel-dot--blue   { background: var(--blue);   box-shadow: 0 0 8px var(--blue); }
.fuel-dot--yellow { background: var(--yellow); box-shadow: 0 0 8px var(--yellow); }
.fuel-dot--orange { background: var(--orange); box-shadow: 0 0 8px var(--orange); }
.fuel-dot--purple { background: var(--purple); box-shadow: 0 0 8px var(--purple); }

/* ─── Sections ────────────────────────────────────────────── */
.section { padding-block: var(--section-gap); }

.section__header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.section__eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.875rem;
  padding: 0.3rem 0.875rem;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.18);
  border-radius: var(--radius-full);
}

.section__eyebrow--champagne {
  color: var(--champagne);
  background: rgba(201, 169, 98, 0.08);
  border-color: var(--champagne-dim);
}

.section__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.875rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-primary);
  letter-spacing: -0.025em;
}

.section__sub {
  margin-top: 1rem;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: var(--text-secondary);
  line-height: 1.75;
}

.section__body {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-top: 1rem;
}

/* ─── Check list ──────────────────────────────────────────── */
.check-list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  background: rgba(34,197,94,0.12);
  border-radius: 50%;
  border: 1.5px solid rgba(34,197,94,0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='%2322C55E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2 6 5 9 10 3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 65%;
}

/* ─── Scroll reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.is-visible     { opacity: 1; transform: none; }
.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; }

/* ─── HEADER — Floating pill ──────────────────────────────── */
.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1100px;
  z-index: 100;
  background: rgba(6,11,21,0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  transition: background var(--t-med), box-shadow var(--t-med);
}
.site-header.scrolled {
  background: rgba(6,11,21,0.95);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 3.5rem;
  padding-inline: 1.25rem;
  min-width: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  flex-shrink: 1;
  min-width: 0;
  transition: color var(--t-fast);
  cursor: pointer;
}
.logo:hover { color: var(--green); }
.logo__icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo__icon svg { width: 100%; height: 100%; }

/* Nav toggle — never shrink or the icon clips inside the pill header */
.nav-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  /* 2.75rem ≈ 44 px — meets touch target without stretching bars */
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  /* padding controls bar length: 44 - 2×10 = 24 px bars */
  padding: 0.625rem;
  border-radius: var(--radius-sm);
  touch-action: manipulation;
  transition: background var(--t-fast);
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }
.nav-toggle:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.nav-toggle__bar {
  display: block; width: 100%; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { opacity: 0; transform: scaleX(0); }

/* Nav menu */
.site-nav { display: none; }
.site-nav__list {
  display: none;
  gap: 0.125rem;
  align-items: center;
}
.site-nav__list a {
  padding: 0.45rem 0.7rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background var(--t-fast);
  cursor: pointer;
}
.site-nav__list a:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }
.site-nav__list a.active { color: var(--green); }

/* Mobile nav overlay */
.site-nav.is-open {
  display: flex;
  position: fixed;
  inset: 5.5rem 1rem 0;
  background: rgba(6,11,21,0.97);
  backdrop-filter: blur(24px);
  z-index: 99;
  padding: 2rem 1.5rem;
  flex-direction: column;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  height: fit-content;
}
.site-nav.is-open .site-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
}
.site-nav.is-open .site-nav__list a {
  font-size: 1.125rem;
  padding: 0.75rem 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .site-nav { display: block; position: static; background: none; backdrop-filter: none; padding: 0; }
  .site-nav__list { display: flex !important; flex-direction: row; }
  .logo { flex-shrink: 0; }
}

/* Push content below fixed floating nav */
body::before {
  content: '';
  display: block;
  height: 5.5rem;
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-block: clamp(3rem, 8vw, 5.5rem) clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}

/* Aurora background */
.hero__aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: auroraReveal 1.5s var(--ease) forwards;
}
.aurora--1 {
  width: 60vw; height: 60vw;
  max-width: 700px; max-height: 700px;
  background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 70%);
  top: -15%; right: -10%;
  animation-delay: 0.3s;
}
.aurora--2 {
  width: 50vw; height: 50vw;
  max-width: 600px; max-height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  bottom: -10%; left: -5%;
  animation-delay: 0.6s;
}
.aurora--3 {
  width: 30vw; height: 30vw;
  max-width: 400px; max-height: 400px;
  background: radial-gradient(circle, rgba(168,85,247,0.07) 0%, transparent 70%);
  top: 30%; left: 25%;
  animation-delay: 0.9s;
}
@keyframes auroraReveal {
  to { opacity: 1; }
}

/* Hero grid background */
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.hero__content { max-width: 580px; }
.hero__badge   { margin-bottom: 1.5rem; }

.hero__headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.75rem, 6.5vw, 4.75rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  text-wrap: balance;
}

.hero__sub {
  margin-top: 1.375rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 490px;
  font-weight: 400;
}

.hero__fineprint {
  margin-top: 1rem;
  max-width: 36rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
  font-weight: 500;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 2.25rem;
}

/* ─── Phone mockup — premium shell ───────────────────────── */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__phones {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: clamp(460px, 68vw, 600px);
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
}

.phone { position: relative; }
.phone--back {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54%;
  transform: rotate(-6deg) translateX(-8%) translateY(2%);
  filter: brightness(0.6) saturate(0.8);
  z-index: 1;
}
.phone--front {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  transform: rotate(4deg) translateX(8%);
  z-index: 2;
}

/* Phone shell */
.phone__shell {
  border-radius: var(--phone-radius);
  padding: 0.75rem;
  box-shadow: var(--phone-shadow);
  position: relative;
  overflow: hidden;
}
.phone__shell--dark {
  background: linear-gradient(145deg, #1C2333 0%, #0F1623 100%);
  border: 1.5px solid rgba(255,255,255,0.09);
}
.phone__shell--light {
  background: linear-gradient(145deg, #E8EDF5 0%, #D0D9E8 100%);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.phone__notch {
  width: 90px;
  height: 8px;
  background: rgba(0,0,0,0.5);
  border-radius: var(--radius-full);
  margin: 0 auto 0.625rem;
}
.phone__shell--light .phone__notch { background: rgba(0,0,0,0.15); }
.phone__screen img {
  border-radius: calc(var(--phone-radius) - 0.75rem);
  width: 100%;
  height: auto;
  display: block;
}

/* Solo phone (single display) */
.phone--solo { display: flex; justify-content: center; }
.phone--solo .phone__shell { width: min(280px, 80vw); }
.phone--sm   .phone__shell { width: min(220px, 65vw); }

/* Floating price cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(13,22,38,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  z-index: 10;
}
.float-card--1 {
  bottom: 22%;
  right: -8%;
  animation: floatY 4s ease-in-out infinite;
}
.float-card--2 {
  top: 14%;
  left: -5%;
  animation: floatY 4.5s ease-in-out infinite 0.5s;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
.float-card__dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.float-card__dot--green  { background: var(--green);  box-shadow: 0 0 6px var(--green); }
.float-card__dot--yellow { background: var(--yellow); box-shadow: 0 0 6px var(--yellow); }
.float-card__info { display: flex; flex-direction: column; gap: 0.125rem; }
.float-card__label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.float-card__price {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green);
}

/* ─── TRUST STRIP ─────────────────────────────────────────── */
.trust-strip {
  padding-block: clamp(1.75rem, 4vw, 2.25rem);
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, var(--glass-bg) 100%);
  backdrop-filter: blur(12px);
  border-block: 1px solid var(--border);
}
.trust-strip__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.125rem;
  text-align: center;
}
.trust-strip__lead {
  margin: 0;
  max-width: 40rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem 2.5rem;
  justify-content: center;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}
.trust-item__icon {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item__icon svg { width: 100%; height: 100%; }

/* ─── FUEL TYPES ──────────────────────────────────────────── */
.fuel-types { background: var(--bg-base); }
.fuel-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(192px, 1fr));
  gap: 1rem;
}
.fuel-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 1.625rem 1.375rem;
  cursor: default;
  transition:
    transform var(--t-med) var(--ease),
    box-shadow var(--t-med) var(--ease),
    border-color var(--t-fast),
    background var(--t-fast);
  backdrop-filter: blur(var(--glass-blur));
}
.fuel-card:hover {
  transform: translateY(-3px);
  background: var(--bg-card-hover);
}

/* Accent top border per fuel */
.fuel-card--green  { border-top: 2px solid var(--green); }
.fuel-card--green:hover  { box-shadow: 0 12px 48px rgba(34,197,94,0.14);  border-color: var(--green); }
.fuel-card--blue   { border-top: 2px solid var(--blue); }
.fuel-card--blue:hover   { box-shadow: 0 12px 48px rgba(59,130,246,0.14); border-color: var(--blue); }
.fuel-card--yellow { border-top: 2px solid var(--yellow); }
.fuel-card--yellow:hover { box-shadow: 0 12px 48px rgba(234,179,8,0.14);  border-color: var(--yellow); }
.fuel-card--orange { border-top: 2px solid var(--orange); }
.fuel-card--orange:hover { box-shadow: 0 12px 48px rgba(249,115,22,0.14); border-color: var(--orange); }
.fuel-card--purple { border-top: 2px solid var(--purple); }
.fuel-card--purple:hover { box-shadow: 0 12px 48px rgba(168,85,247,0.14); border-color: var(--purple); }

.fuel-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.fuel-card__dot-wrap { display: flex; align-items: center; }
.fuel-card__badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent, var(--green));
  background: rgba(34,197,94,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(34,197,94,0.2);
}
.fuel-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.fuel-card__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── FEATURES ────────────────────────────────────────────── */
.features {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-base) 100%);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  cursor: default;
  transition:
    transform var(--t-med) var(--ease),
    box-shadow var(--t-med) var(--ease),
    border-color var(--t-fast),
    background var(--t-fast);
  backdrop-filter: blur(var(--glass-blur));
}
@media (hover: hover) and (pointer: fine) {
  .feature-card:hover {
    transform: none;
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.28);
  }
}

.feature-card__icon-wrap {
  width: 2.875rem;
  height: 2.875rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-card__icon-wrap svg { width: 1.25rem; height: 1.25rem; }
.feature-card__icon-wrap--green  { background: rgba(34,197,94,0.12);  color: var(--green); }
.feature-card__icon-wrap--blue   { background: rgba(59,130,246,0.12); color: var(--blue); }
.feature-card__icon-wrap--yellow { background: rgba(234,179,8,0.12);  color: var(--yellow); }
.feature-card__icon-wrap--orange { background: rgba(249,115,22,0.12); color: var(--orange); }
.feature-card__icon-wrap--purple { background: rgba(168,85,247,0.12); color: var(--purple); }

.feature-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.feature-card__soon {
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.feature-card__body {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── HOW IT WORKS ────────────────────────────────────────── */
.how-it-works { background: var(--bg-base); }
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 800px;
  margin-inline: auto;
}
@media (min-width: 600px) { .steps { grid-template-columns: 1fr 1fr; } }

.step {
  display: flex;
  gap: 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  align-items: flex-start;
  backdrop-filter: blur(var(--glass-blur));
  transition:
    transform var(--t-med) var(--ease),
    box-shadow var(--t-med) var(--ease),
    border-color var(--t-fast);
  cursor: default;
}
.step:hover {
  transform: translateY(-3px);
  border-color: rgba(34,197,94,0.2);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.step__number {
  flex-shrink: 0;
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 50%;
  background: var(--cta-grad);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.375rem;
}
.step__body {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── SCREENSHOTS ─────────────────────────────────────────── */
.screenshots {
  background: linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-base) 100%);
}
.screenshots__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
  justify-items: center;
}
@media (min-width: 560px) { .screenshots__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .screenshots__grid { grid-template-columns: repeat(6, 1fr); gap: 1.5rem; } }

.screenshot-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  max-width: 175px;
  width: 100%;
}
.screenshot-card__frame {
  font: inherit;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  text-align: left;
  border-radius: 1.875rem;
  overflow: hidden;
  box-shadow: var(--phone-shadow);
  border: 1.5px solid rgba(255,255,255,0.07);
  background: #0F1623;
  touch-action: manipulation;
  transition:
    transform var(--t-med) var(--ease),
    box-shadow var(--t-med) var(--ease);
  cursor: pointer;
}
.screenshot-card__frame:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}
.screenshot-card__frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 48px 100px rgba(0,0,0,0.62), 0 0 0 1px rgba(34,197,94,0.18);
}
.screenshot-card__frame img { display: block; }
.screenshot-card figcaption {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
}

/* ─── Screenshot Lightbox ─────────────────────────────────────
   Centered via grid; full-viewport backdrop; touch-swipe ready
   ──────────────────────────────────────────────────────────── */

/* Our display:grid below overrides browser's "dialog { display:none }" —
   we must restore hidden state when the dialog is not open */
.lightbox:not([open]) {
  display: none;
}

.lightbox {
  /* Override all UA dialog defaults */
  position: fixed;
  inset: 0;
  margin: 0;
  padding: 0;
  border: none;
  /* Full viewport so click-outside-panel closes it */
  width: 100vw;
  height: 100dvh;
  max-width: 100vw;
  max-height: 100dvh;
  background: transparent;
  overflow: hidden;
  overscroll-behavior: contain;
  /* Centre panel */
  display: grid;
  place-items: center;
}
.lightbox::backdrop {
  background: rgba(2, 5, 12, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Panel — sized to image content */
.lightbox__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 0 0.5rem;
  gap: 0.5rem;
}
.lightbox__counter {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  min-width: 3ch;
}
.lightbox__counter:empty { visibility: hidden; }

.lightbox__close {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  background: rgba(13, 22, 38, 0.96);
  color: var(--text-secondary);
  cursor: pointer;
  touch-action: manipulation;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.lightbox__close:hover { background: rgba(255,255,255,0.1); border-color: var(--border-hover); color: var(--text-primary); }
.lightbox__close:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

/* Stage: prev | image | next */
.lightbox__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
}

/* Nav arrows */
.lightbox__nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  background: rgba(13, 22, 38, 0.92);
  color: var(--text-secondary);
  cursor: pointer;
  touch-action: manipulation;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.lightbox__nav:hover { background: rgba(255,255,255,0.1); border-color: var(--border-hover); color: var(--green); }
.lightbox__nav:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.lightbox--single .lightbox__nav { display: none; }
.lightbox--single .lightbox__stage { gap: 0; }

/* Image */
.lightbox__img-wrap {
  flex: 0 1 auto;
  min-width: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.09);
}
.lightbox__img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(70vw, 22rem);
  max-height: min(64dvh, 64vh);
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

/* Footer: caption + dots */
.lightbox__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  padding-top: 0.75rem;
}
.lightbox__caption {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
  max-width: 22rem;
}
.lightbox__caption:empty { display: none; }

/* Dot indicators */
.lightbox__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}
.lightbox__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  touch-action: manipulation;
  transition: background var(--t-fast), transform var(--t-fast);
}
.lightbox__dot[aria-selected="true"],
.lightbox__dot.is-active {
  background: var(--green);
  transform: scale(1.4);
}
.lightbox--single .lightbox__dots { display: none; }

/* The inner wrapper (click target for the content area) */
.lightbox__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(90vw, 26rem);
  /* Pad so it clearly sits above the backdrop click zone */
  padding: 1.25rem 1rem 1.25rem;
  border-radius: var(--radius-xl);
  background: rgba(8, 14, 26, 0.85);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  gap: 0;
}

@media (prefers-reduced-motion: reduce) {
  .lightbox::backdrop { transition: none; }
  .lightbox__dot { transition: none; }
}

/* ─── MAP HIGHLIGHT ───────────────────────────────────────── */
.map-highlight {
  background: var(--bg-mid);
  border-block: 1px solid var(--border);
}
.map-highlight__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .map-highlight__inner { grid-template-columns: auto 1fr; gap: 5.5rem; }
}

/* ─── NOTIFICATIONS ───────────────────────────────────────── */
.notifs-section { background: var(--bg-base); }
.notifs-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .notifs-section__inner { grid-template-columns: 1fr auto; gap: 5.5rem; }
  .notifs-section__visual { order: 1; min-width: min(20rem, 100%); }
  .notifs-section__content { order: 0; }
}

.notif-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 3rem;
  /* Wider than the phone so the notification can shrink-wrap to readable width */
  width: 100%;
  max-width: 22rem;
  margin-inline: auto;
}
.notif-bubble {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: max-content;
  max-width: min(18rem, calc(100vw - 2.5rem));
  min-width: min(15.5rem, calc(100% - 0.5rem));
  box-sizing: border-box;
  background: rgba(13,22,38,0.92);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 0.75rem 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation: floatY 5s ease-in-out infinite;
}
.notif-bubble__icon-wrap {
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-sm);
  background: rgba(34,197,94,0.15);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.notif-bubble__body {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}
.notif-bubble__kicker {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  line-height: 1.2;
}
.notif-bubble__title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}
.notif-bubble__detail {
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.35;
}
.notif-bubble__price {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--green-bright);
}

/* ─── CYPRUS SECTION ──────────────────────────────────────── */
.cyprus-section {
  background: linear-gradient(135deg, var(--bg-mid) 0%, var(--bg-card-solid) 100%);
  border-block: 1px solid var(--border);
}
.cyprus-section__inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}
.cyprus-section__content .section__eyebrow {
  margin-bottom: 1rem;
}
.cyprus-section__content .section__title {
  margin-bottom: 0;
}
.cyprus-section__content .section__body {
  margin-top: 1.125rem;
  font-size: 1.0625rem;
}

/* ─── DOWNLOAD / CTA ──────────────────────────────────────── */
.download-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--bg-base);
}
.download-cta__aurora {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.aurora--cta-1 {
  width: 70vw; height: 70vw;
  max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(34,197,94,0.09) 0%, transparent 70%);
  top: -20%; left: 50%; transform: translateX(-50%);
  animation: auroraReveal 1s var(--ease) forwards;
}
.aurora--cta-2 {
  width: 40vw; height: 40vw;
  max-width: 500px; max-height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%);
  bottom: -10%; right: 10%;
  animation: auroraReveal 1.5s var(--ease) forwards;
}
.download-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 2.75rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(165deg, rgba(255,255,255,0.05) 0%, rgba(6,11,21,0.35) 45%, rgba(6,11,21,0.2) 100%);
  box-shadow:
    0 1px 0 rgba(201, 169, 98, 0.12) inset,
    0 40px 80px rgba(0,0,0,0.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.download-cta__title {
  font-size: clamp(2.125rem, 5vw, 3.5rem);
}
.download-cta__sub {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 40rem;
  margin-inline: auto;
}
.download-cta__pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
  text-align: left;
}
@media (min-width: 720px) {
  .download-cta__pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 1.25rem;
  }
}
.download-cta__pillar {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1.125rem 1.125rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(6, 11, 21, 0.45);
  min-height: 100%;
}
.download-cta__pillar-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--champagne);
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid var(--champagne-dim);
}
.download-cta__pillar-icon svg {
  display: block;
}
.download-cta__pillar-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
}
.download-cta__pillar-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
.download-cta__note {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.download-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* Store buttons */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--glass-bg);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 1rem 1.75rem;
  color: var(--text-primary);
  font-weight: 600;
  cursor: pointer;
  transition:
    transform var(--t-med) var(--ease),
    box-shadow var(--t-med) var(--ease),
    border-color var(--t-fast),
    background var(--t-fast);
  backdrop-filter: blur(12px);
}
.store-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(34,197,94,0.4);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 16px 48px rgba(34,197,94,0.18);
}
.store-btn__icon { width: 1.875rem; height: 1.875rem; flex-shrink: 0; }
.store-btn__icon svg { width: 100%; height: 100%; }
.store-btn__text {
  display: flex; flex-direction: column; gap: 0.1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem; text-align: left;
}
.store-btn__text small {
  font-family: 'Rubik', sans-serif;
  font-size: 0.6875rem; font-weight: 400;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.store-btn--coming-soon .store-btn__text small {
  color: #9BAABF;
}

/* Waitlist form */
.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
  max-width: 480px;
  margin-inline: auto;
}
.waitlist-form__input {
  flex: 1 1 220px;
  padding: 0.875rem 1.375rem;
  background: var(--glass-bg);
  border: 1.5px solid var(--glass-border);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-family: 'Rubik', sans-serif;
  font-size: 0.9375rem;
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  backdrop-filter: blur(12px);
}
.waitlist-form__input::placeholder { color: var(--text-muted); }
.waitlist-form__input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-section { background: var(--bg-mid); }
.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(var(--glass-blur));
  transition: border-color var(--t-fast);
}
.faq-item:has(.faq-item__question[aria-expanded="true"]) {
  border-color: rgba(34,197,94,0.25);
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  padding: 1.375rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  text-align: left;
  transition: background var(--t-fast);
}
.faq-item__question:hover { background: rgba(255,255,255,0.03); }
.faq-item__question:focus-visible { outline: 2px solid var(--green); outline-offset: -2px; }

.faq-item__arrow {
  flex-shrink: 0;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  border: 1.5px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), background var(--t-fast), border-color var(--t-fast);
}
.faq-item__arrow::after {
  content: '';
  width: 0.5rem; height: 0.5rem;
  border-right: 2px solid var(--text-secondary);
  border-bottom: 2px solid var(--text-secondary);
  transform: translateY(-18%) rotate(45deg);
  transition: transform 0.3s var(--ease), border-color var(--t-fast);
}
.faq-item__question[aria-expanded="true"] .faq-item__arrow {
  transform: rotate(180deg);
  background: rgba(34,197,94,0.12);
  border-color: rgba(34,197,94,0.35);
}
.faq-item__question[aria-expanded="true"] .faq-item__arrow::after { border-color: var(--green); }

.faq-item__answer {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  animation: answerFadeIn 0.3s var(--ease);
}
.faq-item__answer strong { color: var(--text-primary); }
.faq-item__answer a {
  color: var(--green-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-item__answer a:hover { color: var(--green); }
@keyframes answerFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ─── TERMS ───────────────────────────────────────────────── */
.terms-section { background: var(--bg-base); border-top: 1px solid var(--border); }
.terms-section__disclaimer {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.75rem;
}
.terms-section__disclaimer a {
  color: var(--green-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.terms-section__disclaimer a:hover { color: var(--green); }
.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.terms-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  backdrop-filter: blur(var(--glass-blur));
  transition: border-color var(--t-fast);
}
.terms-card:hover { border-color: var(--border-hover); }
.terms-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.625rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--border);
}
.terms-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }
.terms-card a {
  color: var(--green-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.terms-card a:hover { color: var(--green); }

.terms-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  justify-content: center;
}
.terms-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
  cursor: pointer;
}
.terms-link:hover { color: var(--text-primary); }
.terms-link span { color: var(--text-muted); font-size: 0.8125rem; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--glass-bg);
  border-top: 1px solid var(--border);
  padding-block: 3rem;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}
@media (min-width: 680px) {
  .site-footer__inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    text-align: left;
  }
}
.site-footer__tagline {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.site-footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
}
@media (min-width: 680px) { .site-footer__nav ul { justify-content: flex-start; } }
.site-footer__nav a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--t-fast);
  cursor: pointer;
}
.site-footer__nav a:hover { color: var(--text-primary); }
.site-footer__copy { font-size: 0.8125rem; color: var(--text-muted); white-space: nowrap; }

/* ─── Mobile fixes ────────────────────────────────────────── */
@media (max-width: 767px) {
  /* ── Nav bar: stay inside safe areas, prevent logo/button clipping ── */
  .site-header {
    top: max(0.75rem, env(safe-area-inset-top, 0px));
    left: 50%;
    transform: translateX(-50%);
    width: calc(100vw - 1.25rem - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px));
    max-width: calc(100vw - 1.25rem);
    border-radius: 1.25rem;
    box-sizing: border-box;
  }
  .site-header__inner {
    padding-inline: clamp(0.75rem, 3.5vw, 1rem);
    gap: 0.5rem;
    min-width: 0;
  }
  .logo {
    font-size: clamp(0.9375rem, 4vw, 1.0625rem);
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* ── Hero: single column phones below content ── */
  .hero__phones {
    height: clamp(340px, 82vw, 480px);
    max-width: 280px;
  }
  .phone--back  { width: 50%; transform: rotate(-5deg) translateX(-6%) translateY(1%); }
  .phone--front { width: 55%; transform: rotate(3deg) translateX(6%); }

  /* Float cards: hide on small screens — too cluttered, cause overflow */
  .float-card { display: none; }

  /* ── Grids: force single column to prevent overflow ── */
  .features__grid {
    grid-template-columns: 1fr;
  }
  .fuel-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .terms-grid {
    grid-template-columns: 1fr;
  }

  /* Screenshots — 2 columns */
  .screenshots__grid { grid-template-columns: repeat(2, 1fr); }

  /* Steps — single column */
  .steps { grid-template-columns: 1fr; }

  /* Trust strip — wrap tightly */
  .trust-strip__inner { gap: 0.625rem 1.25rem; }

  /* Reduce section vertical spacing */
  :root { --section-gap: clamp(3.5rem, 8vw, 5rem); }

  /* Download CTA buttons stack nicely */
  .store-btns { flex-direction: column; align-items: center; }

  /* FAQ items readable */
  .faq-question { font-size: 0.9375rem; }
}

@media (max-width: 479px) {
  .hero__headline { font-size: 2.125rem; }
  .hero__phones {
    height: clamp(300px, 88vw, 380px);
    max-width: 240px;
  }
  .fuel-cards { grid-template-columns: 1fr; }
  .screenshots__grid { grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
}

/* ── Lightbox: responsive nav layout ── */
@media (max-width: 480px) {
  .lightbox__nav {
    /* Slightly smaller on very narrow screens */
    width: 2.25rem;
    height: 2.25rem;
  }
  .lightbox__img {
    max-width: min(62vw, 18rem);
    max-height: min(62dvh, 62vh);
  }
  .lightbox__stage { gap: 0.5rem; }
}

/* ─── 404 page (branded, minimal) ─────────────────────────── */
.page-404-body {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}
.page-404 {
  width: 100%;
  max-width: 28rem;
}
.page-404__card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  box-shadow: var(--glass-shadow);
}
.page-404 .logo--404 {
  justify-content: center;
  margin-bottom: 1.5rem;
}
.page-404__code {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.page-404__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.page-404__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

/* ─── Placeholder controls (legacy / non-link placeholders) ─ */
.terms-link--placeholder {
  cursor: default;
  pointer-events: none;
  opacity: 0.7;
  text-decoration: none;
  color: var(--text-muted);
}
.terms-link--placeholder span {
  color: var(--text-muted);
  font-size: 0.8125rem;
}
.site-footer__nav .footer-link--placeholder {
  color: var(--text-muted);
  font-size: 0.875rem;
  cursor: default;
  user-select: none;
}

/* ─── Legal pages (privacy, terms) ────────────────────────── */
.legal-body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 11, 21, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.legal-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  flex-wrap: wrap;
}
.legal-header__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.875rem;
}
.legal-header__nav a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t-fast);
}
.legal-header__nav a:hover { color: var(--text-primary); }

.legal-page {
  flex: 1;
  padding-block: clamp(2rem, 6vw, 3.5rem);
}
.legal-page__inner { max-width: 44rem; }
.legal-page__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.legal-page__meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.legal-prose {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
}
.legal-prose h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.legal-prose h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
.legal-prose p { margin-bottom: 1rem; }
.legal-prose a {
  color: var(--green-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-prose a:hover { color: var(--green); }

.legal-callout {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(249, 115, 22, 0.35);
  background: rgba(249, 115, 22, 0.08);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.legal-callout strong { color: var(--text-primary); }

.legal-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal-list li { padding-left: 0.25rem; }

.legal-footer {
  border-top: 1px solid var(--border);
  background: var(--glass-bg);
  padding-block: 1.5rem;
  margin-top: auto;
}
.legal-footer__inner { text-align: center; }
.legal-footer__copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.legal-footer__copy a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-footer__copy a:hover { color: var(--text-primary); }

/* ─── App store: coming soon (accessible disabled buttons) ─ */
.store-btn--coming-soon {
  text-align: left;
  cursor: not-allowed;
  opacity: 0.92;
  pointer-events: none;
  position: relative;
}
.store-btn--coming-soon:hover {
  transform: none;
  border-color: var(--glass-border);
  background: var(--glass-bg);
  box-shadow: none;
}
.store-btn:disabled,
.store-btn[aria-disabled='true'] {
  cursor: not-allowed;
}
.store-btn__badge-soon {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  font-family: 'Rubik', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(234, 179, 8, 0.12);
  border: 1px solid rgba(234, 179, 8, 0.35);
}

/* Waitlist / launch notice (no fake submit) */
.waitlist-notice {
  margin-top: 1.75rem;
  max-width: 32rem;
  margin-inline: auto;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.waitlist-notice strong { color: var(--text-primary); }

@media (prefers-reduced-motion: reduce) {
  .legal-header { backdrop-filter: none; }
}
