/* Rally — landing page styles */

:root {
  /* Coral primary */
  --coral: #FF7A59;
  --coral-2: #FF8B6A;
  --coral-deep: #E85F3D;
  --coral-tint: #FFE3D8;

  /* Cream / warm neutrals */
  --cream: #FFF8F3;
  --cream-2: #FAF7F2;
  --neutral-100: #F1ECE6;
  --neutral-200: #E7DED5;
  --neutral-300: #D9CFC4;

  /* Accents */
  --sage: #A8B9A5;
  --sage-deep: #7E9077;
  --sky: #BFD7EA;

  /* Text */
  --ink: #1F2933;
  --ink-2: #52606D;
  --ink-3: #8593A0;

  /* Dark surface */
  --char: #1F2933;
  --char-2: #2B3742;

  /* Type system */
  --font: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;

  /* Spacing & motion */
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(31,41,51,.04), 0 2px 8px rgba(31,41,51,.04);
  --shadow: 0 1px 2px rgba(31,41,51,.06), 0 8px 24px rgba(31,41,51,.06);
  --shadow-lg: 0 1px 2px rgba(31,41,51,.08), 0 24px 60px rgba(31,41,51,.10);
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--cream-2);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ───────── Layout ───────── */
.page { width: 100%; min-height: 100vh; }
.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 80px);
  margin-bottom: 40px; gap: 24px;
}
.section__head--center { text-align: center; flex-direction: column; align-items: center; }
.section__h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05; letter-spacing: -0.02em;
  font-weight: 700; margin: 8px 0 0; color: var(--ink);
  text-wrap: balance;
}
.section__h2 em { font-style: normal; color: var(--coral); }
.section__h2--light { color: var(--cream); }
.section__h2--light em { color: var(--coral-2); }
.section__lede {
  font-size: 18px; line-height: 1.55; color: var(--ink-2);
  max-width: 52ch; margin: 18px 0 0;
}
.section__lede--light { color: rgba(255,248,243,.78); }
.section__link {
  color: var(--ink-2); font-weight: 600; font-size: 15px;
  border-bottom: 1px solid var(--neutral-300); padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.section__link:hover { color: var(--coral); border-color: var(--coral); }

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--coral);
}
.eyebrow--light { color: var(--coral-2); }

/* ───────── Buttons ───────── */
.btn {
  appearance: none; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 18px; height: 44px; border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  transition: transform .15s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn--lg { height: 56px; padding: 0 26px; font-size: 16px; }
.btn--primary {
  background: var(--coral); color: white;
  box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 6px 18px rgba(255,122,89,.35);
}
.btn--primary:hover { background: var(--coral-deep); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--neutral-100); }
.btn--cream { background: var(--cream); color: var(--ink); }
.btn--cream:hover { background: white; transform: translateY(-1px); }
.btn--ghostlight { background: transparent; color: var(--cream); }
.btn--ghostlight:hover { color: white; }

.iconbtn {
  width: 44px; height: 44px; border-radius: 999px;
  background: white; border: 1px solid var(--neutral-200); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.iconbtn:hover { background: var(--coral); color: white; border-color: var(--coral); }

.dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--coral);
  display: inline-block; box-shadow: 0 0 0 4px rgba(255,122,89,.18);
}
.dot--green { background: #2EB872; box-shadow: 0 0 0 4px rgba(46,184,114,.2); }

/* ───────── Nav ───────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  transition: background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  background: transparent; border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(255,248,243,.85);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-bottom: 1px solid var(--neutral-200);
}
.nav__inner {
  max-width: 1320px; margin: 0 auto;
  padding: 18px clamp(20px, 5vw, 80px);
  display: flex; align-items: center; gap: 32px;
}
.rally-logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 700;
  font-size: 22px; letter-spacing: -0.02em;
}
.nav__links {
  display: flex; gap: 28px; flex: 1; margin-left: 12px;
}
.nav__links a {
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  transition: color .2s var(--ease);
}
.nav__links a:hover { color: var(--coral); }
.nav__actions { display: flex; gap: 8px; }

@media (max-width: 880px) {
  .nav__links { display: none; }
}

/* ───────── Hero (shared) ───────── */
.hero { position: relative; }
.hero__inner {
  max-width: 1320px; margin: 0 auto;
  padding: 64px clamp(20px, 5vw, 80px) 80px;
  position: relative;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 12px; background: white;
  border: 1px solid var(--neutral-200); border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.hero__h1 {
  font-family: var(--display);
  font-size: clamp(46px, 6.4vw, 84px);
  line-height: 1; letter-spacing: -0.035em; font-weight: 700;
  margin: 22px 0 22px; color: var(--ink); text-wrap: balance;
}
.hero__h1 em { font-style: normal; color: var(--coral); }
.hero__sub {
  font-size: clamp(17px, 1.4vw, 20px); color: var(--ink-2);
  max-width: 50ch; margin: 0 0 36px; line-height: 1.5;
}

/* HERO A — centered */
.hero--centered { background: var(--cream); }
.hero--centered .hero__inner {
  text-align: center; min-height: 720px;
  padding-top: 90px; padding-bottom: 110px;
  display: flex; flex-direction: column; align-items: center;
}
.hero--centered .hero__sub { margin-left: auto; margin-right: auto; }
.hero__bg {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
  border-bottom-left-radius: 60px; border-bottom-right-radius: 60px;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.95);
  opacity: 0.32;
  mask-image: linear-gradient(180deg, transparent 0%, black 35%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 35%, black 70%, transparent 100%);
}
.hero__bg-veil {
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 20%, transparent 0%, var(--cream) 80%);
}
.hero--centered .hero__h1,
.hero--centered .hero__sub,
.hero--centered .hero__eyebrow,
.hero--centered .search,
.hero--centered .hero__chips { position: relative; z-index: 1; }

.hero__chips {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-top: 24px; justify-content: center;
}
.chip-label { font-size: 13px; color: var(--ink-3); }
.chip {
  appearance: none; cursor: pointer;
  background: white; border: 1px solid var(--neutral-200);
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--ink-2);
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-1px); }

/* ───────── Search bar ───────── */
.search {
  display: flex; align-items: stretch; padding: 8px;
  background: white; border-radius: 999px;
  box-shadow: 0 2px 4px rgba(31,41,51,.04), 0 16px 40px rgba(31,41,51,.08);
  gap: 0; max-width: 760px; width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(0,0,0,.04);
}
.search__field {
  display: flex; flex-direction: column; padding: 8px 22px;
  border-radius: 999px; cursor: text; flex: 1; min-width: 0;
  transition: background .2s var(--ease);
  text-align: left;
}
.search__field:hover { background: var(--cream-2); }
.search__field:focus-within { background: var(--cream); }
.search__label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-3);
  margin-bottom: 2px;
}
.search__input {
  border: 0; background: transparent; outline: none;
  font: inherit; font-size: 15px; font-weight: 500; color: var(--ink);
  width: 100%;
}
.search__divider {
  width: 1px; background: var(--neutral-200); margin: 12px 0;
  flex-shrink: 0;
}
.search__btn {
  appearance: none; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral); color: white;
  padding: 0 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  margin-left: 8px; flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(255,122,89,.35);
  transition: background .2s var(--ease), transform .15s var(--ease);
}
.search__btn:hover { background: var(--coral-deep); transform: translateY(-1px); }
.search--compact { max-width: 560px; }
.search--compact .search__field { padding: 6px 18px; }
.search--compact .search__btn { padding: 0 18px; }

@media (max-width: 760px) {
  .search { flex-direction: column; border-radius: 28px; padding: 10px; }
  .search__field { padding: 12px 18px; border-radius: 22px; }
  .search__divider { width: auto; height: 1px; margin: 0 14px; }
  .search__btn { height: 50px; margin: 6px 0 0; justify-content: center; }
}

/* HERO B — split */
.hero--split { background: var(--cream); }
.hero__inner--split {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 60px; align-items: center; min-height: 760px;
  padding-top: 60px; padding-bottom: 100px;
}
.hero__copy { max-width: 580px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__meta { display: flex; align-items: center; gap: 16px; margin-top: 36px; }
.avatars { display: flex; }
.avatars span {
  width: 38px; height: 38px; border-radius: 999px;
  background: var(--neutral-200) center/cover;
  border: 3px solid var(--cream); margin-left: -10px;
}
.avatars span:first-child { margin-left: 0; }
.hero__meta-stars { display: flex; gap: 2px; align-items: center; color: var(--coral); font-size: 13px; }
.hero__meta-stars strong { color: var(--ink); margin-left: 6px; }
.hero__meta-sub { font-size: 13px; color: var(--ink-2); }

/* Collage */
.hero__collage {
  position: relative; aspect-ratio: 1 / 1; max-width: 600px;
  width: 100%; justify-self: end;
}
.collage {
  position: absolute; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.collage img { width: 100%; height: 100%; object-fit: cover; }
.collage--main { inset: 0 0 0 0; transform: rotate(-2deg); }
.collage--top {
  width: 50%; top: -20px; right: -20px; aspect-ratio: 4/3;
  transform: rotate(4deg);
}
.collage--bot {
  width: 42%; bottom: -30px; left: -30px; aspect-ratio: 1/1;
  transform: rotate(-6deg);
}
.collage__tag {
  position: absolute; top: 10px; left: 10px;
  background: white; border-radius: 999px;
  padding: 6px 12px 6px 8px; font-size: 12px; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  box-shadow: var(--shadow-sm);
}
.collage__price {
  position: absolute; bottom: 14px; left: 14px;
  background: white; border-radius: var(--r-sm);
  padding: 8px 12px; font-size: 14px;
  box-shadow: var(--shadow);
}
.collage__price strong { font-size: 18px; }
.collage__price small { color: var(--ink-3); }
.collage__sticker {
  position: absolute; top: 50%; right: -30px;
  display: flex; align-items: center; gap: 10px;
  background: white; padding: 12px 16px 12px 12px;
  border-radius: var(--r); box-shadow: var(--shadow-lg);
  transform: rotate(3deg);
  z-index: 5;
}
.collage__sticker-t { font-size: 13px; font-weight: 700; }
.collage__sticker-s { font-size: 12px; color: var(--ink-2); }

.hero__searchpanel {
  grid-column: 1 / -1;
  margin-top: 8px;
}

@media (max-width: 980px) {
  .hero__inner--split { grid-template-columns: 1fr; gap: 40px; }
  .hero__collage { max-width: 100%; }
  .collage__sticker { right: 10px; }
}

/* ───────── Trust bar ───────── */
.trust {
  background: var(--cream-2);
  padding: 28px 0;
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
}
.trust__inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.trust__item { display: flex; gap: 14px; align-items: center; }
.trust__icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: var(--coral-tint); color: var(--coral-deep);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust__t { font-weight: 700; font-size: 15px; color: var(--ink); }
.trust__s { font-size: 13px; color: var(--ink-2); }
@media (max-width: 760px) {
  .trust__inner { grid-template-columns: repeat(2, 1fr); }
}

/* ───────── Categories ───────── */
.cats {
  padding: 100px 0;
  max-width: 1320px; margin: 0 auto;
}
.cats__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  padding: 0 clamp(20px, 5vw, 80px);
}
.cat {
  display: block; cursor: pointer;
  border-radius: var(--r-xl); overflow: hidden;
  background: white; transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat__img { aspect-ratio: 4/3; overflow: hidden; }
.cat__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.cat:hover .cat__img img { transform: scale(1.04); }
.cat__meta {
  padding: 18px 22px; display: flex; align-items: center; justify-content: space-between;
}
.cat__t { font-weight: 700; font-size: 17px; color: var(--ink); }
.cat__n { font-size: 13px; color: var(--ink-2); }
@media (max-width: 880px) { .cats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .cats__grid { grid-template-columns: 1fr; } }

/* ───────── How it works ───────── */
.how {
  background: var(--cream);
  padding: 100px clamp(20px, 5vw, 80px);
  border-radius: 60px;
  margin: 0 clamp(20px, 5vw, 80px);
}
.how__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1180px; margin: 60px auto 0;
}
.how__card {
  background: white; border-radius: var(--r-xl);
  padding: 32px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-100);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.how__card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.how__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.how__ic {
  width: 52px; height: 52px; border-radius: 16px;
  background: var(--coral-tint); color: var(--coral-deep);
  display: flex; align-items: center; justify-content: center;
}
.how__n {
  font-family: var(--display); font-weight: 700;
  font-size: 28px; color: var(--neutral-300);
  letter-spacing: -0.02em;
}
.how__t {
  font-family: var(--display); font-size: 24px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--ink); margin-bottom: 8px;
}
.how__s { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
@media (max-width: 880px) { .how__grid { grid-template-columns: 1fr; } }

/* ───────── Value prop ───────── */
.value { padding: 120px clamp(20px, 5vw, 80px); }
.value__inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px;
  align-items: center;
}
.value__copy { max-width: 560px; }
.value__list { list-style: none; padding: 0; margin: 36px 0 0; display: flex; flex-direction: column; gap: 16px; }
.value__list li { display: flex; gap: 14px; align-items: flex-start; }
.value__list strong { color: var(--ink); }
.value__list span { color: var(--ink-2); font-size: 15px; }
.value__check {
  width: 26px; height: 26px; border-radius: 999px;
  background: var(--coral); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.value__visual { position: relative; aspect-ratio: 4/5; }
.value__big {
  position: absolute; inset: 0; border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.value__big img { width: 100%; height: 100%; object-fit: cover; }
.value__floater {
  position: absolute; background: white; border-radius: var(--r);
  padding: 14px 16px; box-shadow: var(--shadow-lg);
  font-size: 13px; min-width: 220px;
}
.value__floater--a { top: 28px; left: -28px; }
.value__floater--b { bottom: 28px; right: -28px; min-width: 240px; }
.floater__row { display: flex; gap: 12px; align-items: center; }
.floater__icn { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.floater__t { font-weight: 700; color: var(--ink); font-size: 14px; }
.floater__s { font-size: 12px; color: var(--ink-2); }
.floater__price {
  font-family: var(--display); font-weight: 700; font-size: 28px;
  color: var(--ink); letter-spacing: -0.02em;
}
.floater__star { font-weight: 700; color: var(--ink); font-size: 13px; }
.floater__sub { font-size: 12px; color: var(--ink-2); }
.floater__bar {
  height: 6px; background: var(--neutral-100); border-radius: 999px;
  margin: 12px 0 6px; overflow: hidden;
}
.floater__bar span { display: block; width: 75%; height: 100%; background: var(--coral); border-radius: 999px; }
@media (max-width: 980px) {
  .value__inner { grid-template-columns: 1fr; gap: 50px; }
  .value__floater--a { left: 12px; }
  .value__floater--b { right: 12px; }
}

/* ───────── Featured ───────── */
.feat { padding: 60px 0 100px; max-width: 1320px; margin: 0 auto; }
.feat__nav { display: flex; gap: 8px; }
.feat__rail {
  display: flex; gap: 22px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px clamp(20px, 5vw, 80px) 26px;
  scrollbar-width: none;
}
.feat__rail::-webkit-scrollbar { display: none; }
.card {
  flex: 0 0 320px; scroll-snap-align: start;
  background: transparent;
}
.card__img {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 1/1; margin-bottom: 14px;
}
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__img img { transform: scale(1.04); }
.card__heart {
  position: absolute; top: 12px; right: 12px;
  width: 34px; height: 34px; border-radius: 999px;
  background: rgba(0,0,0,.18); border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: transform .2s var(--ease);
}
.card__heart:hover { transform: scale(1.08); }
.card__badge {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(6px);
  border-radius: 999px; padding: 6px 12px;
  font-size: 12px; font-weight: 600; color: var(--ink);
}
.card__badge span { color: var(--coral); }
.card__row { display: flex; justify-content: space-between; gap: 8px; }
.card__t { font-weight: 700; font-size: 15px; color: var(--ink); flex: 1; }
.card__r { font-size: 13px; color: var(--ink); font-weight: 600; }
.card__sub { font-size: 13px; color: var(--ink-2); margin-top: 2px; }
.card__price { margin-top: 6px; font-size: 14px; color: var(--ink-2); }
.card__price strong { font-size: 16px; color: var(--ink); }

/* ───────── Vendor ───────── */
.vendor {
  background: var(--char); color: var(--cream);
  padding: 120px clamp(20px, 5vw, 80px);
  border-radius: 60px;
  margin: 0 clamp(20px, 5vw, 80px) 60px;
}
.vendor__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.vendor__visual { position: relative; }
.vdash {
  background: var(--char-2); border-radius: var(--r-xl);
  padding: 24px; box-shadow: 0 30px 80px rgba(0,0,0,.3);
  border: 1px solid rgba(255,255,255,.06);
}
.vdash__hd { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.vdash__hd-l { display: flex; gap: 12px; align-items: center; }
.vdash__avatar {
  width: 42px; height: 42px; border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), var(--coral-2));
}
.vdash__name { font-weight: 700; font-size: 15px; color: var(--cream); }
.vdash__sub { font-size: 12px; color: rgba(255,248,243,.55); }
.vdash__pill {
  background: rgba(168,185,165,.18); color: #C8E0C2;
  font-size: 12px; font-weight: 600;
  padding: 6px 12px; border-radius: 999px;
}
.vdash__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 22px; }
.vdash__stat {
  background: rgba(255,255,255,.04); border-radius: var(--r);
  padding: 14px; display: flex; flex-direction: column; gap: 2px;
}
.vdash__stat span { font-size: 11px; color: rgba(255,248,243,.55); text-transform: uppercase; letter-spacing: .08em; }
.vdash__stat strong { font-family: var(--display); font-size: 26px; font-weight: 700; color: var(--cream); }
.vdash__stat i { font-style: normal; font-size: 11px; color: rgba(168,185,165,.9); }
.vdash__cal {
  background: rgba(255,255,255,.04); border-radius: var(--r);
  padding: 16px;
}
.vdash__cal-hd { font-size: 13px; font-weight: 700; margin-bottom: 12px; }
.vdash__cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.vc {
  height: 28px; display: flex; align-items: center; justify-content: center;
  font-size: 11px; border-radius: 6px; color: rgba(255,248,243,.6);
}
.vc--b { background: var(--coral); color: white; font-weight: 600; }
.vc--h { background: rgba(168,185,165,.4); color: var(--cream); }
.vdash__ping {
  position: absolute; top: 30px; right: -20px;
  background: white; color: var(--ink);
  padding: 12px 16px; border-radius: var(--r);
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
  font-size: 13px;
}
.vendor__copy { max-width: 540px; }
.vendor__features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px 28px;
  margin-top: 36px;
}
.vfeat { display: flex; gap: 14px; align-items: flex-start; }
.vfeat__ic {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,122,89,.18); color: var(--coral-2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vfeat__t { font-weight: 700; font-size: 15px; color: var(--cream); }
.vfeat__s { font-size: 13px; color: rgba(255,248,243,.65); }
.vendor__cta { display: flex; gap: 12px; margin-top: 40px; flex-wrap: wrap; }

@media (max-width: 980px) {
  .vendor__inner { grid-template-columns: 1fr; gap: 60px; }
  .vendor__features { grid-template-columns: 1fr; }
  .vdash__ping { right: 10px; }
}

/* ───────── Local launch ───────── */
.local { padding: 120px clamp(20px, 5vw, 80px); }
.local__inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px;
  align-items: center;
}
.hoods { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.hood {
  appearance: none; cursor: pointer;
  background: white; border: 1px solid var(--neutral-200);
  padding: 10px 16px; border-radius: 999px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: all .2s var(--ease);
}
.hood:hover { border-color: var(--coral); color: var(--coral); background: var(--coral-tint); }
.hood--more { background: transparent; border-style: dashed; color: var(--ink-3); }

.local__map { position: relative; }
.map {
  position: relative; aspect-ratio: 4/3.5;
  background: var(--cream); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--neutral-200);
}
.map__svg { width: 100%; height: 100%; display: block; }
.pin { position: absolute; transform: translate(-50%, -100%); pointer-events: none; }
.pin__d {
  display: block; width: 14px; height: 14px; border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 0 0 6px rgba(255,122,89,.22), 0 4px 10px rgba(255,122,89,.4);
  margin: 0 auto;
}
.pin__l {
  display: inline-block; margin-top: 6px;
  background: white; padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-sm); white-space: nowrap;
}
.map__sticker {
  position: absolute; bottom: 18px; left: 18px;
  background: white; padding: 12px 16px 12px 12px;
  border-radius: var(--r); display: flex; gap: 10px; align-items: center;
  box-shadow: var(--shadow);
}
@media (max-width: 980px) {
  .local__inner { grid-template-columns: 1fr; gap: 50px; }
}

/* ───────── Final CTA ───────── */
.final {
  background: linear-gradient(180deg, var(--coral-tint) 0%, var(--cream) 100%);
  padding: 120px clamp(20px, 5vw, 80px) 100px;
  text-align: center;
  border-top-left-radius: 60px; border-top-right-radius: 60px;
  position: relative; overflow: hidden;
}
.final::before, .final::after {
  content: ''; position: absolute; border-radius: 999px; pointer-events: none;
  filter: blur(60px);
}
.final::before {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
  opacity: .25; top: -100px; left: 10%;
}
.final::after {
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--sage) 0%, transparent 70%);
  opacity: .35; bottom: -120px; right: 10%;
}
.final__inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.final__h {
  font-family: var(--display);
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1; letter-spacing: -0.035em; font-weight: 700;
  margin: 16px 0 24px; color: var(--ink);
}
.final__h em { font-style: normal; color: var(--coral); }
.final__sub { font-size: 18px; color: var(--ink-2); max-width: 50ch; margin: 0 auto 36px; }
.final__sub--small { font-size: 14px; margin-top: 24px; }
.final__sub--small a { color: var(--coral); font-weight: 600; border-bottom: 1px solid currentColor; }
.final__searchwrap { display: flex; justify-content: center; }

/* ───────── Footer ───────── */
.ft {
  background: var(--cream-2);
  padding: 80px clamp(20px, 5vw, 80px) 32px;
  border-top: 1px solid var(--neutral-200);
}
.ft__inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 48px;
}
.ft__brand p { font-size: 14px; color: var(--ink-2); margin: 16px 0 12px; max-width: 32ch; }
.ft__sub { font-size: 13px; color: var(--ink-3); }
.ft__h { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 16px; letter-spacing: .02em; }
.ft__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ft__col a { font-size: 14px; color: var(--ink-2); transition: color .2s var(--ease); }
.ft__col a:hover { color: var(--coral); }
.ft__base {
  max-width: 1320px; margin: 56px auto 0;
  padding-top: 28px; border-top: 1px solid var(--neutral-200);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--ink-3); flex-wrap: wrap; gap: 16px;
}
.ft__legal { display: flex; gap: 24px; }
@media (max-width: 880px) {
  .ft__inner { grid-template-columns: 1fr 1fr; }
}

/* ───────── Mobile stage (right rail) ───────── */
.stage {
  display: grid; grid-template-columns: 1fr 480px; gap: 40px;
  max-width: 100%; align-items: stretch;
}
.stage__main { min-width: 0; }
.stage__phone {
  position: sticky; top: 0; align-self: start;
  height: 100vh; display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(60% 60% at 30% 20%, rgba(255,122,89,.10), transparent 70%),
    radial-gradient(60% 60% at 80% 80%, rgba(168,185,165,.18), transparent 70%),
    var(--cream);
  border-left: 1px solid var(--neutral-200);
}
.stage__phone-inner { transform: scale(.78); transform-origin: center; }
@media (max-width: 1180px) {
  .stage { grid-template-columns: 1fr; }
  .stage__phone { display: none; }
}

/* ───────── Variant switcher (top of page floating tab) ───────── */
.variant-switch {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 60;
  display: inline-flex; padding: 4px;
  background: rgba(255,255,255,.85); backdrop-filter: blur(12px);
  border: 1px solid var(--neutral-200); border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.variant-switch button {
  appearance: none; cursor: pointer; border: 0; background: transparent;
  padding: 6px 14px; font-size: 12px; font-weight: 600; color: var(--ink-2);
  border-radius: 999px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.variant-switch button.on { background: var(--ink); color: var(--cream); }
