/* ============================================================
   PropertyOS Landing — styles.css
   Direction: Bold editorial. Big type. Lots of air.
   Red on near-black hero. Clean white body.
   ============================================================ */

:root {
  --red:          #e53e3e;
  --red-dark:     #c53030;
  --red-light:    #fc8181;
  --emerald:      #276749;
  --emerald-mid:  #2f855a;
  --emerald-light:#68d391;

  --black:        #0d0d0d;
  --near-black:   #111111;
  --dark-1:       #1a1a1a;
  --dark-2:       #242424;
  --dark-border:  #2e2e2e;

  --white:        #ffffff;
  --off-white:    #f9f9f7;
  --light-1:      #f4f4f2;
  --light-2:      #ededeb;
  --border:       #e5e5e3;

  --text:         #111111;
  --text-mid:     #444444;
  --text-muted:   #888888;
  --text-inv:     #f5f5f5;
  --text-inv-mid: #aaaaaa;

  --font:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:   'JetBrains Mono', 'Fira Code', monospace;

  --nav-h:  4rem;
  --r:      0.5rem;
  --r-lg:   1rem;
  --r-xl:   1.5rem;
  --r-pill: 9999px;

  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select { font-family: inherit; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

/* ── CONTAINER ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

/* ── SECTION ─────────────────────────────────────────────── */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--dark {
  background: var(--near-black);
  color: var(--text-inv);
}
.section--alt { background: var(--off-white); }
.section--emerald {
  background: var(--emerald);
  color: var(--white);
}

/* Individual section overrides */
#solutions    { background: var(--white); }
#features     { background: var(--off-white); }
#how-it-works { background: var(--white); }
#pricing      { background: var(--light-1); }
#testimonials { background: var(--near-black); color: var(--text-inv); }
#faq          { background: var(--white); }
#about        { background: var(--off-white); }

/* ── SECTION LABEL ───────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(229,62,62,0.3);
  border-radius: var(--r-pill);
  background: rgba(229,62,62,0.06);
}
.section-label--light {
  color: var(--emerald-light);
  border-color: rgba(104,211,145,0.3);
  background: rgba(104,211,145,0.08);
}
.section-label--inv {
  color: var(--red-light);
  border-color: rgba(252,129,129,0.3);
  background: rgba(252,129,129,0.08);
}

/* ── TYPOGRAPHY UTILS ────────────────────────────────────── */
.text-red     { color: var(--red); }
.text-gradient {
  background: linear-gradient(135deg, var(--red-light), var(--red) 50%, #b83280);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-em {
  background: linear-gradient(135deg, var(--emerald-light), var(--emerald-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: all 180ms var(--ease);
  position: relative;
}
.btn--primary {
  background: var(--red);
  color: #fff;
}
.btn--primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(229,62,62,0.35); }
.btn--dark {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--border);
}
.btn--dark:hover { border-color: #aaa; transform: translateY(-1px); }
.btn--ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.4); }
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn--outline-dark {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--outline-dark:hover { border-color: var(--red); color: var(--red); }
.btn--lg { padding: 1rem 2.25rem; font-size: 1.0625rem; }
.btn--sm { padding: 0.45rem 1.1rem; font-size: 0.8125rem; }
.btn--em  { background: var(--emerald-mid); color: #fff; }
.btn--em:hover { background: var(--emerald); transform: translateY(-1px); }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
  transition: background 200ms var(--ease), border-bottom 200ms var(--ease);
}
.nav--scrolled {
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dark-border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav__logo-icon {
  width: 2rem; height: 2rem;
  background: var(--red);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav__logo-prefix { color: var(--white); }
.nav__logo-suffix { color: var(--red); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__link {
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  border-radius: var(--r);
  transition: color 150ms, background 150ms;
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav__actions { display: flex; align-items: center; gap: 0.625rem; }
#nav-signin {
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r);
  background: rgba(255,255,255,0.07);
  transition: all 150ms;
  text-decoration: none;
}
#nav-signin:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); color: #fff; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: var(--r);
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 99px;
  transition: all 250ms var(--ease);
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(13,13,13,0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--dark-border);
  padding: 1.25rem 1.5rem 2rem;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: var(--r);
  transition: color 150ms, background 150ms;
}
.nav__mobile-link:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav__mobile-cta {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 0 0;
  border-top: 1px solid var(--dark-border);
  margin-top: 0.5rem;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: var(--near-black);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% -5%, rgba(229,62,62,0.15) 0%, transparent 65%),
    radial-gradient(ellipse 35% 35% at 85% 70%, rgba(39,103,73,0.1) 0%, transparent 55%);
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, black 0%, transparent 80%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--red-light);
  border: 1px solid rgba(252,129,129,0.25);
  background: rgba(252,129,129,0.08);
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-pill);
  margin-bottom: 2rem;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  background: var(--red-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}
.hero__headline {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
  white-space: pre-line;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.175rem);
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 0.75rem;
}
.hero__sub2 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--emerald-light);
  margin-bottom: 2.25rem;
  letter-spacing: 0.01em;
}
.hero__platform-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.35rem 0.875rem;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 180ms;
  letter-spacing: 0.01em;
}
.platform-pill--manage {
  background: rgba(229,62,62,0.12);
  color: var(--red-light);
  border: 1px solid rgba(229,62,62,0.25);
}
.platform-pill--manage:hover { background: rgba(229,62,62,0.22); border-color: rgba(229,62,62,0.5); }
.platform-pill--listings {
  background: rgba(39,103,73,0.18);
  color: var(--emerald-light);
  border: 1px solid rgba(104,211,145,0.25);
}
.platform-pill--listings:hover { background: rgba(39,103,73,0.3); border-color: rgba(104,211,145,0.5); }
.platform-pill__connector {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.25);
  user-select: none;
}
.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero__trust {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 3rem;
  letter-spacing: 0.01em;
}
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero__stat { text-align: center; }
.hero__stat-value {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hero__stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
}

/* ── SOCIAL PROOF ────────────────────────────────────────── */
.social-proof {
  background: var(--dark-1);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 1.25rem 0;
}
.social-proof__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.social-proof__text {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  white-space: nowrap;
}
.social-proof__countries {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.social-proof__country {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}
.social-proof__flag { font-size: 1rem; }

/* ── PROBLEMS ────────────────────────────────────────────── */
.problems__header { text-align: center; max-width: 540px; margin: 0 auto 3.5rem; }
.problems__headline {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.problems__sub { font-size: 1.0625rem; color: var(--text-muted); }
.problems__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: border-color 200ms, box-shadow 200ms;
}
.problem-card:hover { border-color: var(--red); box-shadow: 0 0 0 1px var(--red); }
.problem-card__icon {
  width: 2.5rem; height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(229,62,62,0.08);
  border-radius: var(--r);
  color: var(--red);
  margin-bottom: 1.25rem;
}
.problem-card__pain {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.problem-card__solution {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.problem-card__description { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.6; }

/* ── FEATURES ────────────────────────────────────────────── */
.features__header { text-align: center; max-width: 560px; margin: 0 auto 3.5rem; }
.features__headline {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.features__sub { font-size: 1.0625rem; color: var(--text-muted); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.feature-card {
  background: var(--off-white);
  padding: 1.75rem;
  transition: background 180ms;
}
.feature-card:hover { background: var(--white); }
.feature-card__icon {
  width: 2.25rem; height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 1rem;
}
.feature-card__title { font-size: 0.9375rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.feature-card__desc  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ── LISTINGS SECTION ────────────────────────────────────── */
.listings-section {
  background: var(--near-black);
  color: var(--text-inv);
}
.listings__header { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.listings__headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}
.listings__sub { font-size: 1.0625rem; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 1.5rem; }
.listings__platform-badge { margin-bottom: 1.5rem; }
.badge--green {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.8rem;
  background: rgba(104,211,145,0.1);
  color: var(--emerald-light);
  border: 1px solid rgba(104,211,145,0.25);
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 600;
}
.badge--green::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--emerald-light);
}
.listings__ctas { display: flex; justify-content: center; gap: 0.875rem; flex-wrap: wrap; margin-bottom: 3rem; }
.listings__flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  border: 1px solid var(--dark-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.listings-flow__step {
  flex: 1;
  min-width: 160px;
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--dark-border);
  position: relative;
}
.listings-flow__step:last-child { border-right: none; }
.listings-flow__arrow {
  display: none;
}
.listings-flow__num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}
.listings-flow__label { font-size: 0.9375rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.listings-flow__desc  { font-size: 0.8125rem; color: rgba(255,255,255,0.4); line-height: 1.5; }
.listings__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--dark-border);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 3rem;
}
.listings-card {
  background: var(--dark-1);
  padding: 1.75rem;
  transition: background 180ms;
}
.listings-card:hover { background: var(--dark-2); }
.listings-card__icon {
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--emerald-light);
  margin-bottom: 1rem;
}
.listings-card__title { font-size: 0.9375rem; font-weight: 700; color: var(--white); margin-bottom: 0.35rem; }
.listings-card__desc  { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.ecosystem-callout {
  border: 1px solid var(--dark-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.ecosystem-callout__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}
@media (max-width: 720px) {
  .ecosystem-callout__inner { grid-template-columns: 1fr; }
  .ecosystem-callout__sync { border-left: none; border-right: none; border-top: 1px solid var(--dark-border); border-bottom: 1px solid var(--dark-border); }
}
.ecosystem-callout__platform {
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
.ecosystem-callout__platform--listings { background: rgba(39,103,73,0.07); }
.ecosystem-callout__icon {
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(229,62,62,0.1);
  border-radius: var(--r-lg);
  color: var(--red-light);
}
.ecosystem-callout__platform--listings .ecosystem-callout__icon { background: rgba(39,103,73,0.18); color: var(--emerald-light); }
.ecosystem-callout__name { font-size: 1.0625rem; font-weight: 700; color: var(--white); }
.ecosystem-callout__desc { font-size: 0.875rem; color: rgba(255,255,255,0.45); max-width: 220px; line-height: 1.55; }
.ecosystem-callout__sync {
  padding: 2rem 1.25rem;
  border-left: 1px solid var(--dark-border);
  border-right: 1px solid var(--dark-border);
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem;
  min-width: 170px;
}
.ecosystem-callout__sync-line {
  width: 1px; flex: 1; min-height: 16px;
  background: linear-gradient(to bottom, transparent, var(--dark-border), transparent);
}
.ecosystem-callout__sync-badges { display: flex; flex-direction: column; gap: 0.35rem; align-items: center; }
.sync-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--dark-border);
  border-radius: var(--r-pill);
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how__header { text-align: center; max-width: 480px; margin: 0 auto 3.5rem; }
.how__headline {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.how__sub { font-size: 1.0625rem; color: var(--text-muted); }
.how__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.step {
  position: relative;
  padding: 2rem;
  border-left: 2px solid var(--border);
}
.step__number {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.step__title { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.625rem; }
.step__desc { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.65; }
.how__demo-cta { text-align: center; }
.how__demo-note { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.75rem; }

/* ── STATS ────────────────────────────────────────────────── */
.stats { background: var(--near-black); }
.stats__headline {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--dark-border);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--dark-1);
  padding: 2.25rem 2rem;
  text-align: center;
}
.stat-item__value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-item__label { font-size: 0.9375rem; font-weight: 600; color: rgba(255,255,255,0.6); }
.stat-item__sub   { font-size: 0.8125rem; color: rgba(255,255,255,0.3); margin-top: 0.2rem; }

/* ── PRICING ─────────────────────────────────────────────── */
.pricing__header { text-align: center; max-width: 520px; margin: 0 auto 3rem; }
.pricing__headline {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.pricing__sub { font-size: 1.0625rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing__annual-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--emerald-mid);
  margin-bottom: 1.25rem;
}
.billing-toggle {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 0.2rem;
  background: var(--white);
  margin-bottom: 1.25rem;
}
.billing-toggle__btn {
  padding: 0.375rem 1.1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 150ms;
  display: flex; align-items: center; gap: 0.375rem;
}
.billing-toggle__btn--active { background: var(--text); color: var(--white); }
.billing-toggle__save {
  font-size: 0.6875rem;
  font-weight: 700;
  background: var(--emerald-light);
  color: var(--emerald);
  border-radius: var(--r-pill);
  padding: 0.1rem 0.45rem;
}
.currency-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.currency-selector__label { display: flex; align-items: center; gap: 0.3rem; font-weight: 500; }
.currency-selector__select {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.3rem 2rem 0.3rem 0.6rem;
  font-size: 0.875rem;
  color: var(--text);
  background: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23dc2626'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 1rem;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.currency-selector__detected { font-size: 0.75rem; color: var(--red); font-weight: 600; }
.promo-code-section { margin-top: 0.75rem; }
.promo-toggle { font-size: 0.8125rem; color: var(--text-muted); border-bottom: 1px dashed currentColor; padding-bottom: 1px; transition: color 150ms; }
.promo-toggle:hover { color: var(--red); }
.promo-input-wrap { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; justify-content: center; }
.promo-code-input {
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0 0.75rem;
  font-size: 0.875rem;
  width: 160px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.promo-status { font-size: 0.8125rem; font-weight: 600; }
.promo-status--valid   { color: var(--emerald-mid); }
.promo-status--invalid { color: var(--red); }
.promo-status--checking { color: var(--text-muted); }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.pricing__footnote { text-align: center; font-size: 0.8125rem; color: var(--text-muted); }
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 200ms, border-color 200ms;
}
.pricing-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.pricing-card--highlight {
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}
.pricing-card--highlight:hover { box-shadow: 0 0 0 1px var(--red), 0 10px 30px rgba(229,62,62,0.15); }
.pricing-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.pricing-card__name { font-size: 0.875rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.pricing-card__desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.5; }
.pricing-card__price { display: flex; align-items: baseline; gap: 0.125rem; margin-bottom: 0.5rem; }
.pricing-card__currency { font-size: 1rem; font-weight: 600; color: var(--text-muted); margin-top: 0.5rem; }
.pricing-card__amount { font-size: 2.625rem; font-weight: 800; color: var(--text); letter-spacing: -0.025em; line-height: 1; }
.pricing-card__amount--free { font-size: 2.625rem; font-weight: 800; color: var(--text); }
.pricing-card__amount--custom { font-size: 1.5rem; font-weight: 700; color: var(--text); }
.pricing-card__period { font-size: 0.875rem; color: var(--text-muted); }
.pricing-card__annual-note { font-size: 0.8125rem; color: var(--emerald-mid); font-weight: 500; margin-bottom: 0.5rem; }
.pricing-card__units { font-size: 0.8125rem; font-weight: 600; color: var(--text-muted); margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.pricing-card__features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.75rem; flex: 1; }
.pricing-card__feature { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--text-mid); line-height: 1.4; }
.pricing-card__feature-check { width: 1rem; height: 1rem; color: var(--red); flex-shrink: 0; margin-top: 0.1rem; }
.pricing-card .pricing-card__cta { margin-top: auto; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials__header { text-align: center; max-width: 480px; margin: 0 auto 3rem; }
.testimonials__headline {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--white);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--dark-border);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.testimonial-card {
  background: var(--dark-1);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background 180ms;
}
.testimonial-card:hover { background: var(--dark-2); }
.testimonial-card__quote-icon { color: var(--dark-border); }
.testimonial-card__quote {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar {
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-card__name { font-size: 0.875rem; font-weight: 700; color: var(--white); }
.testimonial-card__meta { font-size: 0.8125rem; color: rgba(255,255,255,0.35); }
.testimonial-card__units {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red-light);
  background: rgba(252,129,129,0.1);
  border: 1px solid rgba(252,129,129,0.2);
  border-radius: var(--r-pill);
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq__header { text-align: center; max-width: 480px; margin: 0 auto 3rem; }
.faq__headline {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.faq__sub { font-size: 1.0625rem; color: var(--text-muted); }
.faq__list { max-width: 660px; margin: 0 auto; display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.faq-item {
  background: var(--white);
}
.faq-item > summary {
  padding: 1.25rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  user-select: none;
  transition: color 150ms;
}
.faq-item > summary:hover { color: var(--red); }
.faq-item > summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 200ms;
}
.faq-item[open] > summary { color: var(--red); }
.faq-item[open] > summary::after { transform: rotate(45deg); }
.faq-item__body {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about__content { max-width: 680px; margin: 0 auto; }
.about__headline {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 2rem;
}
.about__body { display: flex; flex-direction: column; gap: 1.25rem; }
.about__para { font-size: 1.0625rem; color: var(--text-mid); line-height: 1.75; }
.about__para:first-child { font-size: 1.125rem; color: var(--text); font-weight: 500; }

/* ── CTA BANNER ──────────────────────────────────────────── */
.cta-banner {
  background: var(--near-black);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 110%, rgba(229,62,62,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 0% 50%, rgba(39,103,73,0.1) 0%, transparent 55%);
  pointer-events: none;
}
.cta-banner__content { position: relative; text-align: center; max-width: 560px; margin: 0 auto; }
.cta-banner__headline {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-banner__sub { font-size: 1.0625rem; color: rgba(255,255,255,0.5); margin-bottom: 2rem; }
.cta-banner__btns { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1rem; }
.cta-banner__note { font-size: 0.8125rem; color: rgba(255,255,255,0.3); }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  border-top: 1px solid var(--dark-border);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer__brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1rem; font-weight: 800;
}
.footer__logo-prefix { color: var(--white); }
.footer__logo-suffix { color: var(--red); }
.footer__tagline { font-size: 0.875rem; color: rgba(255,255,255,0.35); line-height: 1.5; }
.footer__platform-links { display: flex; flex-direction: column; gap: 0.3rem; }
.footer__platform-link { font-size: 0.8125rem; color: rgba(255,255,255,0.4); transition: color 150ms; }
.footer__platform-link:hover { color: var(--white); }
.footer__built-for {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  display: flex; align-items: center; gap: 0.3rem;
}
.footer__col-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__link { font-size: 0.875rem; color: rgba(255,255,255,0.4); transition: color 150ms; }
.footer__link:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--dark-border);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.8125rem; color: rgba(255,255,255,0.25); }
.footer__social { display: flex; align-items: center; gap: 0.5rem; }
.footer__social-link {
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
  border: 1px solid var(--dark-border);
  border-radius: var(--r);
  transition: all 150ms;
}
.footer__social-link:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 450ms var(--ease), transform 450ms var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 60ms; }
.reveal--delay-2 { transition-delay: 120ms; }
.reveal--delay-3 { transition-delay: 180ms; }
.reveal--delay-4 { transition-delay: 240ms; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .listings__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none; }
  .nav__hamburger { display: flex; }
  .hero__platform-pills { justify-content: center; }
  .hero__ctas { justify-content: center; }
  .listings-flow__step { min-width: 48%; }
  .ecosystem-callout__desc { max-width: 100%; }
  .currency-selector { flex-wrap: wrap; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 540px) {
  .listings__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .listings-flow__step { min-width: 100%; }
}

/* ── BUTTON VARIANT OVERRIDE FOR PRICING ────────────────────*/
.pricing-card__cta { display: block; text-align: center; }
