:root {
  --cream: #f6f0e4;
  --cream-soft: #fbf7ee;
  --cream-card: #fffdf8;
  --paper: #f1ead9;
  --green: #2f6e51;
  --green-deep: #1f5239;
  --green-ink: #213a2c;
  --orange: #d9633a;
  --orange-soft: #e07a52;
  --gold: #d9a441;
  --text: #2c2b26;
  --muted: #6f6e64;
  --line: #e7dfce;
  --line-soft: #efe8d8;
  --shadow-sm: 0 10px 24px rgba(45, 60, 40, 0.08);
  --shadow-md: 0 18px 40px rgba(45, 60, 40, 0.12);
  --shadow-lg: 0 30px 70px rgba(31, 50, 35, 0.18);
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(900px 500px at 100% -5%, rgba(217, 164, 65, 0.12), transparent 60%),
    radial-gradient(800px 500px at -5% 30%, rgba(47, 110, 81, 0.08), transparent 55%),
    var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: var(--display);
  color: var(--green-ink);
  line-height: 1.1;
  margin: 0 0 0.7rem;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 0.35rem;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.82rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.6rem 1.1rem;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.25s ease,
    background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 22px rgba(47, 110, 81, 0.28);
}

.btn-green:hover {
  background: var(--green-deep);
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 26px rgba(217, 99, 58, 0.32);
}

.btn-orange:hover {
  background: #c8552d;
}

.btn-outline {
  background: transparent;
  border-color: var(--green);
  color: var(--green-deep);
}

.btn-outline:hover {
  background: rgba(47, 110, 81, 0.08);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--green-ink);
}

.btn-ghost:hover {
  border-color: var(--green);
}

.btn-text {
  background: transparent;
  color: var(--green);
  padding: 0.4rem 0.2rem;
  font-weight: 700;
}

.btn-text:hover {
  color: var(--green-deep);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 240, 228, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
  background: rgba(246, 240, 228, 0.95);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease);
}

.brand:hover .brand-logo {
  transform: rotate(-4deg) scale(1.05);
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--display);
  color: var(--green-ink);
  font-size: 1.15rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin: 0 auto;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.main-nav a:hover {
  color: var(--green-deep);
  background: rgba(47, 110, 81, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--cream-card);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--green-ink);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 3.4rem 0 3rem;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(246, 240, 228, 0.62) 0%,
    rgba(246, 240, 228, 0.5) 45%,
    var(--cream) 100%
  );
}

.hero-bg-img {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 130%;
  min-width: 1100px;
  transform: translateX(-50%);
  opacity: 0.85;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 100%);
}

.hero-leaf {
  position: absolute;
  width: 230px;
  opacity: 0.7;
  filter: drop-shadow(0 8px 16px rgba(31, 50, 35, 0.12));
}

.hero-leaf-left {
  top: -18px;
  left: -28px;
  animation: leafSway 9s ease-in-out infinite;
}

.hero-leaf-right {
  top: -18px;
  right: -28px;
  animation: leafSwayRight 11s ease-in-out infinite;
}

@keyframes leafSway {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(2.5deg); }
}

@keyframes leafSwayRight {
  0%, 100% { transform: scaleX(-1) rotate(0deg); }
  50% { transform: scaleX(-1) rotate(2.5deg); }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.underline-accent {
  position: relative;
  white-space: nowrap;
}

.underline-accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.04em;
  height: 0.18em;
  background: var(--gold);
  border-radius: 999px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineGrow 0.9s var(--ease) 0.4s forwards;
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--text);
  max-width: 42ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.3rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.18s var(--ease), filter 0.25s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 14px rgba(31, 50, 35, 0.22));
}

.store-badge img {
  display: block;
  width: auto;
}

/* Apple badge is tight; Google badge has built-in padding,
   so scale Google up slightly to visually match heights. */
.badge-apple {
  height: 44px;
}

.badge-google {
  height: 64px;
  margin: -10px;
}

/* ---------- Coming soon ---------- */
.pill-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.9rem;
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  background: rgba(217, 99, 58, 0.12);
  border: 1px solid rgba(217, 99, 58, 0.3);
  color: var(--orange);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pill-soon::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(217, 99, 58, 0.5);
  animation: pulseSoon 2s ease-in-out infinite;
}

@keyframes pulseSoon {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 99, 58, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(217, 99, 58, 0); }
}

.store-badges.is-soon .store-badge {
  cursor: default;
  filter: grayscale(0.25);
  opacity: 0.6;
}

.store-badges.is-soon .store-badge:hover {
  transform: none;
  filter: grayscale(0.25);
}

.badge-caption {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.badge-caption.dark {
  color: rgba(255, 255, 255, 0.7);
}

.soon-tag {
  align-self: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(47, 110, 81, 0.1);
  border: 1px solid rgba(47, 110, 81, 0.22);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
}

/* ---------- Phones ---------- */
.hero-visual {
  position: relative;
  min-height: 540px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone {
  position: absolute;
  width: 270px;
  filter: drop-shadow(0 28px 44px rgba(31, 50, 35, 0.32));
}

.hero-phone-back {
  z-index: 1;
  animation: heroFloatBack 8s ease-in-out infinite;
}

.hero-phone-front {
  z-index: 3;
  animation: heroFloatFront 7s ease-in-out infinite;
}

@keyframes heroFloatFront {
  0%, 100% { transform: translate(78px, 26px) rotate(4deg); }
  50% { transform: translate(78px, 14px) rotate(4deg); }
}

@keyframes heroFloatBack {
  0%, 100% { transform: translate(-86px, -6px) rotate(-5deg); }
  50% { transform: translate(-86px, -18px) rotate(-5deg); }
}

.phone {
  position: absolute;
  width: 244px;
  background: #14241c;
  border-radius: 38px;
  padding: 9px;
  box-shadow: var(--shadow-lg);
}

.phone-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 20px;
  background: #14241c;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}

.phone-screen {
  background: var(--cream-soft);
  border-radius: 30px;
  overflow: hidden;
  height: 484px;
  display: flex;
  flex-direction: column;
}

.phone-back {
  transform: translate(-92px, -8px) rotate(-5deg);
  z-index: 1;
}

.phone-front {
  transform: translate(86px, 24px) rotate(4deg);
  z-index: 3;
  animation: floaty 7s ease-in-out infinite;
}

.phone-back {
  animation: floaty 8s ease-in-out infinite reverse;
}

/* App UI */
.app-statusbar {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem 0.2rem;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--green-ink);
}

.app-greeting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0.9rem 0.4rem;
}

.app-hello {
  margin: 0;
  font-size: 0.92rem;
  color: var(--green-ink);
  line-height: 1.15;
}

.app-hello strong {
  font-family: var(--display);
}

.app-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
}

.app-search {
  margin: 0 0.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.66rem;
  color: var(--muted);
}

.app-chips {
  display: flex;
  gap: 0.3rem;
  padding: 0.6rem 0.9rem;
  overflow: hidden;
}

.chip {
  font-size: 0.62rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  white-space: nowrap;
}

.chip-active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.app-row-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green-ink);
}

.app-row-head .muted {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.6rem;
}

.app-deal-card {
  margin: 0.2rem 0.9rem;
  height: 96px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.app-deal-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--green);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 0.18rem 0.45rem;
  border-radius: 7px;
}

.app-deal-badge.orange {
  background: var(--orange);
  position: static;
}

.app-list-item {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.35rem 0.9rem;
}

.app-thumb {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  flex: none;
}

.app-list-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.app-list-copy strong {
  font-size: 0.72rem;
  color: var(--green-ink);
}

.app-list-copy small {
  font-size: 0.62rem;
  color: var(--muted);
}

.app-tabbar {
  margin-top: auto;
  display: flex;
  justify-content: space-around;
  padding: 0.6rem 0.9rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.app-tabbar span {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--line);
}

.app-tabbar span.active {
  background: var(--green);
}

/* Phone 2 detail */
.app-hero-img {
  height: 140px;
  background-size: cover;
  background-position: center;
}

.app-detail {
  padding: 0.7rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.app-detail-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.app-detail-head strong {
  display: block;
  font-family: var(--display);
  font-size: 0.95rem;
  color: var(--green-ink);
}

.app-detail-head small {
  font-size: 0.66rem;
  color: var(--muted);
}

.app-heart {
  color: var(--orange);
  font-size: 1rem;
}

.app-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.app-rating .stars {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 1px;
}

.app-rating small {
  font-size: 0.6rem;
  color: var(--muted);
}

.app-detail-deal {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.app-detail-deal small {
  font-size: 0.6rem;
  color: var(--muted);
}

.app-view-deal {
  background: var(--green);
  color: #fff;
  text-align: center;
  border-radius: 999px;
  padding: 0.45rem;
  font-size: 0.74rem;
  font-weight: 700;
}

.app-hours {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.1rem;
}

.app-hours div {
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  color: var(--muted);
}

/* ---------- Features ---------- */
.features {
  padding: 1rem 0 1.5rem;
}

.features-card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: 1.6rem 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature {
  text-align: center;
  padding: 0.4rem 1.1rem;
  position: relative;
}

.feature + .feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  height: 76%;
  width: 1px;
  background: var(--line);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  color: #fff;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-icon.green {
  background: var(--green);
}
.feature-icon.orange {
  background: var(--orange);
}
.feature-icon.gold {
  background: var(--gold);
}

.feature p {
  margin: 0;
  font-weight: 600;
  color: var(--green-ink);
  font-size: 0.95rem;
}

/* ---------- Stats ---------- */
.stats {
  padding: 1.6rem 0;
}

.stats-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: center;
}

.people-row {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.4rem;
}

.people-row svg {
  width: 30px;
  height: 30px;
}

.person {
  color: #cfe0d4;
}

.people-row[data-people="green"] .person.filled {
  color: var(--green);
}

.people-row[data-people="orange"] .person {
  color: #f0d2c4;
}

.people-row[data-people="orange"] .person.filled {
  color: var(--orange);
}

.stats-line {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--text);
  margin-bottom: 1.2rem;
}

.stats-line strong {
  font-family: var(--display);
  color: var(--green);
  font-size: 1.5em;
  font-weight: 900;
}

.stats-line strong.orange-text {
  color: var(--orange);
}

.stats-flip {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--green-deep);
  margin: 0;
}

.stats-visual img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 360px;
}

/* ---------- Claim ---------- */
.claim {
  padding: 2.2rem 0;
}

.claim-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}

.claim-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.8rem;
  box-shadow: var(--shadow-sm);
}

.claim-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.claim-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 1.5rem;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.7rem;
  color: var(--text);
  font-weight: 500;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4rem;
  height: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.claim-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Laptop + phone mockup */
.claim-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 320px;
}

.laptop {
  width: min(440px, 100%);
}

.laptop-screen {
  background: #14241c;
  border-radius: 16px 16px 0 0;
  padding: 12px 12px 0;
  box-shadow: var(--shadow-md);
}

.laptop-base {
  height: 16px;
  background: linear-gradient(#d8d2c4, #bdb6a6);
  border-radius: 0 0 14px 14px;
  margin: 0 -10px;
  box-shadow: var(--shadow-sm);
}

.dash {
  display: grid;
  grid-template-columns: 64px 1fr;
  background: var(--cream-soft);
  border-radius: 8px;
  overflow: hidden;
  height: 250px;
}

.dash-side {
  background: var(--green-deep);
  padding: 0.8rem 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.dash-brand {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--gold);
  margin-bottom: 0.4rem;
}

.dash-nav {
  width: 38px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
}

.dash-nav.active {
  background: var(--gold);
}

.dash-main {
  padding: 0.9rem 1rem;
}

.dash-welcome {
  margin: 0 0 0.1rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.dash-welcome strong {
  color: var(--green-ink);
  font-family: var(--display);
}

.dash-label {
  margin: 0.5rem 0 0.4rem;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.dash-stats div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.5rem;
}

.dash-stats strong {
  display: block;
  font-size: 0.95rem;
  color: var(--green-ink);
  font-family: var(--display);
}

.dash-stats small {
  font-size: 0.56rem;
  color: var(--muted);
}

.dash-deal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.dash-deal-badge {
  background: var(--green);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 7px;
}

.dash-deal small {
  font-size: 0.6rem;
  color: var(--muted);
}

.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 42px;
}

.dash-bars i {
  flex: 1;
  background: var(--green);
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
}
.dash-bars i:nth-child(1) { height: 40%; }
.dash-bars i:nth-child(2) { height: 65%; }
.dash-bars i:nth-child(3) { height: 50%; }
.dash-bars i:nth-child(4) { height: 80%; }
.dash-bars i:nth-child(5) { height: 60%; background: var(--gold); }
.dash-bars i:nth-child(6) { height: 95%; }
.dash-bars i:nth-child(7) { height: 70%; }

.claim-phone {
  position: absolute;
  right: -4px;
  bottom: -10px;
  width: 96px;
  background: #14241c;
  border-radius: 18px;
  padding: 6px;
  box-shadow: var(--shadow-lg);
  animation: floaty 6s ease-in-out infinite;
}

.claim-phone-screen {
  background: var(--cream-soft);
  border-radius: 13px;
  padding: 0.6rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  height: 168px;
}

.cp-line {
  height: 8px;
  border-radius: 4px;
  background: var(--line);
}
.cp-line.w60 { width: 60%; }
.cp-line.w70 { width: 70%; }
.cp-line.w80 { width: 80%; }

.cp-badge {
  align-self: flex-start;
  background: var(--green);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 800;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
}

/* ---------- Featured ---------- */
.featured {
  padding: 1.5rem 0 2.4rem;
}

.featured-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.2rem;
  gap: 1rem;
}

.featured-head h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin: 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.rest-card {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.32s var(--ease), box-shadow 0.32s ease;
}

.rest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.rest-img {
  height: 120px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.deal-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.24rem 0.5rem;
  border-radius: 7px;
  box-shadow: var(--shadow-sm);
}

.deal-badge.green {
  background: var(--green);
}
.deal-badge.orange {
  background: var(--orange);
}

.heart {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #b9b1a4;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 0.18s var(--ease), color 0.2s ease;
}

.heart:hover {
  transform: scale(1.15);
  color: var(--orange);
}

.heart.active {
  color: var(--orange);
}

.rest-body {
  padding: 0.7rem 0.8rem 0.9rem;
}

.rest-body h3 {
  font-size: 0.98rem;
  margin: 0 0 0.15rem;
}

.rest-meta {
  margin: 0 0 0.35rem;
  font-size: 0.76rem;
  color: var(--muted);
}

.rest-rating {
  margin: 0 0 0.35rem;
  font-size: 0.74rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.rest-rating .stars {
  color: var(--gold);
  letter-spacing: 0.5px;
}

.rest-addr {
  margin: 0;
  font-size: 0.72rem;
  color: var(--muted);
}

/* ---------- App showcase ---------- */
.showcase {
  padding: 2.2rem 0 1rem;
}

.showcase-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 1.4rem;
}

.showcase-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.phone-scroller {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  overflow-x: auto;
  padding: 1rem 0.3rem 1.4rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.phone-scroller::-webkit-scrollbar {
  height: 8px;
}

.phone-scroller::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 999px;
}

.tour-phone {
  flex: 0 0 auto;
  width: 196px;
  margin: 0;
  text-align: center;
  scroll-snap-align: center;
}

.tour-phone img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  object-position: top center;
  filter: drop-shadow(0 18px 30px rgba(31, 50, 35, 0.2));
  transition: transform 0.35s var(--ease);
}

.tour-phone:hover img {
  transform: translateY(-8px);
}

.tour-phone figcaption {
  margin-top: 0.5rem;
  font-weight: 700;
  color: var(--green-ink);
  font-size: 0.85rem;
}

.showcase-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.4rem;
}

.split-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
}

.split-copy {
  flex: 1;
}

.split-copy h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.split-copy p {
  margin: 0;
  font-size: 0.95rem;
}

.split-copy .feature-icon {
  margin-bottom: 0.7rem;
}

.split-visual {
  flex: 0 0 156px;
}

.split-visual img {
  width: 156px;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

/* ---------- Payments band ---------- */
.payments {
  padding: 1.4rem 0 2.4rem;
}

.payments-inner {
  background: var(--cream-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.venmo-logo {
  font-weight: 800;
  font-size: 1.5rem;
  color: #008cff;
  letter-spacing: -0.01em;
}

.payments-copy {
  margin: 0;
  flex: 1;
  min-width: 220px;
  color: var(--text);
  font-weight: 500;
}

.pay-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pay-chip {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
}

.venmo-chip {
  color: #008cff;
  border-color: #bfe0ff;
  background: #f0f8ff;
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
  color: #fff;
  margin-top: 1rem;
}

.footer-inner {
  padding: 2.6rem 0 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.footer-brand h2 {
  color: #fff;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  margin: 0 0 0.3rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.footer-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.store-badges.dark {
  align-items: center;
}

.socials {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.follow {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.social {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transition: background-color 0.2s ease, transform 0.18s var(--ease);
}

.social:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.social svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1rem 0 1.4rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

/* ---------- Keyframes ---------- */
@keyframes floaty {
  0%, 100% { transform: translateY(0) var(--rot, ); }
  50% { transform: translateY(-10px); }
}

/* keep phone rotation while floating */
.phone-front {
  animation-name: floatFront;
}
.phone-back {
  animation-name: floatBack;
}
.claim-phone {
  animation-name: floaty;
}

@keyframes floatFront {
  0%, 100% { transform: translate(86px, 24px) rotate(4deg); }
  50% { transform: translate(86px, 14px) rotate(4deg); }
}

@keyframes floatBack {
  0%, 100% { transform: translate(-92px, -8px) rotate(-5deg); }
  50% { transform: translate(-92px, -18px) rotate(-5deg); }
}

@keyframes underlineGrow {
  to { transform: scaleX(1); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .featured-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .main-nav,
  .header-actions {
    display: none;
  }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    margin: 0;
    padding: 0.8rem 6vw 1.1rem;
    background: rgba(246, 240, 228, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .hero-grid,
  .stats-card,
  .claim-grid,
  .showcase-split {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 540px;
    margin-top: 1rem;
  }

  .stats-visual {
    order: -1;
  }

  .features-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem 0;
  }

  .feature:nth-child(3)::before,
  .feature:nth-child(odd)::before {
    display: none;
  }

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

  .footer-side {
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .featured-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-leaf {
    width: 140px;
    opacity: 0.5;
  }

  .payments-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    flex: 1;
  }
}

@media (max-width: 460px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .phone {
    width: 210px;
  }

  .phone-back {
    transform: translate(-60px, -8px) rotate(-5deg);
  }

  .phone-front {
    transform: translate(60px, 24px) rotate(4deg);
  }

  @keyframes floatFront {
    0%, 100% { transform: translate(60px, 24px) rotate(4deg); }
    50% { transform: translate(60px, 14px) rotate(4deg); }
  }
  @keyframes floatBack {
    0%, 100% { transform: translate(-60px, -8px) rotate(-5deg); }
    50% { transform: translate(-60px, -18px) rotate(-5deg); }
  }
}

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

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

  .underline-accent::after {
    transform: scaleX(1);
  }
}
