:root {
  --primary: #8d6e63;
  --primary-900: #1c1614;
  --primary-800: #382c28;
  --primary-700: #55423b;
  --primary-600: #71584f;
  --primary-500: #8d6e63;
  --primary-400: #a48b82;
  --primary-300: #bba8a1;

  --neutral-50: #f4f1ef;
  --neutral-100: #e8e2e0;
  --neutral-200: #d1c5c1;
  --neutral-300: #bba8a1;

  --green: #62cf59;
  --green-600: #58ba50;
  --green-700: #4ea647;
  --green-dark: #3b7c35;
  --green-soft: #d2ffe2;
  --green-glow: rgba(98, 207, 89, 0.35);

  --warning: #ffc404;
  --error: #ed6647;

  --white: #ffffff;
  --ink: #1c1614;
  --muted: #71584f;
  --line: rgba(85, 66, 59, 0.14);
  --line-strong: rgba(85, 66, 59, 0.22);

  --shadow-sm: 0 6px 20px rgba(56, 44, 40, 0.08);
  --shadow-md: 0 18px 44px rgba(56, 44, 40, 0.12);
  --shadow-lg: 0 30px 80px rgba(56, 44, 40, 0.16);
  --shadow-green: 0 18px 40px rgba(98, 207, 89, 0.28);

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 640ms;

  --font-display: 'Plus Jakarta Sans', Inter, ui-sans-serif, system-ui, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--neutral-50);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
}

::selection {
  background: var(--green-soft);
  color: var(--primary-900);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 64px);
}

/* ---------- Decorative blobs ---------- */

.blob-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}

.blob-green {
  background: radial-gradient(circle, var(--green) 0%, transparent 70%);
}

.blob-brown {
  background: radial-gradient(circle, var(--primary-300) 0%, transparent 70%);
}

/* ---------- Icon tinting (app icons use currentColor and render black via <img>) ---------- */

.bento-icon img,
.value-card img,
.marquee-track img,
.kicker img,
.qr-details .row img,
.app-quickgrid img,
.app-locationbar img,
.app-searchbar img,
.floating-card > img,
.qr-mock-header img {
  /* tint to brand brown #8D6E63 */
  filter: brightness(0) saturate(100%) invert(48%) sepia(10%) saturate(900%) hue-rotate(331deg) brightness(93%) contrast(86%);
}

.bento-icon.green img,
.scan-status img {
  /* tint to brand green-dark #3B7C35 */
  filter: brightness(0) saturate(100%) invert(38%) sepia(45%) saturate(600%) hue-rotate(70deg) brightness(92%) contrast(90%);
}

.sticker-badge img {
  filter: brightness(0) saturate(100%);
}

/* ---------- Floating decorative icons (nature / community accents) ---------- */

.deco {
  position: absolute;
  z-index: 0;
  width: 34px;
  height: 34px;
  opacity: 0.16;
  pointer-events: none;
  filter: brightness(0) saturate(100%) invert(38%) sepia(45%) saturate(600%) hue-rotate(70deg) brightness(92%) contrast(90%);
  animation: deco-float 9s ease-in-out infinite;
}

.deco.brown {
  filter: brightness(0) saturate(100%) invert(48%) sepia(10%) saturate(900%) hue-rotate(331deg) brightness(93%) contrast(86%);
}

.deco:nth-of-type(2n) {
  animation-duration: 11s;
  animation-delay: 1.2s;
}

.deco:nth-of-type(3n) {
  animation-duration: 13s;
  animation-delay: 2.4s;
}

@keyframes deco-float {
  0%,
  100% {
    transform: translateY(0) rotate(-6deg);
  }
  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}

@media (max-width: 760px) {
  .deco {
    /* !important needed: many decos set explicit width/height inline,
       which otherwise outranks this breakpoint override */
    width: 30px !important;
    height: 30px !important;
    opacity: 0.16 !important;
  }
}

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

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 clamp(18px, 5vw, 64px);
  background: rgba(244, 241, 239, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(56, 44, 40, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--primary-800);
}

.brand img {
  width: 36px;
  height: 36px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--primary-700);
}

.nav a:not(.nav-cta) {
  position: relative;
  padding: 6px 0;
}

.nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: right 220ms var(--ease);
}

.nav a:not(.nav-cta):hover::after {
  right: 0;
}

.nav a:not(.nav-cta):hover {
  color: var(--primary-900);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  color: var(--white) !important;
  background: var(--primary-900);
  border-radius: 999px;
  font-weight: 700;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms ease;
  box-shadow: 0 10px 26px rgba(28, 22, 20, 0.22);
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--primary-800);
  box-shadow: 0 14px 32px rgba(28, 22, 20, 0.3);
}

.nav-toggle {
  display: none;
}

/* ---------- Buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms ease, color 220ms ease;
  white-space: nowrap;
}

.button.primary {
  color: var(--white);
  background: var(--primary-900);
  box-shadow: 0 16px 36px rgba(28, 22, 20, 0.26);
}

.button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(28, 22, 20, 0.32);
}

.button.accent {
  color: var(--primary-900);
  background: var(--green);
  box-shadow: var(--shadow-green);
}

.button.accent:hover {
  transform: translateY(-3px);
  background: var(--green-600);
}

.button.secondary {
  color: var(--primary-800);
  background: var(--white);
  border: 1.5px solid var(--line-strong);
}

.button.secondary:hover {
  transform: translateY(-3px);
  border-color: var(--primary-500);
  box-shadow: var(--shadow-sm);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button svg,
.button img {
  width: 18px;
  height: 18px;
}

/* ---------- Typography helpers ---------- */

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
  font-family: var(--font-display);
}

p {
  font-family: var(--font-body);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 7px 14px 7px 10px;
  color: var(--green-dark);
  background: var(--green-soft);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-dark);
}

h1 {
  margin-bottom: 22px;
  max-width: 780px;
  font-size: clamp(42px, 6.4vw, 76px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--primary-900);
}

h1 .highlight {
  position: relative;
  color: var(--green-dark);
  white-space: nowrap;
}

@media (max-width: 760px) {
  h1 .highlight {
    white-space: normal;
  }
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.4vw, 50px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--primary-900);
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-900);
}

.section-copy p,
.hero-text {
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
}

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 780ms var(--ease), transform 780ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 560px);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
  min-height: calc(100vh - 80px);
  padding: clamp(40px, 6vw, 80px) clamp(18px, 5vw, 64px) 60px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 26px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  color: var(--primary-700);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.trust-row span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 660px;
}

/* ---------- Phone mockup (mirrors real app HomeView) ---------- */

.phone-shell {
  position: relative;
  width: min(100%, 340px);
  padding: 14px;
  background: var(--primary-900);
  border-radius: 46px;
  box-shadow: var(--shadow-lg);
  will-change: transform;
}

/* One-time entrance: keyframe animation (not a transition) so the JS tilt
   can freely drive `transform` without fighting the reveal transition */
.phone-intro {
  animation: phone-in 820ms var(--ease) 120ms backwards;
}

@keyframes phone-in {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
}

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

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 22px;
  background: var(--primary-900);
  border-radius: 0 0 16px 16px;
  z-index: 3;
}

.phone-screen {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: 34px;
  padding: 30px 14px 16px;
}

.app-locationbar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  padding: 7px 12px;
  background: rgba(141, 110, 99, 0.1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-600);
}

.app-locationbar img {
  width: 13px;
  height: 13px;
}

.app-searchbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  margin-bottom: 12px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(113, 88, 79, 0.16);
}

.app-searchbar img {
  width: 16px;
  height: 16px;
  opacity: 0.55;
}

.app-searchbar span {
  flex: 1;
  font-size: 11.5px;
  color: var(--primary-300);
}

.app-banner {
  position: relative;
  height: 92px;
  margin-bottom: 8px;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% -10%, rgba(255, 255, 255, 0.25), transparent 55%),
    linear-gradient(120deg, var(--green-dark), var(--green-700) 55%, var(--green));
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.app-banner strong {
  color: var(--white);
  font-size: 12.5px;
}

.app-banner span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 10px;
}

.app-banner-cta {
  align-self: flex-start;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  font-size: 9.5px;
  font-weight: 700;
}

.app-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 14px;
}

.app-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--neutral-200);
}

.app-dots span.active {
  background: var(--primary-600);
  width: 14px;
  border-radius: 3px;
}

.app-section-label {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--primary-600);
}

.app-quickgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 16px;
}

.app-quickgrid button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 8px 2px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: background 200ms ease, transform 240ms var(--ease);
}

.app-quickgrid button:hover,
.app-quickgrid button.tip-active {
  background: var(--green-soft);
  transform: translateY(-3px);
}

.app-quickgrid button:hover img,
.app-quickgrid button.tip-active img {
  animation: icon-wiggle 500ms var(--ease);
}

@keyframes icon-wiggle {
  0% {
    transform: scale(1) rotate(0);
  }
  35% {
    transform: scale(1.25) rotate(-8deg);
  }
  70% {
    transform: scale(1.15) rotate(6deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

.phone-tip {
  position: absolute;
  top: 0;
  left: 0;
  /* JS sets --tip-x / --tip-y (in px) to the target icon's position; arrow
     offset via --arrow-x lets the tail keep pointing at the icon even when
     the bubble itself is nudged inward to avoid clipping the phone edges. */
  transform: translate(var(--tip-x, 0px), var(--tip-y, 0px)) translate(-50%, calc(-100% - 14px)) scale(0.9);
  z-index: 6;
  width: max-content;
  max-width: 210px;
  padding: 11px 14px;
  background: var(--primary-900);
  color: var(--white);
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.42;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}

.phone-tip strong {
  display: block;
  margin-bottom: 2px;
  color: var(--green);
  font-family: var(--font-display);
  font-size: 12.5px;
}

.phone-tip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: calc(50% + var(--arrow-x, 0px));
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--primary-900);
}

.phone-tip.show {
  opacity: 1;
  transform: translate(var(--tip-x, 0px), var(--tip-y, 0px)) translate(-50%, calc(-100% - 14px)) scale(1);
}

.phone-tip-hint {
  margin: 0 0 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-dark);
}

.phone-tip-hint .pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 var(--green-glow);
  }
  50% {
    box-shadow: 0 0 0 6px transparent;
  }
}

.app-quickgrid img {
  width: 22px;
  height: 22px;
}

.app-quickgrid span {
  font-size: 8.5px;
  font-weight: 700;
  color: var(--primary-600);
  text-align: center;
}

.app-quickgrid .sos span {
  color: var(--error);
}

.app-quickgrid .sos img {
  filter: invert(46%) sepia(59%) saturate(1878%) hue-rotate(325deg) brightness(96%) contrast(92%);
}

.app-nearby {
  display: flex;
  gap: 8px;
  overflow: hidden;
}

.app-nearby-card {
  flex: 0 0 auto;
  width: 92px;
  padding: 8px;
  background: var(--neutral-50);
  border-radius: 12px;
}

.app-nearby-thumb {
  height: 46px;
  margin-bottom: 6px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(98, 207, 89, 0.35), rgba(141, 110, 99, 0.25));
}

.app-nearby-card strong {
  display: block;
  font-size: 9px;
  color: var(--primary-700);
}

.app-nearby-card span {
  font-size: 8px;
  color: var(--primary-400);
}

.app-tabbar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid var(--neutral-100);
}

.app-tabbar div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.app-tabbar img {
  width: 20px;
  height: 20px;
}

.app-tabbar span {
  font-size: 8px;
  font-weight: 700;
  color: var(--primary-300);
}

.app-tabbar .active span {
  color: var(--primary-600);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  animation: float 5s ease-in-out infinite;
}

.floating-card.card-top {
  top: 20px;
  left: -10px;
  animation-delay: 0s;
}

.floating-card.card-bottom {
  right: -18px;
  bottom: 60px;
  animation-delay: 1.4s;
}

.floating-card strong {
  display: block;
  font-size: 15px;
  color: var(--primary-900);
}

.floating-card small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11.5px;
}

.floating-card img {
  width: 30px;
  height: 30px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  width: 28px;
  height: 28px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--neutral-300));
}

.avatar-stack span:nth-child(2) {
  background: linear-gradient(135deg, var(--green), var(--green-soft));
}

.avatar-stack span:nth-child(3) {
  background: linear-gradient(135deg, var(--primary-700), var(--neutral-300));
}

.avatar-stack span + span {
  margin-left: -10px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ---------- Marquee / logo strip ---------- */

.marquee-section {
  padding: 30px 0 70px;
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-400);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-left 22s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 16px;
  padding: 10px 18px;
  color: var(--primary-700);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
}

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

/* ---------- Sections ---------- */

.section {
  position: relative;
  padding: 100px clamp(18px, 5vw, 64px);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.left {
  margin: 0 0 44px;
  text-align: left;
}

.community-section,
.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.section-copy {
  max-width: 620px;
}

/* Bento feature grid */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.bento-card {
  grid-column: span 2;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), border-color 320ms ease;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-300);
}

.bento-card.wide {
  grid-column: span 3;
}

.bento-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  background: var(--neutral-50);
  border-radius: 16px;
}

.bento-icon img {
  width: 26px;
  height: 26px;
}

.bento-icon.green {
  background: var(--green-soft);
}

.bento-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- Feature showcase (tabs) ---------- */

.feature-shell {
  background: var(--white);
  border-radius: var(--radius-xl);
  margin: 0 clamp(18px, 5vw, 64px);
  padding: clamp(30px, 5vw, 60px);
  box-shadow: var(--shadow-sm);
}

.feature-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tabs-swipe-hint {
  display: none;
}

.feature-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  color: var(--primary-700);
  background: var(--neutral-50);
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms var(--ease);
}

.feature-tabs button .tab-icon {
  display: inline-block;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  /* tint to brand brown #8D6E63 to match inactive pill text */
  filter: brightness(0) saturate(100%) invert(48%) sepia(10%) saturate(900%) hue-rotate(331deg) brightness(93%) contrast(86%);
  transition: filter 220ms ease;
}

.feature-tabs button.active .tab-icon {
  /* tint dark so it reads clearly on the green active pill */
  filter: brightness(0) saturate(100%) invert(9%) sepia(9%) saturate(1284%) hue-rotate(340deg) brightness(93%) contrast(93%);
}

.feature-tabs button:hover {
  transform: translateY(-2px);
}

.feature-tabs button.active {
  color: var(--primary-900);
  background: var(--green);
  box-shadow: var(--shadow-green);
}

.feature-stage {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: stretch;
}

.feature-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-panel .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.feature-panel h3 {
  font-size: 26px;
}

.feature-panel p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.metric-row span {
  display: block;
  padding: 16px;
  background: var(--neutral-50);
  border-radius: 16px;
  color: var(--muted);
  font-size: 13px;
}

.metric-row strong {
  display: block;
  color: var(--primary-900);
  font-size: 28px;
  font-family: var(--font-display);
}

.mock-frame {
  position: relative;
  padding: 22px;
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.mock-frame .mock-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 14px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(10px);
  animation: mock-in 480ms var(--ease) forwards;
}

.mock-frame .mock-item:nth-child(1) {
  animation-delay: 60ms;
}

.mock-frame .mock-item:nth-child(2) {
  animation-delay: 160ms;
}

.mock-frame .mock-item:nth-child(3) {
  animation-delay: 260ms;
}

@keyframes mock-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mock-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--neutral-300));
}

.mock-avatar.green {
  background: linear-gradient(135deg, var(--green), var(--green-soft));
}

.mock-avatar.dark {
  background: linear-gradient(135deg, var(--primary-700), var(--neutral-300));
}

.mock-item strong {
  display: block;
  font-size: 13.5px;
  color: var(--primary-900);
  margin-bottom: 3px;
}

.mock-item p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.mock-tag {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 8px;
  font-size: 10.5px;
  font-weight: 700;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
}

/* ---------- Security / QR split ---------- */

.split-section {
  grid-template-columns: 1fr 1fr;
}

.qr-mock {
  padding: clamp(22px, 4vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  max-width: 420px;
  margin: 0 auto;
}

.qr-mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.qr-mock-header strong {
  font-size: 15px;
  color: var(--primary-900);
}

.qr-frame {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  background: var(--neutral-50);
  border: 1px solid var(--line);
  border-radius: 22px;
  margin-bottom: 18px;
}

.qr-frame img {
  width: min(46%, 170px);
}

.qr-details {
  border: 1px solid var(--neutral-100);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 14px;
}

.qr-details strong {
  display: block;
  font-size: 15px;
  color: var(--primary-900);
  margin-bottom: 8px;
}

.qr-details .row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}

.qr-details .row img {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.scan-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--green-soft);
  border-radius: 14px;
}

.scan-status .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.scan-status strong {
  display: block;
  font-size: 13.5px;
  color: var(--green-dark);
}

.scan-status small {
  color: var(--green-700);
  font-size: 11.5px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--muted);
  line-height: 1.5;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  content: '';
  width: 20px;
  height: 20px;
  background: var(--green) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3"><path d="M5 13l4 4L19 7"/></svg>') center/60% no-repeat;
  border-radius: 50%;
}

/* ---------- Steps ---------- */

.steps-section {
  background: var(--white);
}

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

.steps article {
  position: relative;
  padding: 28px 24px;
  background: var(--neutral-50);
  border-radius: var(--radius-lg);
}

.steps span.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--primary-900);
  border-radius: 14px;
  font-weight: 900;
  font-family: var(--font-display);
}

.steps p {
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Testimonials ---------- */

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

.testimonial-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}

.testimonial-card p.quote {
  color: var(--primary-800);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--green-soft));
}

.testimonial-person strong {
  display: block;
  font-size: 14px;
  color: var(--primary-900);
}

.testimonial-person span {
  font-size: 12.5px;
  color: var(--muted);
}

.rating-banner {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 48px auto 32px;
  padding: 18px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}

.rating-banner .rating-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 18px;
  border-right: 1px solid var(--line);
}

.rating-banner .rating-score strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-900);
  line-height: 1;
}

.rating-banner .rating-score small {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}

.rating-banner .rating-copy {
  text-align: left;
}

.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--green);
}

.stars svg {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 3px 8px rgba(98, 207, 89, 0.35));
}

.stars.small svg {
  width: 13px;
  height: 13px;
  filter: none;
}

.stars.small {
  margin-bottom: 12px;
}

.rating-banner .rating-copy span {
  display: block;
  margin-top: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted);
}

.section-heading .rating-banner-wrap {
  display: flex;
  justify-content: center;
}

@media (max-width: 760px) {
  .rating-banner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 20px 24px;
  }

  .rating-banner .rating-score {
    padding-right: 0;
    padding-bottom: 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .rating-banner .rating-copy {
    text-align: center;
  }
}

.sticker-badge {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--green);
  color: var(--primary-900);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 2.5px solid var(--white);
  box-shadow: var(--shadow-green);
  transform: rotate(-7deg);
  animation: sticker-pop 620ms var(--ease) 900ms backwards;
}

@keyframes sticker-pop {
  from {
    opacity: 0;
    transform: rotate(-7deg) scale(0.6);
  }
  to {
    opacity: 1;
    transform: rotate(-7deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticker-badge {
    animation: none;
  }
}

.social-follow {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

.social-follow a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-800);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.social-follow a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.social-follow svg {
  width: 19px;
  height: 19px;
}

/* ---------- Download / CTA ---------- */

.download-section {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 64px) 90px;
  padding: clamp(30px, 5vw, 64px);
  color: var(--white);
  background: radial-gradient(circle at 15% 20%, rgba(98, 207, 89, 0.28), transparent 45%), var(--primary-900);
  border-radius: var(--radius-xl);
  overflow: hidden;
}


.download-section .eyebrow {
  background: rgba(98, 207, 89, 0.18);
  color: var(--green-soft);
}

.download-section h2,
.download-section p {
  color: var(--white);
}

.download-section p {
  opacity: 0.85;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  transition: transform 220ms var(--ease), background 220ms ease;
}

.store-badge:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.18);
}

.store-badge svg {
  width: 24px;
  height: 24px;
}

.store-badge span {
  display: block;
  line-height: 1.2;
}

.store-badge .store-label {
  font-size: 10px;
  opacity: 0.7;
}

.store-badge .store-name {
  font-size: 14.5px;
  font-weight: 700;
}

.store-note {
  margin-top: 14px;
  font-size: 13px !important;
  opacity: 0.7 !important;
}

.waitlist-form {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
}

.waitlist-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

.waitlist-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font: inherit;
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.form-note {
  margin: 0;
  font-size: 13px !important;
  line-height: 1.4 !important;
  opacity: 0.85;
}

/* ---------- Footer ---------- */

.footer {
  position: relative;
  padding: 64px clamp(18px, 5vw, 64px) 32px;
  background: var(--white);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

/* Illustrated neighbourhood skyline: one wide image, tiled horizontally and
   scaled by height only, so it adapts to any screen width without needing
   separate mobile/desktop assets. */
.footer::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 252px;
  background-image: url('images/footer-skyline.png');
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 100%;
  opacity: 0.18;
  pointer-events: none;
}

.footer-top,
.footer-bottom {
  position: relative;
  z-index: 1;
}

@media (max-width: 760px) {
  .footer::before {
    height: 172px;
    opacity: 0.15;
  }
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.footer-brand p {
  margin: 14px 0 18px;
  max-width: 280px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--neutral-50);
  border-radius: 50%;
  transition: background 220ms ease, transform 220ms var(--ease);
}

.footer-socials a:hover {
  background: var(--green-soft);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

.footer-col strong {
  display: block;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--primary-900);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-col a {
  display: block;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 14.5px;
  transition: color 180ms ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  color: var(--primary-400);
  font-size: 13px;
}

/* ---------- Legal / content pages ---------- */

.page-hero {
  padding: 64px clamp(18px, 5vw, 64px) 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero .updated {
  color: var(--muted);
  font-size: 14px;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 20px clamp(18px, 5vw, 64px) 100px;
}

.legal-content h2 {
  font-size: 22px;
  margin-top: 44px;
}

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

.legal-content p,
.legal-content li {
  color: var(--primary-700);
  font-size: 15.5px;
  line-height: 1.75;
}

.legal-content ul {
  padding-left: 22px;
  margin-bottom: 20px;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 8px;
}

.legal-content .todo-note {
  margin: 18px 0;
  padding: 14px 16px;
  background: #fff7e6;
  border: 1px dashed var(--warning);
  border-radius: 12px;
  font-size: 13.5px;
  color: #8a6d00;
}

.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 40px;
  padding: 0;
}

.legal-toc a {
  padding: 8px 14px;
  background: var(--neutral-50);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-700);
}

.legal-toc a:hover {
  background: var(--green-soft);
  color: var(--green-dark);
}

/* FAQ accordion */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
  padding: 0 clamp(18px, 5vw, 64px) 100px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-900);
}

.faq-question .icon-plus {
  flex-shrink: 0;
  position: relative;
  width: 22px;
  height: 22px;
}

.faq-question .icon-plus::before,
.faq-question .icon-plus::after {
  content: '';
  position: absolute;
  background: var(--primary-700);
  border-radius: 2px;
  transition: transform 260ms var(--ease), opacity 260ms var(--ease);
}

.faq-question .icon-plus::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}

.faq-question .icon-plus::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}

.faq-item.open .icon-plus::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 340ms var(--ease);
}

.faq-answer-inner {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.faq-answer-inner ol,
.faq-answer-inner ul {
  padding-left: 20px;
  margin: 10px 0;
}

.faq-answer-inner li {
  margin-bottom: 6px;
}

.faq-highlight {
  margin: 36px auto 0;
  max-width: 820px;
  padding: 22px 24px;
  margin-inline: clamp(18px, 5vw, 64px);
  background: var(--primary-900);
  border-radius: var(--radius-lg);
  color: var(--white);
}

.faq-highlight h3 {
  color: var(--white);
}

.faq-highlight p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14.5px;
}

/* ---------- About page ---------- */

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 70px clamp(18px, 5vw, 64px);
}

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

.value-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}

.value-card img {
  width: 32px;
  height: 32px;
  margin: 0 auto 14px;
}

.value-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ---------- Support page ---------- */

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 64px) 60px;
}

.support-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.support-card .bento-icon {
  margin-bottom: 16px;
}

.support-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.support-card a.support-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 14px;
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card,
  .bento-card.wide {
    grid-column: span 1;
  }
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .hero,
  .community-section,
  .split-section,
  .feature-stage,
  .download-section,
  .about-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 600px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-grid,
  .support-grid,
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 68px;
    padding-inline: 18px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--primary-800);
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .nav-toggle[aria-expanded='true'] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded='true'] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav {
    position: fixed;
    inset: 68px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
  }

  .nav.open {
    display: flex;
  }

  .nav a:not(.nav-cta) {
    padding: 12px;
  }

  .nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 6px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .floating-card {
    position: static;
    width: min(100%, 320px);
    margin: 10px auto;
    animation: none;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
  }

  .metric-row,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 70px 18px;
  }

  .feature-shell {
    margin: 0 18px;
    padding: 24px 18px;
  }

  .feature-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    margin: 0 -18px 6px;
    padding-inline: 18px;
    scrollbar-width: none;
    /* fade right edge to hint there's more to scroll */
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
  }

  .feature-tabs.scrolled-end {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .feature-tabs::-webkit-scrollbar {
    display: none;
  }

  .feature-tabs button {
    flex-shrink: 0;
  }

  .tabs-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--green-dark);
  }

  .tabs-swipe-hint .swipe-arrow {
    display: inline-block;
    animation: swipe-nudge 1.6s ease-in-out infinite;
  }

  @keyframes swipe-nudge {
    0%,
    100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(6px);
    }
  }

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

  .bento-card {
    grid-column: span 1 !important;
  }

  /* Alternating offsets: staggered "layering" rhythm for stacked cards */
  .bento-card:nth-child(odd),
  .value-card:nth-child(odd),
  .testimonial-card:nth-child(odd) {
    margin-right: 26px;
    border-radius: var(--radius-lg) var(--radius-sm) var(--radius-lg) var(--radius-lg);
  }

  .bento-card:nth-child(even),
  .value-card:nth-child(even),
  .testimonial-card:nth-child(even) {
    margin-left: 26px;
    border-radius: var(--radius-sm) var(--radius-lg) var(--radius-lg) var(--radius-lg);
    background: linear-gradient(145deg, var(--white) 70%, rgba(210, 255, 226, 0.45));
  }

  .steps article:nth-child(odd) {
    margin-right: 26px;
  }

  .steps article:nth-child(even) {
    margin-left: 26px;
    background: linear-gradient(145deg, var(--neutral-50) 70%, rgba(210, 255, 226, 0.6));
  }

  .value-grid,
  .support-grid,
  .about-hero,
  .steps,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .store-buttons {
    flex-direction: column;
  }

  .store-badge {
    width: 100%;
    justify-content: center;
  }

  .download-section {
    margin-inline: 12px;
    padding: 28px 20px;
  }

  .waitlist-form {
    padding: 16px;
  }

  h1 {
    line-height: 1.08;
  }

  .qr-mock,
  .about-hero .qr-mock {
    padding: 20px;
  }

  .sticker-badge {
    font-size: 10.5px;
    padding: 7px 12px;
  }

  .story-avatar {
    width: 46px;
    height: 46px;
  }

  .legal-content,
  .faq-list,
  .page-hero {
    padding-inline: 18px;
  }

  .support-grid {
    padding-inline: 18px;
  }
}
