/* ============================================================
   Find My Roomie — Landing Page v2
   "Santuario Moderno" · cinematic warm editorial
   Inspired by: Airbnb · Apple · Notion · Arc · Linear
   ============================================================ */

:root {
  /* Palette — terracota/beige (preserved + warmed) */
  --plaster:           #FFF9F5;       /* warm plaster wall — primary surface */
  --plaster-deep:      #F7ECDE;       /* secondary surface for trust band */
  --plaster-shadow:    #6F4827;       /* warm taupe (NOT gray) for blind shadows */
  --surface-card:      #FFFFFF;
  --surface-glass:     rgba(255, 252, 245, 0.62);
  --surface-glass-2:   rgba(255, 250, 240, 0.82);

  --brand:             #AD1701;       /* brandbook red */
  --brand-hot:         #C81A04;
  --brand-deep:        #6E0E00;
  --brand-soft:        #F8D8C8;
  --terracotta:        #D4624E;       /* warm rust accent */
  --terracotta-deep:   #9E331E;
  --rose-tint:         #F7E2D4;

  --ink:               #1F1410;       /* near-black warm */
  --ink-2:             #3E2A22;
  --ink-3:             #483C32;       /* requested descriptive copy color */
  --ink-mute:          #7A6A60;
  --hairline:          rgba(72, 60, 50, 0.12);

  --mint:              #5BC48E;
  --mint-deep:         #2F8C5F;
  --mint-soft:         #E2F4EC;

  --shadow-warm-sm:    0 1px 2px rgba(120, 60, 30, 0.06),
                       0 6px 14px -6px rgba(120, 60, 30, 0.10);
  --shadow-warm-md:    0 1px 2px rgba(120, 60, 30, 0.05),
                       0 14px 32px -14px rgba(120, 60, 30, 0.22);
  --shadow-warm-lg:    0 2px 4px rgba(120, 60, 30, 0.05),
                       0 30px 60px -20px rgba(70, 30, 15, 0.30),
                       0 18px 36px -18px rgba(173, 23, 1, 0.18);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-2xl: 44px;
  --radius-pill: 999px;

  --font-display: 'Jost', 'Futura', system-ui, sans-serif;
  --font-slab: 'Roboto Slab', 'Rockwell', Georgia, serif;
  --font-body: 'Jost', 'Futura', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-2);
  background: var(--plaster);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ============================================================
   GLOBAL ATMOSPHERE — plaster wall + blind shadows + film grain
   Fixed layer, covers entire page so every section shares it
   ============================================================ */
.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.atmosphere svg.atmo-shadow {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  opacity: 0.55;
}
.atmosphere .atmo-grain {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0.42  0 0 0 0 0.28  0 0 0 0 0.17  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
.atmosphere .atmo-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 78% 12%,  rgba(255, 222, 184, 0.55), transparent 70%),
    radial-gradient(50% 40% at 8% 88%,   rgba(212, 98, 78, 0.16), transparent 70%),
    radial-gradient(80% 60% at 50% 50%,  rgba(255, 240, 220, 0.30), transparent 75%);
}
.atmosphere .atmo-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 55%,
    transparent 55%,
    rgba(58, 30, 14, 0.22) 100%);
}

/* ============================================================
   Layout primitives
   ============================================================ */
.shell {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 56px;
}
@media (max-width: 720px) { .shell { padding: 0 22px; } }

main { position: relative; z-index: 1; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}
.section-eyebrow::before {
  content: "";
  width: 24px; height: 1.5px;
  background: var(--brand);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-slab);
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
  margin-top: 18px;
}
.section-sub {
  margin-top: 16px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 620px;
  text-wrap: pretty;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding 0.35s cubic-bezier(.2,.7,.2,1);
}
/* On scroll the shell collapses into a floating glass capsule,
   inset from the screen edges. */
.site-header.scrolled { padding: 14px 20px; }

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid transparent;
  border-radius: 0;
  transition: max-width 0.35s cubic-bezier(.2,.7,.2,1),
    padding 0.35s cubic-bezier(.2,.7,.2,1),
    background 0.35s ease, box-shadow 0.35s ease,
    border-radius 0.35s ease, border-color 0.35s ease;
}
.site-header.scrolled .shell {
  max-width: 1080px;
  padding: 9px 13px 9px 26px;
  background: rgba(255, 250, 244, 0.72);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-radius: var(--radius-pill);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 34px -12px rgba(60, 25, 10, 0.34);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--brand);
}
.logo-mark { width: 44px; height: 44px; flex-shrink: 0; object-fit: contain; display: block; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--brand);
}
.top-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.top-nav a {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.top-nav a:hover { color: var(--brand); }
.nav-login {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--ink);
  transition: background 0.2s, color 0.2s;
}
.nav-login:hover { background: var(--ink); color: var(--plaster); }

/* ----- Language toggle (ES / EN) ----- */
.lang-toggle {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  background: transparent;
  border: 1.5px solid rgba(173, 23, 1, 0.22);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  cursor: pointer;
  flex-shrink: 0;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.lang-toggle:hover { border-color: var(--brand); color: var(--brand); }
.lang-toggle .lang-active { color: var(--brand); font-weight: 700; }
.lang-toggle .lang-inactive { color: var(--ink-2); opacity: 0.55; }

/* ----- Hamburger toggle (mobile only) ----- */
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(173, 23, 1, 0.18);
  background: rgba(255, 252, 245, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- Mobile nav drawer ----- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 900;
  visibility: hidden;
  pointer-events: none;
}
.mobile-nav.open {
  visibility: visible;
  pointer-events: auto;
}
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 14, 8, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-nav.open .mobile-nav-backdrop { opacity: 1; }
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(82vw, 340px);
  background:
    radial-gradient(ellipse 80% 40% at 90% 8%, rgba(255, 222, 184, 0.55), transparent 60%),
    linear-gradient(160deg, #fffaf4, #fff2e6);
  box-shadow: -24px 0 60px -20px rgba(60, 25, 10, 0.45);
  padding: 84px 32px 36px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.mobile-nav-close svg { width: 24px; height: 24px; }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(173, 23, 1, 0.10);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-links a:active,
.mobile-nav-links a:hover { color: var(--brand); padding-left: 6px; }
.mobile-nav-foot {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-nav-foot .nav-login { text-align: center; padding: 14px 22px; }
.mobile-nav-foot .btn { width: 100%; }
.mobile-nav-foot .lang-toggle {
  align-self: center;
  padding: 10px 26px;
  font-size: 15px;
  background: rgba(255, 252, 245, 0.6);
}

@media (max-width: 880px) {
  .top-nav,
  .site-header > .shell > .lang-toggle,
  .site-header > .shell > .nav-login { display: none; }
  .nav-toggle { display: flex; }
}
/* The drawer toggle only exists inside the mobile nav; hide it on desktop. */
.lang-toggle-mobile { display: none; }
@media (max-width: 880px) {
  .lang-toggle-mobile { display: inline-block; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, #C81A04 0%, #AD1701 55%, #960F00 100%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -2px 0 rgba(0,0,0,0.20),
    0 8px 18px -6px rgba(173, 23, 1, 0.55),
    0 18px 36px -14px rgba(173, 23, 1, 0.35);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 14px 30px -6px rgba(173, 23, 1, 0.65);
}
.btn-outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn-outline:hover {
  background: var(--brand-soft);
  transform: translateY(-1px);
}
.btn-ink {
  background: var(--ink);
  color: var(--plaster);
}
.btn-ink:hover { background: #0f0805; transform: translateY(-1px); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 40px 0 90px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 56px;
  min-height: 620px;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5.1vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-wrap: balance;
}
.hero-copy h1 span {
  display: block;
}
.hero-copy h1 .accent {
  color: var(--brand);
  font-style: italic;
  font-weight: 700;
}

.hero-sub {
  margin-top: 22px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-3);
  max-width: 480px;
}

.trust-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  max-width: 520px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 7px 14px 7px 10px;
  background: rgba(255, 252, 245, 0.78);
  border: 1px solid rgba(173, 23, 1, 0.12);
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 2px rgba(120, 60, 30, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.trust-pill svg {
  width: 14px; height: 14px;
  color: var(--mint-deep);
}

.hero-ctas {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ----- Hero visual + 3D phones ---------- */
.hero-visual {
  position: relative;
  width: 100%;
  height: 660px;
  perspective: 1600px;
  transform-style: preserve-3d;
}
.phone-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform-style: preserve-3d;
}
.phone-stage::after {
  /* warm ambient glow behind both phones */
  content: "";
  position: absolute;
  top: 14%;
  left: 50%;
  width: 75%;
  height: 65%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center,
    rgba(255, 198, 152, 0.45) 0%,
    rgba(212, 98, 78, 0.14) 35%,
    transparent 72%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

/* ----- iPhone hardware ---------- */
.phone-wrap {
  position: relative;
  width: 200px;
  flex-shrink: 0;
  transform-style: preserve-3d;
  will-change: transform;
}
.phone-wrap.left {
  transform: perspective(1200px) rotateY(-12deg) rotateX(6deg);
  animation: float-l 8s ease-in-out infinite;
}
.phone-wrap.right {
  transform: perspective(1200px) rotateY(12deg) rotateX(6deg);
  animation: float-r 10s ease-in-out infinite;
  animation-delay: -2.4s;
}
@keyframes float-l {
  0%, 100% { transform: perspective(1200px) rotateY(-12deg) rotateX(6deg) translateY(8px); }
  50%      { transform: perspective(1200px) rotateY(-12deg) rotateX(6deg) translateY(-10px); }
}
@keyframes float-r {
  0%, 100% { transform: perspective(1200px) rotateY(12deg) rotateX(6deg) translateY(-8px); }
  50%      { transform: perspective(1200px) rotateY(12deg) rotateX(6deg) translateY(12px); }
}

.phone-wrap .contact-shadow {
  position: absolute;
  bottom: -34px;
  left: 50%;
  width: 80%;
  height: 60px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center,
    rgba(226, 114, 91, 0.42) 0%,
    rgba(226, 114, 91, 0.22) 40%,
    transparent 75%);
  filter: blur(28px);
  z-index: -1;
  pointer-events: none;
}

.phone {
  width: 200px;
  height: 410px;
  background: linear-gradient(155deg, #2c2c2e 0%, #060608 55%, #18181b 100%);
  border-radius: 38px;
  padding: 5px;
  position: relative;
  box-shadow:
    inset 0 0 0 0.5px rgba(255,255,255,0.12),
    inset 0 1.5px 0 rgba(255,255,255,0.28),
    inset 0 -1px 0 rgba(0,0,0,0.55),
    0 30px 60px -20px rgba(226, 114, 91, 0.40),
    0 18px 36px -10px rgba(22, 7, 4, 0.22);
}
.phone::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0) 25%, rgba(255,255,255,0) 75%, rgba(255,255,255,0.14) 100%);
  pointer-events: none;
  mix-blend-mode: overlay;
}
.phone::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 38px;
  background: linear-gradient(110deg, rgba(255,210,170,0.42) 0%, transparent 18%);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.7;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 33px;
  overflow: hidden;
  background: var(--plaster);
  display: flex;
  flex-direction: column;
  position: relative;
}
.phone-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(255,235,205,0.22) 0%, rgba(255,235,205,0) 22%, rgba(255,235,205,0) 72%, rgba(255,210,175,0.12) 100%);
  z-index: 10;
  pointer-events: none;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #050506;
  border-radius: 14px;
  z-index: 6;
}

.phone-app-header {
  padding: 36px 14px 10px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-align: center;
  letter-spacing: 0.02em;
}
.phone-hero-img {
  height: 130px;
  overflow: hidden;
  background: #d2b896;
  position: relative;
}
.phone-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.phone-hero-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,235,200,0) 60%, rgba(0,0,0,0.18) 100%);
}
.phone-listing-title {
  padding: 9px 12px 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--ink);
}
.phone-listing-price {
  padding: 0 12px 8px;
  font-size: 8.5px;
  color: var(--brand);
  font-weight: 600;
}
.phone-results {
  flex: 1;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.phone-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 6px;
  background: #faf2eb;
  border-radius: 9px;
}
.phone-row .av {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8c3a0, #c89472);
  flex-shrink: 0;
}
.phone-row .av.b { background: linear-gradient(135deg, #d6a187, #9a6650); }
.phone-row .av.c { background: linear-gradient(135deg, #c79b7a, #8e6346); }
.phone-row .av.d { background: linear-gradient(135deg, #ddb89a, #a37a5c); }
.phone-row .info { flex: 1; min-width: 0; }
.phone-row .name {
  font-size: 8.5px; font-weight: 700; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.phone-row .sub { font-size: 7px; color: var(--ink-mute); }
.phone-row .price {
  font-size: 8.5px; color: var(--brand); font-weight: 700;
}
.phone-tabbar {
  height: 32px;
  background: #fff;
  border-top: 1px solid #f1e2d4;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: auto;
}
.phone-tabbar .dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #f1e2d4;
}
.phone-tabbar .dot.active { background: var(--brand); }

.phone-2 .phone-app-header {
  background: #fff;
  color: var(--ink);
  text-align: left;
  padding: 38px 14px 8px;
}
.phone-2 .phone-hero-img { height: 150px; background: #c4946d; }
.phone-2 .phone-hero-img::after { content: none; }
.phone-2 .row-title {
  padding: 0 12px 4px;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--ink);
}

/* ----- Micro badges around phones ---------- */
.badge {
  position: absolute;
  background: rgba(255, 252, 246, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 16px;
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--ink);
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 8px 22px -8px rgba(60, 25, 10, 0.22),
    0 24px 40px -18px rgba(60, 25, 10, 0.18);
  z-index: 4;
  --rot: 0deg;
  transform: rotate(var(--rot));
  animation: badge-float 7s ease-in-out infinite;
}
.badge.solid {
  background: var(--brand);
  color: #fff;
  border-color: rgba(255,255,255,0.30);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.30),
    0 8px 22px -6px rgba(173,23,1,0.45),
    0 20px 40px -16px rgba(60, 25, 10, 0.30);
}
.badge .pct {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--brand);
  line-height: 1;
}
.badge.solid .pct { color: #fff; }
.badge .dot-live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(91, 196, 142, 0.30);
  animation: pulse 2s ease-in-out infinite;
}
.badge svg { width: 14px; height: 14px; }

@keyframes badge-float {
  0%, 100% { transform: rotate(var(--rot)) translateY(0); }
  50%      { transform: rotate(var(--rot)) translateY(-9px); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(91, 196, 142, 0.30); }
  50%      { box-shadow: 0 0 0 7px rgba(91, 196, 142, 0.10); }
}

.b-match    { --rot: -5deg; top: 18%; left: -2%;  animation-delay: -0.4s; }
.b-verified { --rot:  4deg; top: 4%;  right: 6%;  animation-delay: -1.8s; }
.b-newroom  { --rot:  6deg; top: 44%; right: -6%; animation-delay: -3.2s; }
.b-safe     { --rot: -6deg; bottom: 22%; left: -6%; animation-delay: -4.6s; }
.b-ready    { --rot:  3deg; bottom: 6%;  right: 8%;  animation-delay: -6s; }

/* ----- HERO responsive ----- */
@media (max-width: 1024px) {
  .hero { padding: 24px 0 70px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: 0;
    text-align: center;
  }
  .hero-sub { margin-inline: auto; }
  .trust-row { margin-inline: auto; justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-visual { height: 480px; }
  .phone-stage { gap: 28px; }
}

@media (max-width: 640px) {
  .hero-visual { height: 440px; }
  /* Single centred phone — hide the map phone */
  .phone-wrap.left { display: none; }
  .phone-wrap.right {
    transform: none;
    animation: float-mobile 7s ease-in-out infinite;
  }
  /* Cluster badges around the centred phone */
  .badge { font-size: 11.5px; padding: 7px 11px; }
  .badge .pct { font-size: 16px; }
  .b-match    { top: 12%;  left: 6%;  right: auto; }
  .b-verified { top: 4%;   right: 6%; left: auto; }
  .b-newroom  { top: 46%;  right: 2%; left: auto; }
  .b-safe     { bottom: 20%; left: 2%; right: auto; }
  .b-ready    { bottom: 6%;  right: 8%; left: auto; }
}

@media (max-width: 400px) {
  /* Reduce clutter on the smallest screens */
  .b-newroom, .b-safe { display: none; }
}

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

/* ============================================================
   BENTO — asymmetric editorial
   ============================================================ */
.bento { padding: clamp(48px, 9vw, 80px) 0; }

.bento-head {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bento-head .section-sub { text-align: center; margin-inline: auto; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 230px 230px;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.bento-card {
  position: relative;
  background: var(--surface-glass-2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-xl);
  padding: 30px 32px;
  overflow: hidden;
  box-shadow: var(--shadow-warm-md);
  transition: transform 0.35s cubic-bezier(.2,.6,.2,1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bento-card:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow:
    0 4px 8px rgba(120, 60, 30, 0.06),
    0 30px 60px -12px rgba(212, 98, 78, 0.30);
}
.bento-card h3 {
  font-family: var(--font-slab);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.bento-card .desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-3);
  max-width: 340px;
}
.bento-card .b-icon {
  position: absolute;
  bottom: 24px;
  right: 28px;
}

/* Card 1 — Perfiles Verificados (LARGE 2×2) */
.bc-verified {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
  padding: 44px;
  overflow: visible;
  background:
    radial-gradient(ellipse 110% 90% at 0% 0%, rgba(255,255,255,0.75), transparent 60%),
    linear-gradient(135deg, rgba(247, 226, 212, 0.85), rgba(255, 250, 240, 0.75));
}
.bc-verified h3 {
  font-size: 42px;
  max-width: 360px;
}
.bc-verified .desc {
  font-size: 17px;
  max-width: 380px;
  margin-top: 4px;
}
.bc-verified .b-icon {
  bottom: 36px;
  right: 40px;
}
.bc-verified .verify-stack {
  position: absolute;
  bottom: 36px;
  left: 44px;
  right: 44px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  pointer-events: none;
}
.verify-stack .id-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  width: 200px;
  box-shadow: 0 14px 30px -10px rgba(120, 60, 30, 0.30);
  transform: rotate(-4deg);
  display: flex;
  gap: 10px;
}
.id-card .photo {
  width: 42px; height: 50px;
  border-radius: 6px;
  background: linear-gradient(135deg, #e8c8a8, #b88468);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.id-card .photo::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(0,0,0,0.18) 18%, transparent 35%),
              linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.18));
}
.id-card .id-info { flex: 1; }
.id-card .id-info .lbl {
  font-size: 7px;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.id-card .id-info .nm {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 2px;
}
.id-card .id-info .row {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}
.id-card .id-info .row span {
  height: 4px;
  border-radius: 2px;
  background: #e8d8c8;
  flex: 1;
}
.id-card .id-info .row span:first-child { width: 60%; flex: 0 0 auto; background: var(--brand); }
.verify-stack .selfie {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 14px 30px -10px rgba(120, 60, 30, 0.30);
  transform: rotate(5deg);
  background: linear-gradient(135deg, #f3d6b8, #b48068);
  position: relative;
  flex-shrink: 0;
}
.verify-stack .selfie::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(0,0,0,0.20) 22%, transparent 38%),
              radial-gradient(circle at 50% 70%, rgba(0,0,0,0.10) 20%, transparent 32%);
}
.verify-stack .check-bubble {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--mint);
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(91, 196, 142, 0.5);
  z-index: 5;
}

/* Card 2 — Matching lifestyle (TALL 1×2) */
.bc-match {
  grid-column: 3;
  grid-row: 1 / span 2;
  padding: 30px 28px;
}
.bc-match h3 { font-size: 22px; max-width: 200px; }
.bc-match .desc { font-size: 14.5px; max-width: 240px; }
.bc-match .radar-wrap {
  margin-top: 18px;
  flex: 1;
  display: grid;
  place-items: center;
  position: relative;
}
.bc-match .radar { width: 220px; height: 220px; }
.bc-match .match-num {
  position: absolute;
  bottom: 20px;
  left: 28px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.bc-match .match-num .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 38px;
  color: var(--brand);
  letter-spacing: -0.03em;
  line-height: 1;
}
.bc-match .match-num .l {
  font-size: 12px;
  color: var(--brand);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Card 3 — Chat Seguro (SQUARE 1×1) */
.bc-chat {
  grid-column: 1;
  grid-row: 1;
  display: none; /* swapped layout below */
}

/* Real layout: row1: verified(2x2 left+row1-2)... we redefine */
.bento-grid {
  grid-template-areas:
    "verify verify match"
    "verify verify match"
    "fees   fees   chat";
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 200px 200px 180px;
}
.bc-verified { grid-area: verify; }
.bc-match    { grid-area: match; }
.bc-fees     { grid-area: fees; }
.bc-chat     { grid-area: chat; display: flex; }

/* Card 4 — Sin Comisiones (WIDE 2×1) */
.bc-fees {
  padding: 30px 36px;
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.92), rgba(247, 226, 212, 0.70));
  position: relative;
}
.bc-fees h3 {
  font-family: var(--font-slab);
  font-size: 30px;
  color: var(--brand);
  max-width: 360px;
}
.bc-fees .desc { max-width: 380px; }
.bc-fees .underline {
  display: block;
  width: 90px;
  height: 3px;
  background: var(--mint);
  border-radius: 2px;
  margin-top: 10px;
}
.bc-fees .price-tag {
  position: absolute;
  right: 36px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.bc-fees .price-tag .big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  color: var(--brand);
  letter-spacing: -0.04em;
  line-height: 0.9;
  position: relative;
}
.bc-fees .price-tag .big::after {
  content: "";
  position: absolute;
  left: -8px; right: -8px;
  top: 52%;
  height: 4px;
  background: var(--mint);
  border-radius: 2px;
  transform: rotate(-12deg);
}
.bc-fees .price-tag .lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Card 5 — Chat Seguro (SQUARE) */
.bc-chat {
  padding: 26px 28px;
  background:
    linear-gradient(160deg, rgba(255, 252, 246, 0.92), rgba(247, 232, 220, 0.70));
}
.bc-chat h3 { font-size: 22px; }
.bc-chat .desc { font-size: 14px; max-width: 280px; }
.bc-chat .mini-chat {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 220px;
}
.mini-chat .bubble {
  font-size: 10.5px;
  padding: 6px 9px;
  border-radius: 10px;
  max-width: 80%;
  line-height: 1.3;
}
.mini-chat .bubble.them {
  background: #fff;
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
  box-shadow: 0 2px 6px rgba(120, 60, 30, 0.08);
}
.mini-chat .bubble.me {
  background: var(--brand);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-areas:
      "verify verify"
      "match  match"
      "fees   fees"
      "chat   chat";
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px auto auto 200px;
  }
  .bc-verified h3 { font-size: 32px; }
  .bc-match .radar { width: 180px; height: 180px; }
}
@media (max-width: 560px) {
  .bento-grid {
    grid-template-areas:
      "verify"
      "match"
      "fees"
      "chat";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }
  .bento-card { padding: 26px 24px; }
  .bc-verified { min-height: 300px; }
  .bc-fees .price-tag { position: static; align-items: flex-start; margin-top: 16px; }
}

/* ============================================================
   HOW IT WORKS — timeline
   ============================================================ */
.howitworks {
  padding: clamp(56px, 9vw, 90px) 0;
}
.howitworks .hw-head {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hw-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  position: relative;
}
.hw-timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg,
    rgba(173, 23, 1, 0.35) 0 6px,
    transparent 6px 12px);
}
.hw-step {
  position: relative;
  text-align: left;
  padding-top: 80px;
}
.hw-step .num {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--plaster);
  border: 1.5px solid var(--brand);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--brand);
  box-shadow:
    inset 0 -2px 0 rgba(173, 23, 1, 0.15),
    0 12px 28px -8px rgba(173, 23, 1, 0.30);
  z-index: 2;
}
.hw-step .num::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(173,23,1,0.18), transparent 70%);
  z-index: -1;
}
.hw-step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.hw-step p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.45;
}
.hw-step .mini {
  margin-top: 14px;
  width: 100%;
  height: 90px;
  border-radius: 14px;
  background: var(--surface-glass-2);
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: var(--shadow-warm-sm);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.mini-svg { width: 100%; height: 100%; }

@media (max-width: 1100px) {
  .hw-timeline {
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 50px;
  }
  .hw-timeline::before { display: none; }
}
@media (max-width: 640px) {
  .hw-timeline { grid-template-columns: repeat(2, 1fr); }
}
/* Phone: single vertical list with a connecting rail */
@media (max-width: 480px) {
  .hw-timeline {
    grid-template-columns: 1fr;
    grid-row-gap: 0;
  }
  .hw-step {
    padding: 0 0 30px 74px;
    min-height: 56px;
  }
  .hw-step .num {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }
  .hw-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 60px;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(180deg,
      rgba(173, 23, 1, 0.35) 0 6px,
      transparent 6px 12px);
  }
  .hw-step .mini { max-width: 100%; height: 80px; }
}

/* ============================================================
   SOCIAL PROOF — activity feed + universities marquee
   ============================================================ */
.marquee-section { padding: 24px 0 clamp(48px, 9vw, 80px); overflow: hidden; }

.marquee {
  display: flex;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 48px;
  flex-shrink: 0;
  padding-right: 48px;
  align-items: center;
  animation: marquee-scroll 60s linear infinite;
}
.marquee-row-2 .marquee-track {
  animation-duration: 70s;
  animation-direction: reverse;
}
.marquee-row-2 { margin-top: 24px; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

.activity-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 8px 16px 8px 8px;
  background: var(--surface-glass-2);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-warm-sm);
}
.activity-chip .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #d6b896;
}
.activity-chip .avatar img { width: 100%; height: 100%; object-fit: cover; }
.activity-chip .text {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink-2);
}
.activity-chip .text b { font-weight: 700; color: var(--ink); }
.activity-chip .text .when {
  color: var(--ink-mute);
  margin-left: 4px;
  font-size: 13px;
}
.activity-chip .live {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(91, 196, 142, 0.3);
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
  height: 56px;
  opacity: 0.72;
  /* warm, slightly desaturated tint so logos integrate with the beige/terracota palette */
  filter: grayscale(0.6) sepia(0.22) saturate(0.85) brightness(0.92);
  transition: opacity .35s ease, filter .35s ease;
}
.brand-logo:hover {
  opacity: 1;
  filter: grayscale(0.35) sepia(0.18) saturate(0.95) brightness(0.95);
}
.brand-logo img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
/* Anáhuac round seal is square — render slightly smaller so optical height matches the wordmarks */
.brand-logo img.logo-seal { height: 52px; width: 52px; }

/* ============================================================
   TRUST & SAFETY
   ============================================================ */
.trust-section {
  padding: clamp(56px, 10vw, 100px) 0;
  position: relative;
}
.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent, rgba(70, 36, 20, 0.07) 25%, rgba(70, 36, 20, 0.07) 75%, transparent);
  z-index: 0;
}
.trust-section .shell { position: relative; }
.trust-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.trust-card {
  position: relative;
  background:
    linear-gradient(160deg, rgba(255, 252, 246, 0.85), rgba(255, 247, 235, 0.65));
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius-xl);
  padding: 28px 30px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 18px 38px -16px rgba(120, 60, 30, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.trust-card:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    0 28px 60px -16px rgba(120, 60, 30, 0.35);
}
.trust-card .t-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--mint-soft), #fff);
  border: 1px solid rgba(91, 196, 142, 0.30);
  display: grid;
  place-items: center;
  color: var(--mint-deep);
  margin-bottom: 16px;
  box-shadow: 0 8px 20px -8px rgba(91, 196, 142, 0.40);
}
.trust-card .t-icon svg { width: 26px; height: 26px; }
.trust-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.trust-card p {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* Hero card — large */
.trust-card.lead {
  grid-column: 1;
  grid-row: 1 / span 2;
  padding: 36px;
  background:
    radial-gradient(ellipse 100% 80% at 0% 0%, rgba(255,255,255,0.7), transparent 65%),
    linear-gradient(160deg, rgba(255, 252, 246, 0.85), rgba(247, 232, 220, 0.80));
}
.trust-card.lead h4 { font-size: 26px; }
.trust-card.lead p { font-size: 15.5px; max-width: 320px; }
.trust-card.lead .t-icon {
  width: 64px; height: 64px;
}
.trust-card.lead .t-icon svg { width: 32px; height: 32px; }
.trust-card.lead .shield-graphic {
  margin-top: auto;
  display: grid;
  place-items: center;
  padding-top: 16px;
}

@media (max-width: 1000px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .trust-card.lead {
    grid-column: 1 / span 2;
    grid-row: auto;
    min-height: 280px;
  }
}
@media (max-width: 640px) {
  .trust-grid { grid-template-columns: 1fr; }
  .trust-card.lead { grid-column: 1; }
}

/* ============================================================
   GUÍAS DE ZONAS
   ============================================================ */
.zones {
  padding: clamp(56px, 10vw, 100px) 0;
}
.zones-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.zones-head .col-l { max-width: 620px; }
.zones-head .see-all {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
}
.zones-head .see-all:hover { gap: 12px; }

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

.zone-card {
  position: relative;
  background: var(--surface-glass-2);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius-xl);
  padding: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-warm-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.zone-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 8px rgba(120, 60, 30, 0.06),
    0 30px 60px -14px rgba(120, 60, 30, 0.30);
}
.zone-card .map {
  height: 130px;
  border-radius: 16px;
  background: linear-gradient(135deg, #efe2d2, #d4b896);
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}
.zone-card .map svg { width: 100%; height: 100%; display: block; }
.zone-card .city-name {
  font-family: var(--font-slab);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.zone-card .vibe {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 2px;
  margin-bottom: 12px;
}
.zone-card .stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
}
.zone-card .stat-r {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.zone-card .stat-r .lbl {
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.zone-card .stat-r .val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

@media (max-width: 1000px) { .zones-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .zones-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BLOG & RECURSOS
   ============================================================ */
.blog {
  padding: clamp(56px, 10vw, 100px) 0;
}
.blog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.blog-head .col-l { max-width: 620px; }
.blog-head .see-all {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  gap: 8px;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 22px;
}
.blog-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.85);
  box-shadow: var(--shadow-warm-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -12px rgba(120, 60, 30, 0.30);
}
.blog-card .cover {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #c4946d;
  position: relative;
}
.blog-card .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .cover img { transform: scale(1.06); }
.blog-card .cover::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(40, 14, 4, 0.30));
}
.blog-card .body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.blog-card .meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-body);
  font-size: 12.5px;
}
.blog-card .meta .cat {
  color: var(--brand);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.blog-card .meta .dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--ink-mute);
}
.blog-card .meta .read { color: var(--ink-mute); }
.blog-card h4 {
  font-family: var(--font-slab);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.blog-card .excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
}

.blog-card.feature { grid-row: span 1; }
.blog-card.feature .cover { aspect-ratio: 16 / 11; }
.blog-card.feature h4 { font-size: 26px; }

@media (max-width: 1000px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card.feature { grid-column: 1 / span 2; }
  .blog-card.feature .cover { aspect-ratio: 16 / 9; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.feature { grid-column: 1; }
}

/* ============================================================
   WAITLIST
   ============================================================ */
.waitlist {
  padding: 100px 0;
  position: relative;
}
.waitlist-card {
  position: relative;
  background:
    radial-gradient(ellipse 80% 70% at 90% 12%, rgba(255, 222, 184, 0.55), transparent 60%),
    radial-gradient(ellipse 70% 60% at 8% 90%, rgba(173, 23, 1, 0.18), transparent 70%),
    linear-gradient(135deg, #2a1810, #1a0e08 60%, #0d0604);
  color: #fff;
  border-radius: var(--radius-2xl);
  padding: 70px 70px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(60, 25, 10, 0.55),
    inset 0 1px 0 rgba(255, 220, 180, 0.18);
}
.waitlist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.85  0 0 0 0 0.6  0 0 0 0.12 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  opacity: 0.5;
  mix-blend-mode: screen;
  pointer-events: none;
}
.waitlist-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.waitlist-card .eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFCFA8;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.waitlist-card .eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(91, 196, 142, 0.8);
}
.waitlist-card h2 {
  font-family: var(--font-slab);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-top: 16px;
  text-wrap: balance;
}
.waitlist-card p {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 240, 220, 0.78);
  max-width: 440px;
}
.waitlist-form {
  display: flex;
  margin-top: 28px;
  background: rgba(255, 245, 230, 0.07);
  border: 1px solid rgba(255, 220, 180, 0.18);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 22px;
  max-width: 460px;
  backdrop-filter: blur(12px);
}
.waitlist-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15.5px;
  min-width: 0;
}
.waitlist-form input::placeholder { color: rgba(255, 240, 220, 0.55); }
.waitlist-form button {
  background: linear-gradient(180deg, #C81A04 0%, #AD1701 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  padding: 13px 26px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  box-shadow: 0 8px 18px -6px rgba(173, 23, 1, 0.6);
  transition: transform 0.2s;
}
.waitlist-form button:hover { transform: translateY(-1px); }

.waitlist-perks {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.waitlist-perks li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(255, 240, 220, 0.85);
}
.waitlist-perks li::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(91, 196, 142, 0.18);
  border: 1px solid rgba(91, 196, 142, 0.55);
  flex-shrink: 0;
  position: relative;
}
.waitlist-perks li {
  position: relative;
  padding-left: 30px;
}
.waitlist-perks li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid var(--mint);
  border-bottom: 2px solid var(--mint);
}

/* Referral card */
.referral {
  background: rgba(255, 245, 230, 0.06);
  border: 1px solid rgba(255, 220, 180, 0.22);
  border-radius: var(--radius-xl);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
}
.referral .position {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.referral .pos-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 0.9;
  background: linear-gradient(180deg, #fff, #FFCFA8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.referral .pos-lbl {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 240, 220, 0.6);
}
.referral .progress {
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 220, 180, 0.16);
  overflow: hidden;
  position: relative;
}
.referral .progress .fill {
  height: 100%;
  width: 38%;
  background: linear-gradient(90deg, var(--brand-hot), #FFCFA8);
  border-radius: 5px;
  position: relative;
}
.referral .progress .fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(255,255,255,0.4));
  animation: shine 3s ease-in-out infinite;
}
@keyframes shine {
  0%, 100% { transform: translateX(-100%); }
  50%      { transform: translateX(100%); }
}
.referral .ref-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 240, 220, 0.7);
}
.referral .ref-link {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 14px;
  color: #FFCFA8;
  background: rgba(255, 220, 180, 0.08);
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px dashed rgba(255, 220, 180, 0.30);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.referral .copy-btn {
  background: rgba(255, 220, 180, 0.16);
  color: #FFCFA8;
  border: none;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s;
}
.referral .copy-btn:hover { background: rgba(255, 220, 180, 0.28); }

@media (max-width: 920px) {
  .waitlist-card { padding: 48px 36px; }
  .waitlist-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   DOWNLOAD / QR (expanded)
   ============================================================ */
.download {
  padding: 90px 0 100px;
  position: relative;
}
.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.download h2 {
  font-family: var(--font-slab);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.04;
}
.download .lead {
  margin-top: 18px;
  font-size: 18px;
  color: var(--ink-3);
  max-width: 440px;
  line-height: 1.5;
}
.store-row {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--plaster);
  padding: 12px 20px 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-warm-md);
  transition: transform 0.2s, background 0.2s;
}
.store-btn:hover { transform: translateY(-2px); background: #0f0805; }
.store-btn svg { width: 26px; height: 26px; }
.store-btn .lbl {
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  line-height: 1.1;
}
.store-btn .lbl .small {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.78;
}
.store-btn .lbl .big {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.qr-stage {
  position: relative;
  height: 460px;
  display: grid;
  place-items: center;
}
.qr-logo-bg {
  position: absolute;
  width: 230px; height: 230px;
  background: rgba(120, 80, 50, 0.22);
  backdrop-filter: blur(8px);
  border-radius: 44px;
  transform: rotate(-10deg);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.85);
  box-shadow: 0 24px 50px -18px rgba(60, 30, 15, 0.40);
  left: calc(50% - 195px);
  top: 50%;
  margin-top: -115px;
  z-index: 1;
}
.qr-logo-bg svg { width: 115px; height: 115px; }
.qr-card {
  position: absolute;
  width: 230px; height: 230px;
  background: #f6f1ea;
  border-radius: 38px;
  padding: 22px;
  transform: rotate(8deg);
  box-shadow:
    0 28px 56px -14px rgba(60, 30, 15, 0.40),
    0 14px 28px -8px rgba(173, 23, 1, 0.18);
  animation: float-r 9s ease-in-out infinite;
  --rot: 8deg;
  left: calc(50% - 35px);
  top: 50%;
  margin-top: -115px;
  z-index: 2;
}

@media (max-width: 900px) {
  .download-grid { grid-template-columns: 1fr; gap: 40px; }
  .qr-stage { height: 360px; }
}

/* ============================================================
   FOOTER — architectural
   ============================================================ */
.site-footer {
  padding: clamp(48px, 9vw, 80px) 0 40px;
  position: relative;
  background:
    linear-gradient(180deg, transparent, rgba(70, 36, 20, 0.06) 30%);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hairline);
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 320px;
  margin-bottom: 22px;
}
.footer-newsletter {
  display: flex;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-pill);
  padding: 4px 4px 4px 18px;
  max-width: 320px;
  height: 50px;
  background: rgba(255, 252, 246, 0.4);
}
.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--ink);
  min-width: 0;
}
.footer-newsletter input::placeholder { color: var(--ink-mute); }
.footer-newsletter button {
  background: var(--ink);
  color: var(--plaster);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-newsletter button:hover { background: #0f0805; }

.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col a {
  color: var(--ink-3);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}
.footer-col a:hover { color: var(--brand); transform: translateX(2px); }

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom .copyright {
  font-size: 13.5px;
  color: var(--ink-mute);
}
.socials {
  display: flex;
  gap: 12px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--ink-mute);
  display: grid; place-items: center;
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, transform 0.2s, background 0.2s;
}
.socials a:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
}
.socials svg { width: 16px; height: 16px; }

@media (max-width: 1000px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / span 2; }
}
@media (max-width: 560px) {
  .footer-top {
    gap: 28px 24px;
    padding-bottom: 40px;
  }
  .footer-brand { grid-column: 1 / span 2; }
  .footer-brand p,
  .footer-newsletter { max-width: none; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  /* Comfortable tap targets */
  .footer-col ul { gap: 4px; }
  .footer-col a { padding: 9px 0; }
  .socials a { width: 44px; height: 44px; }
}

/* ============================================================
   HERO PHONES — replacement screens
   Phone 1 = Properties Map · Phone 2 = Roomies Swipe
   ============================================================ */

/* ---------- Phone 1 · Properties Map ---------- */
.phone-map .phone-screen { background: #F2E3CF; }

/* top search bar */
.p1-topbar {
  padding: 38px 8px 5px;
  display: flex;
  gap: 5px;
  align-items: center;
  background: #fff;
}
.p1-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #FBF1E6;
  border: 1px solid #F0DCC8;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 7.5px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: -0.005em;
}
.p1-search svg {
  width: 9px; height: 9px;
  stroke: var(--terracotta);
  flex-shrink: 0;
}
.p1-icon-btn {
  width: 22px; height: 22px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: grid; place-items: center;
  padding: 0;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(173, 23, 1, 0.35);
}
.p1-icon-btn svg { width: 11px; height: 11px; }

.p1-subtopbar {
  padding: 3px 8px 6px;
  display: flex;
  gap: 5px;
  align-items: center;
  background: #fff;
  border-bottom: 1px solid #F0E2CF;
}
.p1-save-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #FFF1E2;
  color: var(--brand);
  border: 1px solid rgba(173, 23, 1, 0.22);
  font-size: 7px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}
.p1-save-pill svg { width: 7px; height: 7px; }
.p1-grid-btn {
  margin-left: auto;
  width: 20px; height: 20px;
  background: #fff;
  border: 1px solid #F0E2CF;
  border-radius: 5px;
  display: grid; place-items: center;
  color: var(--ink-2);
  padding: 0;
  cursor: pointer;
}
.p1-grid-btn svg { width: 11px; height: 11px; }

/* map area */
.p1-map {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.p1-map-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* price pins */
.p1-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 7.5px;
  padding: 3px 6px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow:
    0 3px 8px rgba(173, 23, 1, 0.40),
    inset 0 0.5px 0 rgba(255,255,255,0.30);
  letter-spacing: -0.01em;
  z-index: 2;
}
.p1-pin::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 1px;
  z-index: -1;
  box-shadow: 0 2px 4px rgba(173, 23, 1, 0.30);
}
.p1-pin.highlighted {
  background: var(--ink);
  font-size: 8.5px;
  padding: 4px 7px;
  z-index: 3;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.35);
}
.p1-pin.highlighted::after { background: var(--ink); box-shadow: none; }

/* user location pulse */
.p1-userloc {
  position: absolute;
  width: 12px; height: 12px;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.p1-userloc::before,
.p1-userloc::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.p1-userloc::before {
  background: rgba(212, 98, 78, 0.30);
  animation: p1-pulse 2.4s ease-out infinite;
}
.p1-userloc span {
  position: absolute;
  inset: 3px;
  background: #4A90E2;
  border: 1.5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.30);
}
@keyframes p1-pulse {
  0%   { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* peeking property card */
.p1-peek {
  position: absolute;
  left: 7px; right: 7px;
  bottom: 38px;
  background: #fff;
  border-radius: 11px;
  padding: 5px 6px 5px 5px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow:
    0 -2px 8px rgba(60, 25, 10, 0.06),
    0 8px 22px rgba(60, 25, 10, 0.22);
  z-index: 4;
  border: 1px solid #F0E2CF;
}
.p1-peek-img {
  width: 36px; height: 36px;
  border-radius: 7px;
  overflow: hidden;
  background: #c4946d;
  flex-shrink: 0;
}
.p1-peek-img img { width: 100%; height: 100%; object-fit: cover; }
.p1-peek-info { flex: 1; min-width: 0; }
.p1-peek-title {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.p1-peek-sub {
  font-size: 7.5px;
  color: var(--ink-mute);
  font-weight: 500;
  margin-top: 1px;
}
.p1-peek-sub b { color: var(--brand); font-weight: 700; }
.p1-peek-cta {
  width: 22px; height: 22px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(173, 23, 1, 0.40);
}
.p1-peek-cta svg { width: 11px; height: 11px; }

/* bottom nav */
.p1-nav {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 32px;
  background: #fff;
  border-top: 1px solid #F0E2CF;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 5;
  padding: 0 8px;
}
.p1-nav-item {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  color: #C4B0A0;
  position: relative;
}
.p1-nav-item.active { color: var(--brand); }
.p1-nav-item svg { width: 14px; height: 14px; }
.p1-nav-dot {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--brand);
}
.p1-badge {
  position: absolute;
  top: -3px; right: -5px;
  background: #E53935;
  color: #fff;
  font-family: var(--font-display);
  font-size: 6.5px;
  font-weight: 800;
  min-width: 11px;
  height: 11px;
  padding: 0 2px;
  border-radius: 6px;
  display: grid; place-items: center;
  border: 1.2px solid #fff;
  line-height: 1;
}

/* ---------- Phone 2 · Roomies Swipe ---------- */
.phone-swipe .phone-screen {
  background: #1F1410;
}

/* full-bleed photo */
.p2-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p2-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  transform-origin: center top;
}
.p2-photo-grad {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0) 18%, rgba(0,0,0,0) 48%, rgba(0,0,0,0.78) 100%);
  pointer-events: none;
}

/* story progress segments */
.p2-progress {
  position: absolute;
  top: 38px;
  left: 8px; right: 8px;
  display: flex;
  gap: 3px;
  z-index: 5;
}
.p2-seg {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.32);
  border-radius: 1px;
}
.p2-seg.active {
  background: var(--brand);
  box-shadow: 0 0 4px rgba(173, 23, 1, 0.5);
}

/* match badge top-left */
.p2-match {
  position: absolute;
  top: 48px;
  left: 8px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: 7.5px;
  font-weight: 600;
  padding: 4px 8px 4px 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  z-index: 5;
  box-shadow:
    0 4px 10px rgba(173, 23, 1, 0.50),
    inset 0 0.5px 0 rgba(255,255,255,0.25);
  letter-spacing: 0.01em;
}
.p2-match b { font-weight: 800; font-size: 9px; }
.p2-match .m-lbl { opacity: 0.92; }
.p2-match svg { width: 9px; height: 9px; color: #FFD58A; }

/* photo nav arrows */
.p2-arrow {
  position: absolute;
  top: 48%;
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 50%;
  color: #fff;
  display: grid; place-items: center;
  padding: 0;
  z-index: 4;
  transform: translateY(-50%);
  cursor: pointer;
}
.p2-arrow svg { width: 11px; height: 11px; }
.p2-arrow.left  { left: 7px; }
.p2-arrow.right { right: 7px; }

/* profile info */
.p2-info {
  position: absolute;
  left: 11px; right: 11px;
  bottom: 78px;
  z-index: 3;
  color: #fff;
}
.p2-name {
  font-family: var(--font-slab);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
.p2-bio {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 500;
  margin-top: 3px;
  opacity: 0.94;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.45);
}

/* action buttons */
.p2-actions {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 4;
}
.p2-act {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  display: grid; place-items: center;
  padding: 0;
  cursor: pointer;
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
  transition: transform 0.2s ease;
}
.p2-act:hover { transform: scale(1.06); }
.p2-act.pass {
  background: #fff;
  color: #8A7060;
}
.p2-act.like {
  background: linear-gradient(180deg, #C81A04, #AD1701);
  color: #fff;
  box-shadow:
    0 6px 18px rgba(173, 23, 1, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
}
.p2-act svg { width: 16px; height: 16px; }

/* bottom nav (frosted on dark) */
.p2-nav {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 32px;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(240, 226, 207, 0.7);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 5;
  padding: 0 8px;
}
.p2-nav-item {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  color: #C4B0A0;
  position: relative;
}
.p2-nav-item.active { color: var(--brand); }
.p2-nav-item svg { width: 14px; height: 14px; }
.p2-nav-dot {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--brand);
}


/* ============================================================
   ZONES — global expansion tagline
   ============================================================ */
.zones-tagline {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  flex-wrap: wrap;
}
.zones-tagline .dot-anim {
  position: relative;
  width: 14px; height: 14px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}
.zones-tagline .dot-anim::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(91, 196, 142, 0.30);
  animation: zones-pulse 2.6s ease-out infinite;
}
.zones-tagline .dot-anim span {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(91, 196, 142, 0.18);
}
@keyframes zones-pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(2.6); opacity: 0;   }
}
.zones-tagline p {
  font-family: var(--font-slab);
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 660px;
}
.zones-tagline em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--brand);
}

/* expanded grid (7 cards) — 4 cols stays the same on wide, 4+3 wraps */
@media (min-width: 1001px) {
  .zones-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   LIVE NOW — "Ya disponible en web"
   ============================================================ */
.livenow {
  padding: clamp(56px, 10vw, 100px) 0;
  position: relative;
}
.livenow-card {
  position: relative;
  background:
    radial-gradient(ellipse 80% 70% at 90% 12%, rgba(255, 222, 184, 0.55), transparent 60%),
    radial-gradient(ellipse 70% 60% at 8% 90%, rgba(173, 23, 1, 0.18), transparent 70%),
    linear-gradient(135deg, #2a1810, #1a0e08 60%, #0d0604);
  color: #fff;
  border-radius: var(--radius-2xl);
  padding: 64px 64px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(60, 25, 10, 0.55),
    inset 0 1px 0 rgba(255, 220, 180, 0.18);
}
.livenow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.85  0 0 0 0 0.6  0 0 0 0 0.10 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  opacity: 0.5;
  mix-blend-mode: screen;
  pointer-events: none;
}
.livenow-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.ln-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFCFA8;
  padding: 7px 14px 7px 12px;
  border-radius: var(--radius-pill);
  background: rgba(91, 196, 142, 0.10);
  border: 1px solid rgba(91, 196, 142, 0.35);
}
.ln-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(91, 196, 142, 0.25);
  animation: pulse 1.8s ease-in-out infinite;
}

.ln-copy h2 {
  font-family: var(--font-slab);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-top: 18px;
  color: #fff;
  text-wrap: balance;
}
.ln-copy p {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 240, 220, 0.80);
  max-width: 440px;
}

.ln-ctas {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 220, 180, 0.42);
}
.btn-ghost-light:hover {
  background: rgba(255, 220, 180, 0.12);
  border-color: rgba(255, 220, 180, 0.7);
  transform: translateY(-1px);
}

.ln-soon {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 245, 230, 0.06);
  border: 1px dashed rgba(255, 220, 180, 0.30);
  border-radius: var(--radius-pill);
  padding: 9px 16px 9px 11px;
  font-size: 13.5px;
  color: rgba(255, 240, 220, 0.78);
}
.ln-soon b { color: #fff; font-weight: 600; }
.ln-soon-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255, 207, 168, 0.18);
  color: #FFCFA8;
  display: grid; place-items: center;
}
.ln-soon-icon svg { width: 13px; height: 13px; }

/* ───── LIVE PREVIEW PANEL ───── */
.ln-preview {
  background: rgba(255, 245, 230, 0.06);
  border: 1px solid rgba(255, 220, 180, 0.22);
  border-radius: var(--radius-xl);
  padding: 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ln-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 220, 180, 0.16);
}
.ln-preview-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: #fff;
}
.ln-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff5a3c;
  box-shadow: 0 0 0 3px rgba(255, 90, 60, 0.22);
  animation: pulse 1.6s ease-in-out infinite;
}
.ln-preview-now {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11.5px;
  color: rgba(255, 240, 220, 0.55);
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 220, 180, 0.08);
  border: 1px solid rgba(255, 220, 180, 0.16);
}

.ln-kpi-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.ln-kpi {
  background: rgba(255, 245, 230, 0.04);
  border: 1px solid rgba(255, 220, 180, 0.14);
  border-radius: 14px;
  padding: 12px 14px;
}
.ln-kpi-n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ln-kpi-n.ln-mint { color: var(--mint); }
.ln-kpi-l {
  margin-top: 6px;
  font-size: 11px;
  color: rgba(255, 240, 220, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ln-section-lbl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 207, 168, 0.65);
}

.ln-props {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ln-prop {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 245, 230, 0.04);
  border: 1px solid rgba(255, 220, 180, 0.10);
  border-radius: 12px;
  padding: 8px 12px 8px 8px;
}
.ln-prop-img {
  width: 38px; height: 38px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-color: #654030;
  flex-shrink: 0;
}
.ln-prop-info { flex: 1; min-width: 0; }
.ln-prop-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: #fff;
}
.ln-prop-sub {
  font-size: 11.5px;
  color: rgba(255, 240, 220, 0.55);
  margin-top: 1px;
}
.ln-prop-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: #FFCFA8;
  white-space: nowrap;
}

.ln-roomies {
  display: flex;
  gap: 0;
  align-items: center;
}
.ln-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #1a0e08;
  margin-left: -8px;
  position: relative;
  flex-shrink: 0;
  background: #654030;
}
.ln-avatar:first-child { margin-left: 0; }
.ln-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ln-avatar.more {
  background: rgba(255, 220, 180, 0.14);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11.5px;
  color: #FFCFA8;
  letter-spacing: -0.01em;
}
.ln-online {
  position: absolute;
  bottom: 1px; right: 1px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--mint);
  border: 2px solid #1a0e08;
}

.ln-ticker {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 245, 230, 0.04);
  border: 1px solid rgba(255, 220, 180, 0.12);
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 12.5px;
  color: rgba(255, 240, 220, 0.78);
}
.ln-ticker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(91, 196, 142, 0.20);
  animation: pulse 1.8s ease-in-out infinite;
}
.ln-ticker-text b { color: #fff; font-weight: 700; }
.ln-ticker-text span { color: rgba(255, 240, 220, 0.45); }

@media (max-width: 920px) {
  .livenow-card { padding: 44px 32px; }
  .livenow-inner { grid-template-columns: 1fr; gap: 36px; }
  /* Let grid children shrink below their content min-width so nothing
     gets clipped by the card's overflow:hidden. */
  .livenow-inner > * { min-width: 0; }
}
@media (max-width: 560px) {
  .livenow-card { padding: 32px 20px; border-radius: var(--radius-xl); }
  .livenow-inner { gap: 28px; }
  .ln-copy p { max-width: none; }
  .ln-ctas .btn { width: 100%; }
  .ln-preview { padding: 18px 16px; }
  /* Header wraps so "findmyroomieapp.com" never forces the card wider */
  .ln-preview-head { flex-wrap: wrap; gap: 8px; }
  .ln-preview-now { font-size: 11px; }
  .ln-kpi { padding: 11px 10px; }
  .ln-kpi-n { font-size: 21px; }
  .ln-kpi-l { font-size: 10px; letter-spacing: 0.04em; }
}

/* ============================================================
   PLATFORM — 3-tier section
   ============================================================ */
.platform {
  padding: clamp(56px, 10vw, 100px) 0 clamp(64px, 11vw, 110px);
  position: relative;
}
.platform-head {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.platform-head .section-sub {
  text-align: center;
  margin-inline: auto;
}

.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* ============================================================
   Card shell (shared across C2C / B2B / B2G)
   ============================================================ */
.pf-block {
  position: relative;
  background:
    linear-gradient(160deg, rgba(255, 252, 246, 0.92), rgba(255, 247, 235, 0.72));
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius-xl);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 22px 50px -18px rgba(120, 60, 30, 0.22);
  transition: transform 0.35s cubic-bezier(.2,.6,.2,1), box-shadow 0.35s ease;
  cursor: pointer;
}
.pf-block:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 32px 64px -18px rgba(212, 98, 78, 0.28);
}

/* Optional small soft tag (only kept on B2G now) */
.pf-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  padding: 6px 12px 6px 10px;
  align-self: flex-start;
  box-shadow: 0 2px 6px rgba(120, 60, 30, 0.06);
}
.pf-tag-soft {
  background: rgba(255, 252, 246, 0.6);
  color: var(--ink-mute);
  border-color: rgba(201, 154, 75, 0.22);
  box-shadow: none;
}
.pf-tag-uni {
  color: #8a6a30;
  background: rgba(255, 247, 230, 0.7);
  border-color: rgba(201, 154, 75, 0.28);
}
.pf-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pf-dot.mint      { background: var(--mint); box-shadow: 0 0 0 3px rgba(91,196,142,0.20); }
.pf-dot.terracota { background: var(--terracotta); box-shadow: 0 0 0 3px rgba(212,98,78,0.18); }
.pf-dot.gold      { background: #C99A4B; box-shadow: 0 0 0 3px rgba(201,154,75,0.18); }
.pf-dot.blue      { background: #7AA8FF; box-shadow: 0 0 0 3px rgba(122,168,255,0.22); }

/* Headline block with elegant breathing */
.pf-head { display: flex; flex-direction: column; }
.pf-tag + .pf-head { margin-top: 18px; }
.pf-block h3 {
  font-family: var(--font-slab);
  font-weight: 700;
  font-size: 25px;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
}
.pf-desc {
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-3);
  text-wrap: pretty;
}

.pf-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pf-features span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
}
.pf-features svg {
  width: 14px; height: 14px;
  color: var(--brand);
  flex-shrink: 0;
}

/* ============================================================
   Mini-UI surfaces
   ============================================================ */
.pf-ui {
  margin-top: 24px;
  background: rgba(255, 252, 246, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  padding: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    0 14px 28px -12px rgba(120, 60, 30, 0.18);
}

/* ── C2C marketplace mini ── */
.pf-ui-marketplace .pf-mini-prop {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 14px;
  padding: 10px 12px 10px 10px;
  box-shadow: 0 4px 10px -4px rgba(120, 60, 30, 0.10);
}
.pf-mini-img {
  width: 48px; height: 48px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-color: #c4946d;
  flex-shrink: 0;
}
.pf-mini-body { flex: 1; min-width: 0; }
.pf-mini-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.pf-mini-meta {
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}
.pf-mini-mo {
  font-weight: 500;
  color: var(--ink-mute);
  font-size: 11px;
  margin-left: 1px;
}
.pf-pill-mint {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(91, 196, 142, 0.14);
  color: var(--mint-deep);
  border: 1px solid rgba(91, 196, 142, 0.30);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 999px;
}
.pf-pill-mint.sm { font-size: 9.5px; padding: 2px 6px; }

.pf-mini-roomies-row {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 4px 0;
}
.pf-mini-roomies {
  display: flex;
  align-items: center;
}
.pf-mini-av {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #c4946d;
  position: relative;
  box-shadow: 0 2px 5px -2px rgba(0,0,0,0.15);
}
.pf-mini-av:first-child { margin-left: 0; }
.pf-mini-av img { width: 100%; height: 100%; object-fit: cover; }
.pf-mini-roomies-label {
  font-size: 11.5px;
  color: var(--ink-mute);
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* ── B2B host mini dashboard (Airbnb-host / Stripe vibe) ── */
.pf-host-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 4px 12px;
  border-bottom: 1px solid var(--hairline);
}
.pf-host-head-l {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}
.pf-host-title-lg {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pf-host-count {
  font-size: 11px;
  color: var(--ink-mute);
  font-weight: 500;
}
.pf-host-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--hairline);
  padding: 4px 9px 4px 7px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 2px rgba(120, 60, 30, 0.06);
}
.pf-host-cta svg { width: 11px; height: 11px; }
.pf-host-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--hairline);
}
.pf-host-row:last-child { border-bottom: none; padding-bottom: 4px; }
.pf-host-img {
  width: 40px; height: 40px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: #c4946d;
  flex-shrink: 0;
  box-shadow: 0 2px 6px -2px rgba(120, 60, 30, 0.16);
}
.pf-host-info { flex: 1; min-width: 0; }
.pf-host-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.pf-host-meta {
  margin-top: 3px;
  font-size: 11px;
  color: var(--ink-mute);
  font-weight: 500;
}
.pf-host-meta b {
  color: var(--ink-2);
  font-weight: 700;
  font-family: var(--font-display);
}
.pf-host-mo {
  color: var(--ink-mute);
  font-weight: 500;
  margin-left: 1px;
}
.pf-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--mint-deep);
  background: rgba(91, 196, 142, 0.10);
  border: 1px solid rgba(91, 196, 142, 0.26);
  padding: 3px 8px 3px 7px;
  border-radius: 999px;
  flex-shrink: 0;
}
.pf-status-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--mint-deep);
  box-shadow: 0 0 0 2px rgba(91, 196, 142, 0.18);
}

/* ============================================================
   B2G / Universidades · institutional SaaS dashboard
   ============================================================ */
.pf-uni {
  background:
    radial-gradient(ellipse 95% 80% at 0% 0%, rgba(255, 232, 200, 0.55), transparent 65%),
    radial-gradient(ellipse 70% 60% at 100% 100%, rgba(40, 24, 12, 0.05), transparent 70%),
    linear-gradient(160deg, rgba(255, 252, 246, 0.92), rgba(247, 232, 220, 0.78));
}

.pf-campus-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pf-campus-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pf-campus-seal {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C99A4B, #8C6A30);
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -4px rgba(140, 106, 48, 0.4), inset 0 1px 0 rgba(255,255,255,0.25);
}
.pf-campus-seal svg { width: 22px; height: 22px; }
.pf-campus-head-info { flex: 1; min-width: 0; }
.pf-campus-uni {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pf-campus-sub {
  margin-top: 2px;
  font-size: 11px;
  color: var(--ink-mute);
  font-weight: 500;
}
.pf-campus-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint-deep);
  background: rgba(91, 196, 142, 0.10);
  border: 1px solid rgba(91, 196, 142, 0.24);
  padding: 3px 8px 3px 7px;
  border-radius: 999px;
  flex-shrink: 0;
}
.pf-campus-live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--mint-deep);
  box-shadow: 0 0 0 2px rgba(91, 196, 142, 0.20);
  animation: pf-pulse 2s ease-in-out infinite;
}
@keyframes pf-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.pf-campus-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pf-campus-metric {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(201, 154, 75, 0.16);
  border-radius: 12px;
  padding: 10px 11px;
}
.pf-campus-metric-l {
  font-size: 9.5px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  font-weight: 700;
  white-space: nowrap;
}
.pf-campus-metric-v {
  margin-top: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.pf-campus-metric-v span {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mute);
  margin-left: 1px;
}
.pf-campus-metric-d {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
}
.pf-campus-metric-d.up { color: var(--mint-deep); }

.pf-campus-bar-wrap {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(201, 154, 75, 0.14);
  border-radius: 12px;
  padding: 10px 12px 12px;
}
.pf-campus-bar-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.pf-campus-bar-head > span:first-child {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.pf-campus-bar-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.pf-campus-bar {
  height: 7px;
  border-radius: 99px;
  background: rgba(201, 154, 75, 0.16);
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(140, 106, 48, 0.08);
}
.pf-campus-bar span {
  display: block;
  height: 100%;
  width: 96%;
  background: linear-gradient(90deg, #C99A4B 0%, #E8C77F 70%, #F5E0A6 100%);
  border-radius: 99px;
  box-shadow: 0 0 10px rgba(201, 154, 75, 0.45);
}
.pf-campus-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pf-campus-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(201, 154, 75, 0.24);
  padding: 5px 11px 5px 9px;
  border-radius: 999px;
  letter-spacing: -0.005em;
}
.pf-campus-pill svg {
  width: 11px; height: 11px;
  color: #8a6a30;
  flex-shrink: 0;
}

/* ============================================================
   NeuroNet ecosystem-partner strip — silent infrastructure
   Sits BELOW the CTA. Thin, navy, almost utility-bar.
   ============================================================ */
.pf-eco {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px 11px 11px;
  background:
    linear-gradient(160deg, rgba(11, 14, 22, 0.97), rgba(7, 10, 18, 0.97));
  border: 1px solid rgba(150, 175, 220, 0.10);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.pf-eco::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(150, 175, 220, 0.03) 0%, transparent 40%);
  pointer-events: none;
}
.pf-eco:hover {
  border-color: rgba(150, 175, 220, 0.20);
  background:
    linear-gradient(160deg, rgba(14, 18, 28, 0.98), rgba(9, 13, 22, 0.98));
}

/* Tiny technical mark — a node graph, not a glowing chip */
.pf-eco-mark {
  width: 26px; height: 26px;
  flex-shrink: 0;
  display: grid; place-items: center;
  color: rgba(170, 195, 235, 0.55);
  border: 1px solid rgba(150, 175, 220, 0.12);
  border-radius: 7px;
  background: rgba(150, 175, 220, 0.03);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.pf-eco-mark svg { width: 14px; height: 14px; display: block; }
.pf-eco:hover .pf-eco-mark {
  color: rgba(200, 220, 250, 0.75);
  border-color: rgba(150, 175, 220, 0.22);
}

.pf-eco-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pf-eco-line1 {
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
  row-gap: 2px;
}
.pf-eco-badge {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 220, 250, 0.82);
  flex-shrink: 0;
}
.pf-eco-copy {
  font-family: var(--font-body);
  font-size: 11.5px;
  line-height: 1.4;
  color: rgba(180, 200, 230, 0.55);
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.pf-eco-meta {
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(160, 180, 215, 0.40);
}

.pf-eco-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(200, 220, 250, 0.75);
  padding: 6px 10px 6px 11px;
  border: 1px solid rgba(150, 175, 220, 0.18);
  border-radius: 999px;
  background: rgba(150, 175, 220, 0.04);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.pf-eco-cta svg { transition: transform 0.25s ease; }
.pf-eco:hover .pf-eco-cta {
  color: #fff;
  border-color: rgba(150, 175, 220, 0.32);
  background: rgba(150, 175, 220, 0.08);
}
.pf-eco:hover .pf-eco-cta svg { transform: translateX(2px); }

@media (max-width: 520px) {
  .pf-eco { flex-wrap: wrap; }
  .pf-eco-cta { margin-left: 38px; }
}

/* ============================================================
   Tier CTAs — three consistent buttons, different finishes
   ============================================================ */
.pf-ctas {
  margin-top: 22px;
}
.pf-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  border: none;
  border-radius: 14px;
  padding: 13px 22px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.3s ease, filter 0.25s ease;
  color: #fff;
}
.pf-btn:hover {
  transform: translateY(-1px);
}
.pf-btn:active {
  transform: translateY(0);
}

/* C2C · terracotta (warm, soft glow) */
.pf-btn--terracotta {
  background: linear-gradient(180deg, #C84B33 0%, #B43A22 55%, #9B2F1A 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 220, 200, 0.22),
    0 8px 18px -8px rgba(180, 58, 34, 0.45),
    0 0 24px -8px rgba(217, 119, 87, 0.35);
}
.pf-btn--terracotta:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 220, 200, 0.28),
    0 14px 28px -10px rgba(180, 58, 34, 0.55),
    0 0 30px -6px rgba(217, 119, 87, 0.45);
}

/* B2B · darker brick red (more serious / professional) */
.pf-btn--brick {
  background: linear-gradient(180deg, #9C2614 0%, #7E1B0B 55%, #631307 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 200, 180, 0.18),
    0 8px 18px -8px rgba(99, 19, 7, 0.50);
}
.pf-btn--brick:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 200, 180, 0.22),
    0 14px 28px -10px rgba(99, 19, 7, 0.60);
}

/* B2G · espresso (institutional / premium dark) */
.pf-btn--espresso {
  background: linear-gradient(180deg, #2c1a12 0%, #1a0d07 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 220, 180, 0.16),
    0 8px 18px -6px rgba(40, 18, 8, 0.45);
}
.pf-btn--espresso:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 220, 180, 0.20),
    0 14px 28px -8px rgba(40, 18, 8, 0.58);
}

/* ── App soon mention ── */
.platform-app-soon {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: left;
  background: var(--surface-glass-2);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--radius-pill);
  padding: 14px 26px 14px 18px;
  max-width: 620px;
  margin-inline: auto;
  box-shadow: var(--shadow-warm-sm);
}
.pas-icon {
  display: flex;
  gap: 4px;
  color: var(--ink);
  flex-shrink: 0;
}
.pas-icon svg { width: 18px; height: 18px; }
.pas-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
}
.pas-text b { color: var(--brand); font-weight: 700; }
.pas-text span {
  display: block;
  font-size: 12.5px;
  color: var(--ink-mute);
  margin-top: 2px;
}
.pas-text a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(173, 23, 1, 0.35);
}
.pas-text a:hover { border-bottom-color: var(--brand); }

@media (max-width: 1080px) {
  .platform-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
}
@media (max-width: 640px) {
  .platform-head { margin-bottom: 40px; }
  .pf-block { padding: 30px 24px 26px; }
  .pf-campus-metrics { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .pf-campus-metric { padding: 9px; }
  .pf-campus-metric-v { font-size: 19px; }
}

/* ============================================================
   MODALS — premium glassmorphism
   ============================================================ */
.modal-host {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.modal-host.open {
  pointer-events: auto;
  opacity: 1;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(60, 28, 12, 0.55), rgba(20, 8, 4, 0.75));
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}
.modal-shell {
  position: relative;
  width: min(640px, calc(100% - 40px));
  max-height: calc(100vh - 80px);
  background:
    linear-gradient(160deg, rgba(255, 252, 246, 0.96), rgba(255, 245, 232, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.9),
    0 30px 80px -10px rgba(40, 18, 8, 0.55),
    0 18px 40px -16px rgba(173, 23, 1, 0.30);
  transform: scale(0.96) translateY(8px);
  transition: transform 0.30s cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
}
.modal-host.open .modal-shell {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 252, 246, 0.95);
  border: 1px solid var(--hairline);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 6;
  box-shadow: 0 4px 12px rgba(60, 28, 12, 0.18);
  transition: transform 0.2s, background 0.2s;
}
.modal-close:hover {
  background: #fff;
  transform: rotate(90deg);
}
.modal-close svg { width: 14px; height: 14px; }

.modal-body {
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
}

/* ── modal interiors ── */
.m-hero {
  position: relative;
  padding: 36px 36px 28px;
  background:
    linear-gradient(160deg, rgba(255, 232, 200, 0.85), rgba(247, 226, 212, 0.65));
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.m-hero-glow {
  position: absolute;
  top: -40%; right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(173, 23, 1, 0.18), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.m-hero-inner { position: relative; z-index: 1; }
.m-hero-city {
  background:
    linear-gradient(160deg, #2a1810 0%, #1a0e08 100%);
  color: #fff;
}
.m-hero-city .m-eyebrow { color: #FFCFA8; }
.m-hero-city .m-title { color: #fff; }
.m-hero-city .m-sub { color: rgba(255, 240, 220, 0.80); }
.m-mini-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.32;
  z-index: 0;
}
.m-hero-platform {
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(255, 232, 200, 0.7), transparent 60%),
    linear-gradient(160deg, rgba(255, 252, 246, 0.95), rgba(247, 232, 220, 0.85));
}
.m-hero-dark {
  background:
    linear-gradient(160deg, #1a1f2e 0%, #131722 60%, #0e111a 100%);
  color: #fff;
}
.m-hero-dark .m-hero-glow {
  background: radial-gradient(circle, rgba(122, 168, 255, 0.30), transparent 60%);
}

.m-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 5px 11px 5px 9px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(173, 23, 1, 0.20);
}
.m-eyebrow.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.30);
}
.m-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.m-dot.mint      { background: var(--mint); }
.m-dot.terracota { background: var(--terracotta); }
.m-dot.gold      { background: #C99A4B; }
.m-dot.blue      { background: #7AA8FF; }

.m-title {
  font-family: var(--font-slab);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 14px;
  text-wrap: balance;
}
.m-title.light { color: #fff; }

.m-sub {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.5;
}
.m-sub.light { color: rgba(255, 240, 220, 0.78); }

.m-cover {
  position: relative;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #fff;
  border-bottom: 1px solid var(--hairline);
}
.m-cover-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20, 8, 4, 0.85));
}
.m-cover-inner { position: relative; z-index: 1; max-width: 480px; }

.m-lead {
  padding: 24px 32px 8px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-3);
}

.m-grid {
  padding: 24px 32px 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
}
.m-stat-l {
  display: block;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.m-stat-v {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.m-section-lbl {
  padding: 26px 32px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}

.m-bullets {
  padding: 12px 32px 24px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.m-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
}
.m-bullets svg {
  width: 18px; height: 18px;
  color: var(--mint-deep);
  flex-shrink: 0;
  margin-top: 2px;
}

.m-checklist {
  padding: 12px 32px 24px;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
}
.m-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
}
.m-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--mint);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 2px 6px rgba(91, 196, 142, 0.4);
}
.m-check svg { width: 11px; height: 11px; }

.m-cta {
  padding: 8px 32px 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.m-cta .btn { padding: 13px 22px; font-size: 14.5px; }

@media (max-width: 600px) {
  .m-grid { grid-template-columns: 1fr; }
  .m-checklist { grid-template-columns: 1fr; }
  .m-hero { padding: 28px 22px 22px; }
  .m-lead, .m-grid, .m-section-lbl, .m-bullets, .m-checklist, .m-cta { padding-left: 22px; padding-right: 22px; }

  /* Modal shell: use the dynamic viewport so mobile browser chrome
     doesn't clip the bottom; bigger close target; tighter margins. */
  .modal-shell {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: var(--radius-lg);
  }
  .modal-close {
    width: 44px; height: 44px;
    top: 12px; right: 12px;
  }
  .modal-close svg { width: 16px; height: 16px; }
  .m-cta { flex-direction: column; align-items: stretch; }
  .m-cta .btn { width: 100%; justify-content: center; }
}
