/* PRK marketing site — matches the app's "Deep Purple" design system
   (lib/constants/colors.dart): near-black purple-tinted surfaces, electric
   purple/mint/amber accents, Exo 2 for headers, PT Sans for body text. */

:root {
  --bg: #0A0A12;
  --surface: #10101C;
  --card: #181826;
  --card-high: #20203A;
  --border: #2A2A44;
  --border-lt: #363658;

  --purple: #7C5CFC;
  --purple-dim: #5B3FD4;
  --purple-lt: #A78BFA;
  --violet: #C084FC;
  --mint: #34D399;
  --amber: #FBBF24;
  --red: #FF4560;

  --text: #F0F0FF;
  --text-secondary: #8888BB;
  --text-tertiary: #4A4A6A;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-pill: 100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'PT Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.display {
  font-family: 'Exo 2', 'PT Sans', sans-serif;
}

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

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ─────────────────────────────────────────────────────────── */

header.site {
  position: sticky;
  top: 0;
  /* Above .mobile-menu (55) so the toggle button (now showing the close
     icon) stays visible and clickable while the overlay is open. */
  z-index: 60;
  background: rgba(10, 10, 18, 0.97);
  border-bottom: 1px solid var(--border);
}

header.site .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.3px;
}

.brand img { width: 30px; height: 30px; border-radius: 8px; }

nav.links {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav.links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.15s ease;
}

nav.links a:hover { color: var(--text); }

.bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.menu-toggle svg { width: 20px; height: 20px; display: block; }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-menu { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: var(--bg);
  padding: 96px 28px 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(.16,1,.3,1);
  overflow-y: auto;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  font-size: 21px;
  font-weight: 600;
  color: var(--text);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu .btn {
  margin-top: 32px;
  width: 100%;
}

body.menu-open { overflow: hidden; }

@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; }
}

@media (min-width: 861px) {
  .mobile-menu { display: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14.5px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, opacity 0.15s ease;
}

.btn:hover { opacity: 0.92; }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dim) 100%);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(124, 92, 252, 0.55);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-lt);
  color: var(--text);
}

.btn-sm { padding: 9px 16px; font-size: 13.5px; }

/* ── Hero ───────────────────────────────────────────────────────────── */

.hero {
  padding: 96px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 780px;
  height: 480px;
  background: radial-gradient(ellipse at center, rgba(124, 92, 252, 0.28) 0%, rgba(124, 92, 252, 0) 70%);
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(124, 92, 252, 0.12);
  border: 1px solid rgba(124, 92, 252, 0.35);
  color: var(--purple-lt);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

.badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
}

.hero h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.08;
  margin: 0 0 22px;
  position: relative;
}

.hero h1 .grad {
  background: linear-gradient(120deg, var(--violet) 0%, var(--purple) 55%, var(--purple-lt) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p.sub {
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: var(--text-secondary);
  position: relative;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

.stat-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  position: relative;
}

.stat { text-align: center; }

.stat .num {
  font-family: 'Exo 2', sans-serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}

.stat .lbl {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ── Sections ───────────────────────────────────────────────────────── */

section { padding: 88px 0; }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--purple-lt);
  margin-bottom: 12px;
}

.section-head h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.8px;
  margin: 0 0 14px;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 16px;
  margin: 0;
}

/* How it works */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
}

.step .n {
  font-family: 'Exo 2', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--purple-lt);
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(124, 92, 252, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.step h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.2px;
}

.step p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* Feature grid */

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

#park-smart .features {
  grid-template-columns: repeat(2, 1fr);
  max-width: 820px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  #park-smart .features { grid-template-columns: 1fr; }
}

.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.feature:hover {
  border-color: var(--border-lt);
  transform: translateY(-2px);
}

.feature .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.2px;
}

.feature p {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
}

.icon-purple { background: rgba(124, 92, 252, 0.16); color: var(--purple-lt); }
.icon-mint { background: rgba(52, 211, 153, 0.14); color: var(--mint); }
.icon-amber { background: rgba(251, 191, 36, 0.14); color: var(--amber); }
.icon-violet { background: rgba(192, 132, 252, 0.14); color: var(--violet); }

/* Trust band */

.trust {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.trust-item .t-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.trust-item h4 {
  font-size: 14.5px;
  font-weight: 700;
  margin: 0 0 6px;
}

.trust-item p {
  font-size: 12.5px;
  color: var(--text-secondary);
  margin: 0;
}

/* Final CTA */

.cta-band {
  text-align: center;
  background: linear-gradient(135deg, rgba(124, 92, 252, 0.14) 0%, rgba(192, 132, 252, 0.08) 100%);
  border: 1px solid rgba(124, 92, 252, 0.3);
  border-radius: var(--radius-xl);
  padding: 64px 32px;
  margin: 0 24px;
}

.cta-band h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.6px;
  margin: 0 0 14px;
}

.cta-band p {
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: 16px;
}

/* ── Footer ─────────────────────────────────────────────────────────── */

footer.site {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand .brand { margin-bottom: 12px; }

.footer-brand p {
  color: var(--text-secondary);
  font-size: 13.5px;
  max-width: 300px;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin: 0 0 14px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  transition: color 0.15s ease;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-tertiary);
}

/* ── Legal pages ────────────────────────────────────────────────────── */

.legal {
  padding: 64px 0 96px;
}

.legal .header-block {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal h1 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0 0 12px;
}

.legal .updated {
  color: var(--text-secondary);
  font-size: 14px;
}

.legal .content { max-width: 760px; }

.legal .content h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 14px;
  letter-spacing: -0.2px;
}

.legal .content h2:first-child { margin-top: 0; }

.legal .content h3 {
  font-size: 15.5px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--purple-lt);
}

.legal .content p, .legal .content li {
  color: var(--text-secondary);
  font-size: 15px;
  margin: 0 0 14px;
}

.legal .content ul, .legal .content ol {
  padding-left: 22px;
  margin: 0 0 18px;
}

.legal .content strong { color: var(--text); font-weight: 600; }

.legal .content a { color: var(--purple-lt); text-decoration: underline; text-underline-offset: 2px; }

.callout {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--purple);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 20px 0;
}

.callout p { margin: 0; color: var(--text); font-size: 14px; }

/* ── Responsive ─────────────────────────────────────────────────────── */

@media (max-width: 860px) {
  nav.links { display: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { flex-direction: column; }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 28px; }
  .cta-band { margin: 0 16px; padding: 48px 24px; }
}

/* ── Scroll reveal ──────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1);
}

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

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

.stagger-child {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(.16,1,.3,1), transform 0.6s cubic-bezier(.16,1,.3,1);
}

.stagger-child:nth-child(1) { transition-delay: 0ms; }
.stagger-child:nth-child(2) { transition-delay: 80ms; }
.stagger-child:nth-child(3) { transition-delay: 160ms; }
.stagger-child:nth-child(4) { transition-delay: 240ms; }
.stagger-child:nth-child(5) { transition-delay: 320ms; }
.stagger-child:nth-child(6) { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger-child {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .phone-stack .phone, header.site .brand img { transition: none !important; }
}

/* ── Header scroll state ────────────────────────────────────────────── */

header.site.scrolled {
  background: rgba(10, 10, 18, 0.96);
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.5);
}

/* ── 3D phone mockup ────────────────────────────────────────────────── */

.phone {
  position: relative;
  width: 240px;
  aspect-ratio: 9 / 19.5;
  border-radius: 42px;
  background: linear-gradient(160deg, #2c2c48 0%, #16161f 55%, #0a0a12 100%);
  padding: 12px;
  box-shadow:
    0 50px 90px -24px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.07) inset,
    0 2px 0 rgba(255, 255, 255, 0.09) inset;
  flex-shrink: 0;
}

.phone .screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #050508;
}

.phone .screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.phone .notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 20px;
  border-radius: 12px;
  background: #0a0a12;
  z-index: 3;
}

.phone .shine {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(115deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 26%);
  pointer-events: none;
  z-index: 4;
}

/* Hero phone fan */

.phone-stack {
  position: relative;
  perspective: 1800px;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-stack .phone {
  position: absolute;
  transform-style: preserve-3d;
}

.phone-stack .phone.pos-main {
  transform: rotateY(-10deg) rotateX(4deg);
  z-index: 3;
}

.phone-stack .phone.pos-left {
  transform: rotateY(20deg) translateX(-132px) translateY(38px) scale(0.82);
  z-index: 2;
  opacity: 0.88;
}

.phone-stack .phone.pos-right {
  transform: rotateY(-28deg) translateX(146px) translateY(58px) scale(0.78);
  z-index: 1;
  opacity: 0.75;
}

.phone-stack.reveal .phone.pos-main { transform: rotateY(-40deg) translateY(60px) scale(0.9); }
.phone-stack.reveal.visible .phone.pos-main { transform: rotateY(-10deg) rotateX(4deg); transition: transform 0.9s cubic-bezier(.16,1,.3,1) 0.1s; }
.phone-stack.reveal .phone.pos-left { transform: rotateY(20deg) translateX(-132px) translateY(160px) scale(0.7); opacity: 0; }
.phone-stack.reveal.visible .phone.pos-left { transform: rotateY(20deg) translateX(-132px) translateY(38px) scale(0.82); opacity: 0.88; transition: transform 0.9s cubic-bezier(.16,1,.3,1) 0.25s, opacity 0.9s ease 0.25s; }
.phone-stack.reveal .phone.pos-right { transform: rotateY(-28deg) translateX(146px) translateY(180px) scale(0.66); opacity: 0; }
.phone-stack.reveal.visible .phone.pos-right { transform: rotateY(-28deg) translateX(146px) translateY(58px) scale(0.78); opacity: 0.75; transition: transform 0.9s cubic-bezier(.16,1,.3,1) 0.35s, opacity 0.9s ease 0.35s; }

.phone-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(124, 92, 252, 0.22) 0%, rgba(124, 92, 252, 0) 68%);
  pointer-events: none;
  z-index: 0;
}

/* Single showcase phone */

.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.showcase-phone-wrap {
  display: flex;
  justify-content: center;
  perspective: 1600px;
}

.showcase-phone-wrap .phone {
  width: 280px;
  animation: floaty 6s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: rotateY(-6deg) translateY(0); }
  50% { transform: rotateY(-6deg) translateY(-14px); }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-phone-wrap .phone { animation: none; }
}

.live-pill {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(52, 211, 153, 0.16);
  border: 1px solid rgba(52, 211, 153, 0.4);
  color: var(--mint);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  z-index: 5;
}

.live-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
}

.showcase-text .eyebrow { margin-bottom: 12px; }

.showcase-text h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(26px, 3.6vw, 34px);
  font-weight: 700;
  letter-spacing: -0.6px;
  margin: 0 0 16px;
}

.showcase-text p {
  color: var(--text-secondary);
  font-size: 15.5px;
  margin: 0 0 24px;
}

.showcase-list { list-style: none; padding: 0; margin: 0; }

.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--text-secondary);
}

.showcase-list li:first-child { border-top: none; }

.showcase-list .check {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(52, 211, 153, 0.14);
  color: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.showcase-list strong { color: var(--text); font-weight: 600; }

@media (max-width: 900px) {
  .showcase { grid-template-columns: 1fr; gap: 40px; }
  .showcase-phone-wrap { order: -1; }
}

/* ── Store badges ───────────────────────────────────────────────────── */

.store-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.store-badge img {
  height: 54px;
  width: auto;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.store-badge:hover img { transform: translateY(-2px); filter: brightness(1.08); }

.store-badge-soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 54px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid var(--border-lt);
  color: var(--text-secondary);
  font-size: 13px;
}

.store-badge-soon .platform {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.25;
}

.store-badge-soon .platform b {
  color: var(--text);
  font-size: 14.5px;
  font-weight: 600;
}

/* ── Counted stats ──────────────────────────────────────────────────── */

.stat .num { transition: none; }

/* ── FAQ ─────────────────────────────────────────────────────────────── */

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

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: 20px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--purple-lt);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ── Legal disclosure section on the site ──────────────────────────── */

.review-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.28);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  max-width: 760px;
  margin: 0 auto;
}

.review-note .r-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }

.review-note p { margin: 0; color: var(--text); font-size: 14.5px; line-height: 1.65; }

.review-note strong { color: var(--mint); }

/* ── Hero two-column layout ─────────────────────────────────────────── */

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
  text-align: left;
}

.hero-grid .hero-copy .sub { margin: 0 0 32px; }
.hero-grid .hero-ctas { justify-content: flex-start; }
.hero-grid .store-row { justify-content: flex-start; }
.hero-grid .hero-stats {
  justify-content: flex-start;
  border-top: none;
  padding-top: 0;
  margin-top: 48px;
}

.showcase-first .showcase-phone-wrap { order: -1; }

.showcase.reverse { grid-template-columns: 0.95fr 1.05fr; }
.showcase.reverse .showcase-text { order: 2; }
.showcase.reverse .showcase-phone-wrap { order: 1; }

#showcase .showcase { margin-bottom: 96px; }
#showcase .showcase:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-grid .phone-stack { order: -1; height: 420px; margin-bottom: 8px; }
  .hero-grid .hero-copy .sub { margin: 0 auto 32px; }
  .hero-grid .hero-ctas,
  .hero-grid .store-row,
  .hero-grid .hero-stats { justify-content: center !important; }
  .showcase.reverse { grid-template-columns: 1fr; }
  .showcase.reverse .showcase-phone-wrap { order: -1 !important; }
  .showcase.reverse .showcase-text { order: 2 !important; }
}

@media (max-width: 560px) {
  .hero-grid .phone-stack { height: 340px; }
  .phone-stack .phone { width: 172px; }
  .showcase-phone-wrap .phone { width: 220px; }
}
