:root {
  --g: #88b04b;
  --gd: #6a8e38;
  --dk: #1a1614;
  --wm: #6b5c3e;
  --bg: #fdfcfb;
  --bgs: #f5f1ed;
  --wh: #ffffff;
  --bd: rgba(136, 176, 75, 0.2);
  --bdn: #e8e3dc;
  --lime: #d6f285;
  --lime2: #a8d855;
  --header-h: 81px;
  --font: "Montserrat", sans-serif;
  --font-alt: "Montserrat Alternates", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--dk);
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font-family: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: rgba(91, 138, 34, 0.3);
  border-radius: 3px;
}

[hidden] {
  display: none !important;
}

body[data-landing-tab="seller"] .hero__wave path {
  fill: #ffffff;
}

.header-spacer {
  height: var(--header-h);
}

/* ── Header ─────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--wh);
  border-bottom: 1px solid var(--bd);
  transition: box-shadow 0.2s;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.site-header__inner {
  max-width: 1562px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  height: 60px;
}

.brand-mark {
  position: absolute;
  top: -12px;
  left: 0;
  width: 120px;
  height: 120px;
  overflow: hidden;
  background: var(--g);
  box-shadow:
    0 9px 7px 0 rgba(0, 0, 0, 0.1),
    0 4px 3px 0 rgba(0, 0, 0, 0.07);
}

.brand-mark__flower {
  position: absolute;
  left: 50%;
  top: 28.21px;
  width: 37.34px;
  height: 37.34px;
  transform: translateX(-50%);
  overflow: hidden;
}

.brand-mark__word {
  position: absolute;
  left: 35px;
  top: 66px;
  width: 49px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 18.67px;
}

.brand-mark__mpf {
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: -5px;
  width: 100%;
  text-align: center;
}

.brand-mark__lower {
  font-family: var(--font-alt);
  font-weight: 500;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  text-align: center;
  width: 100%;
  text-transform: lowercase;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.275px;
  text-transform: uppercase;
  color: var(--dk);
  white-space: nowrap;
  transition: opacity 0.15s, color 0.15s, font-weight 0.15s;
}

.nav-link:hover {
  opacity: 0.7;
}

.nav-link.is-active {
  font-weight: 600;
  color: var(--g);
}

.nav-mobile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-chip {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 6px 12px;
  color: var(--dk);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.nav-chip.is-active {
  background: var(--g);
  color: #fff;
  border-color: var(--g);
}

/* ── Buttons ────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: opacity 0.15s, background 0.15s, color 0.15s;
  border: 1px solid transparent;
  line-height: 1.2;
}

.btn:hover {
  opacity: 0.85;
}

.btn-green {
  background: var(--g);
  color: #fff;
}

.btn-green--lg {
  font-size: 15px;
  padding: 20px 40px;
}

.btn-outline {
  border: 1px solid rgba(26, 22, 20, 0.2);
  color: var(--dk);
}

.btn-outline:hover {
  opacity: 0.6;
}

.btn-hero {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-hero.is-active,
.btn-hero--solid {
  background: var(--wh);
  color: var(--g);
  border-color: transparent;
}

.btn-hint {
  font-size: 12px;
  text-transform: lowercase;
  letter-spacing: 0;
  opacity: 0.6;
  font-weight: 400;
}

/* ── Hero ───────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, var(--gd) 0%, var(--g) 55%, #9dc45a 100%);
  min-height: 90vh;
}

.hero__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero__car {
  display: none;
}

.hero-mobile {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  padding: 96px 20px 0;
  width: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: #f0e8d8;
  border: 1px solid #e8d5b5;
  color: var(--wm);
  margin-bottom: 28px;
}

.pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--g);
}

.hero__title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}

.hero__title-light {
  font-weight: 300;
  color: var(--lime);
}

.hero__lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 24.5px;
  font-weight: 300;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  width: 100%;
  max-width: 353px;
}

.hero__actions .btn {
  width: 100%;
}

.hero__emoji {
  font-size: 18px;
  line-height: 1;
}

.hero__stats {
  display: flex;
  gap: 40px;
  padding-top: 20px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.stat__value {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
}

.stat__value--sm {
  font-size: 14px;
  line-height: 17.5px;
}

.stat__label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-top: 2px;
}

.hero__car-mobile {
  width: 100%;
  overflow: hidden;
  margin-top: 16px;
  height: 212px;
}

.hero__car-mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bar-mobile {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.16);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__bar-mobile p {
  padding: 10px 0;
}

.hero-desktop {
  display: none;
}

.hero__bar-desktop {
  display: none;
}

.hero__wave {
  display: block;
  width: 100%;
  margin-bottom: -1px;
}

/* ── Shared section bits ────────────────────────────────── */

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 12px;
  margin-bottom: 20px;
  background: rgba(136, 176, 75, 0.14);
  color: var(--gd);
}

.section-title {
  color: var(--dk);
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 40px);
  line-height: 1.2;
}

.section--beige {
  background: var(--bgs);
  padding: 64px 20px;
}

.section--white {
  background: var(--wh);
  padding: 64px 20px;
}

.section--green {
  background: var(--g);
  padding: 64px 20px;
}

.section--dark {
  background: var(--dk);
  padding: 64px 20px;
}

.wrap-6xl {
  max-width: 1152px;
  margin: 0 auto;
}

.wrap-5xl {
  max-width: 1024px;
  margin: 0 auto;
}

.wrap-3xl {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.wrap-2xl {
  max-width: 672px;
  margin: 0 auto;
  text-align: center;
}

#buyer-section,
#seller-section {
  scroll-margin-top: 96px;
}

/* ── Features ───────────────────────────────────────────── */

.features__title {
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--bdn);
  border: 1px solid var(--bdn);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  background: var(--wh);
  transition: box-shadow 0.15s;
}

.feature-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  background: rgba(136, 176, 75, 0.1);
}

.feature-card h3 {
  color: var(--dk);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.375;
}

.feature-card p {
  color: var(--wm);
  font-weight: 300;
  font-size: 13px;
  line-height: 1.625;
}

/* ── Eco ────────────────────────────────────────────────── */

.eco {
  position: relative;
  overflow: hidden;
  background: #1a1614;
}

.eco__top {
  position: relative;
  z-index: 10;
  max-width: 1152px;
  margin: 0 auto;
  padding: 64px 20px 0;
}

.eco__label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: rgba(136, 176, 75, 0.18);
}

.eco__label p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lime2);
}

.eco__title {
  margin-bottom: 16px;
  line-height: 1.25;
  font-family: var(--font);
  font-size: clamp(28px, 3.5vw, 42px);
}

.eco__title-strong {
  color: #fff;
  font-weight: 700;
}

.eco__title-light {
  font-weight: 300;
  color: var(--g);
}

.eco__lead {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 300;
  max-width: 512px;
  color: rgba(255, 255, 255, 0.55);
}

.eco-specs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1024px;
}

.eco-spec {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(17, 19, 20, 0.86);
  border: 1px solid var(--g);
  padding: 20px;
  width: 100%;
  flex-shrink: 0;
}

.eco-spec__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  background: rgba(136, 176, 75, 0.2);
  width: 36px;
  height: 36px;
}

.eco-spec__label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.5px;
  line-height: 15px;
  color: var(--g);
}

.eco-spec__value {
  font-weight: 700;
  color: #fff;
  font-size: 18px;
  line-height: 22.5px;
  margin-top: 2px;
}

.eco-spec__desc {
  font-weight: 300;
  font-size: 11px;
  line-height: 17.875px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.45);
}

.eco__media {
  position: relative;
  width: 100%;
  margin-top: -20px;
}

.eco__fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  background: linear-gradient(to top, rgba(17, 19, 20, 0.55) 0%, transparent 30%);
}

.eco__img {
  width: 100%;
  object-fit: cover;
  object-position: center 12%;
  height: clamp(320px, 45vw, 562px);
}

.eco-co2 {
  position: absolute;
  z-index: 20;
  text-align: center;
  left: 50%;
  top: 22%;
  transform: translateX(-50%);
  background: rgba(136, 176, 75, 0.73);
  border: 1px solid var(--g);
  padding: 20px 24px;
  width: 157px;
}

.eco-co2__num {
  font-weight: 800;
  font-size: 40px;
  line-height: 40px;
  color: var(--g);
}

.eco-co2__grams {
  font-weight: 600;
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  margin-top: 4px;
}

.eco-co2__sub {
  font-weight: 300;
  font-size: 10px;
  line-height: 15px;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Comparison ─────────────────────────────────────────── */

.compare__title {
  margin-bottom: 8px;
  font-size: clamp(22px, 3.5vw, 38px);
}

.compare__sub {
  margin-bottom: 48px;
  font-size: 15px;
  font-weight: 300;
  color: var(--wm);
}

.compare-scroll {
  overflow-x: auto;
  margin: 0 -20px;
  padding: 0 20px;
}

.compare-table {
  border: 1px solid var(--bdn);
  min-width: 560px;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  font-size: 13px;
  border-top: 1px solid var(--bdn);
}

.compare-row:first-child {
  border-top: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.compare-row__cell {
  padding: 16px 24px;
}

.compare-head__aspect {
  background: #ece8e0;
  color: var(--wm);
}

.compare-head__mp {
  background: var(--g);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.compare-head__reg {
  background: #e4e0d8;
  color: var(--wm);
}

.compare-row:nth-child(even) {
  background: var(--wh);
}

.compare-row:nth-child(odd):not(:first-child) {
  background: rgba(245, 241, 237, 0.5);
}

.compare-row__aspect {
  color: var(--dk);
  font-weight: 600;
}

.compare-row__mp {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--gd);
}

.compare-check {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--g);
  font-weight: 700;
}

.compare-row__mp span:last-child {
  font-weight: 400;
}

.compare-row__reg {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #9a8e7a;
  font-weight: 300;
}

.compare-x {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Buyer CTA ──────────────────────────────────────────── */

.buyer-cta__star {
  font-size: 60px;
  margin-bottom: 24px;
  line-height: 1;
}

.buyer-cta__title {
  font-size: clamp(22px, 3.5vw, 36px);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 700;
}

.bookmark-hint {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  margin-bottom: 32px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.bookmark-hint kbd {
  padding: 2px 8px;
  font-size: 11px;
  font-family: ui-monospace, monospace;
  background: rgba(255, 255, 255, 0.25);
}

.buyer-cta__lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.625;
  font-weight: 300;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  max-width: 448px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.waitlist-form input {
  flex: 1;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  border: none;
  background: var(--wh);
  color: var(--dk);
}

.waitlist-form button {
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  background: var(--dk);
  border: none;
  cursor: pointer;
}

.waitlist-ok {
  padding: 20px 32px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
}

/* ── Seller ─────────────────────────────────────────────── */

.seller-grid {
  max-width: 1152px;
  margin: 0 auto;
  display: grid;
  gap: 48px;
}

.seller__title {
  margin-bottom: 40px;
  font-size: clamp(22px, 3.5vw, 38px);
}

.perk-list {
  border-top: 1px solid var(--bdn);
}

.perk {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--bdn);
}

.perk__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  background: rgba(136, 176, 75, 0.1);
}

.perk h4 {
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--dk);
  font-weight: 600;
}

.perk p {
  font-size: 13px;
  line-height: 1.625;
  color: var(--wm);
  font-weight: 300;
}

.mock {
  margin-top: 40px;
  background: #16191c;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mock__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #1e2326;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock__url {
  margin-left: 12px;
  flex: 1;
  padding: 4px 12px;
  font-size: 10px;
  background: #16191c;
  color: rgba(255, 255, 255, 0.35);
}

.mock__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.mock__head-title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.badge-active {
  font-size: 10px;
  padding: 4px 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(136, 176, 75, 0.2);
  color: var(--lime2);
  font-weight: 700;
}

.mock-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid var(--g);
}

.mock-stat__l {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}

.mock-stat__v {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.mock__caption {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 12px;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.22);
  font-weight: 700;
}

.mock-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mock-item span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.mock-item button {
  font-size: 10px;
  padding: 4px 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(136, 176, 75, 0.2);
  color: var(--lime2);
  font-weight: 700;
}

/* ── Seller CTA ─────────────────────────────────────────── */

.slots {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  margin: 0 auto 40px;
  width: 100%;
  max-width: 576px;
  background: rgba(136, 176, 75, 0.1);
  border: 1px solid rgba(136, 176, 75, 0.25);
}

.slots__bars {
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
  justify-content: flex-start;
  flex: 1;
  min-width: 0;
}

.slot-bar {
  flex: 1 1 0;
  min-width: 0;
  height: 16px;
  background: var(--g);
}

.slot-bar.is-taken {
  background: rgba(255, 255, 255, 0.12);
}

.slots__label {
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
  color: var(--g);
  font-weight: 600;
}

.seller-cta__title {
  font-size: clamp(22px, 3.5vw, 38px);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.seller-cta__title-light {
  color: var(--g);
  font-weight: 300;
}

.seller-cta__lead {
  font-size: 16px;
  line-height: 1.625;
  margin-bottom: 40px;
  max-width: 576px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

/* ── Footer ─────────────────────────────────────────────── */

.site-footer {
  position: relative;
  padding: 64px 20px 0;
  overflow: hidden;
  background: #111314;
}

.site-footer__bg {
  position: absolute;
  inset: 0;
  background: url("/img/footer-bg.jpg") center / cover no-repeat;
  opacity: 0.12;
  background-position: 30% center;
  pointer-events: none;
}

.site-footer__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(17, 19, 20, 0.6) 0%,
    rgba(17, 19, 20, 0.2) 60%,
    rgba(17, 19, 20, 0.55) 100%
  );
}

.site-footer__inner {
  position: relative;
  z-index: 10;
  max-width: 1152px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  height: 28px;
  width: auto;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 12px;
  max-width: 180px;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-col__h {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a,
.footer-contacts a,
.footer-contacts p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.15s;
}

.footer-col a:hover,
.footer-contacts a:hover {
  color: #fff;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.social {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(136, 176, 75, 0.15);
  border: 1px solid rgba(136, 176, 75, 0.3);
  transition: opacity 0.15s;
}

.social:hover {
  opacity: 0.8;
}

.footer-legal {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.footer-legal p {
  font-size: 13px;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  max-width: 480px;
}

.footer-legal small {
  font-size: 11px;
}

.pay-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pay-badge {
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
}

/* ── Inner pages ────────────────────────────────────────── */

.page-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.page-inner h1 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
}

.page-inner p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--wm);
  font-weight: 300;
  margin-bottom: 12px;
}

.page-inner h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 32px 0 12px;
}

.page-inner ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.page-inner li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--wm);
  font-weight: 300;
  margin-bottom: 8px;
}

.page-inner a {
  color: var(--g);
  text-decoration: underline;
}

.page-inner .btn {
  text-decoration: none;
  color: #fff;
  margin-top: 8px;
}

.page-inner__meta {
  margin-top: 32px;
  font-size: 13px;
  opacity: 0.7;
}

.waitlist-error {
  margin-top: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.footer-legal a {
  color: inherit;
  text-decoration: underline;
}

/* ── Pin badge ──────────────────────────────────────────── */

.pin {
  position: absolute;
  z-index: 20;
  left: 12%;
  top: 28%;
}

.pin__card {
  position: relative;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(17, 19, 20, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  min-width: 180px;
}

.pin__row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.pin__pulse {
  position: relative;
  display: flex;
  width: 10px;
  height: 10px;
}

.pin__pulse-ring {
  position: absolute;
  display: inline-flex;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pin__pulse-dot {
  position: relative;
  display: inline-flex;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: var(--g);
}

.pin__kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--lime);
}

.pin__title {
  color: #fff;
  font-size: 13px;
  line-height: 1.375;
  font-weight: 600;
}

.pin__sub {
  font-size: 11px;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}

.pin__arrow {
  position: absolute;
  bottom: -9px;
  left: 24px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid rgba(17, 19, 20, 0.88);
}

.pin__dot {
  display: flex;
  justify-content: flex-start;
  padding-left: 18px;
  margin-top: 9px;
}

.pin__dot span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--g);
  box-shadow: 0 0 0 3px rgba(136, 176, 75, 0.3);
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* ── Scroll top ─────────────────────────────────────────── */

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--g);
  box-shadow:
    0 10px 7.5px rgba(0, 0, 0, 0.1),
    0 4px 3px rgba(0, 0, 0, 0.1);
  transition: opacity 0.15s;
}

.scroll-top:hover {
  opacity: 0.8;
}

.scroll-top[hidden] {
  display: none;
}

/* ── sm ≥ 640 ───────────────────────────────────────────── */

@media (min-width: 640px) {
  .site-header__inner {
    padding: 16px 32px;
  }

  .nav-desktop {
    display: flex;
    gap: 32px;
  }

  .nav-mobile {
    display: none;
  }

  .section--beige,
  .section--white,
  .section--green,
  .section--dark {
    padding: 96px 32px;
  }

  .eco__top {
    padding: 96px 32px 0;
  }

  .site-footer {
    padding: 64px 32px 0;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .eco-specs {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .eco-spec {
    width: 300px;
  }

  .compare-scroll {
    margin: 0;
    padding: 0;
  }

  .waitlist-form {
    flex-direction: row;
  }

  .footer-cols {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }

  .footer-legal {
    flex-direction: row;
  }

  .page-inner {
    padding: 64px 32px 96px;
  }
}

/* ── md ≥ 768 ───────────────────────────────────────────── */

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: auto 1fr auto;
    gap: 40px;
  }
}

/* ── lg ≥ 1024 ──────────────────────────────────────────── */

@media (min-width: 1024px) {
  .hero-mobile {
    display: none;
  }

  .hero-desktop {
    display: flex;
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 128px 32px 0;
    flex-direction: row;
    align-items: flex-end;
    min-height: 90vh;
    width: 100%;
  }

  .hero-desktop__copy {
    flex: 1;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 560px;
  }

  .hero-desktop .pill {
    margin-bottom: 0;
  }

  .hero-desktop .hero__title {
    font-size: clamp(36px, 4.8vw, 64px);
    margin-bottom: 0;
  }

  .hero-desktop .hero__lead {
    font-size: clamp(14px, 1.5vw, 17px);
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 0;
  }

  .hero-desktop .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: none;
    margin-bottom: 0;
    width: auto;
  }

  .hero-desktop .hero__actions .btn {
    width: auto;
  }

  .hero-desktop .hero__stats {
    margin-top: 4px;
  }

  .hero__car {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 52%;
    z-index: 10;
    pointer-events: none;
  }

  .hero__car-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 160px;
    border-radius: 999px;
    filter: blur(48px);
    pointer-events: none;
    background: rgba(180, 230, 80, 0.12);
  }

  .hero__car img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.28));
  }

  .hero__bar-desktop {
    display: flex;
    position: relative;
    z-index: 10;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 16px 32px;
    background: rgba(0, 0, 0, 0.16);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
  }

  .hero__bar-desktop span {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .seller-grid {
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
  }

  .mock {
    margin-top: 56px;
  }

  .eco-co2 {
    left: 34%;
    top: 26%;
    transform: none;
  }
}
