:root {
  --bg: #f7f5ef;
  --ink: #161512;
  --muted: #5d5b55;
  --accent: #283757;
  --accent-dark: #1a2740;
  --accent-light: rgba(40, 55, 87, 0.1);
  --card: #ffffff;
  --border: rgba(22, 21, 18, 0.1);
  --shadow-sm: 0 4px 16px rgba(17, 19, 26, 0.07);
  --shadow: 0 20px 48px rgba(17, 19, 26, 0.12);
  --shadow-lg: 0 32px 72px rgba(17, 19, 26, 0.16);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --container: 1140px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Instrument Sans", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* padding-top set dynamically by JS to match .top-chrome height */
}

h1, h2, h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p { color: var(--muted); }

a { color: inherit; text-decoration: none; }

button { font: inherit; border: none; cursor: pointer; background: none; }

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 20px rgba(22, 21, 18, 0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(22, 21, 18, 0.24); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: rgba(22, 21, 18, 0.06); transform: translateY(-1px); }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-full { width: 100%; text-align: center; }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}
.eyebrow-light { color: rgba(255,255,255,0.7); }

/* ── NAV ── */
.nav-wrap {
  position: relative;
  background: rgba(247, 245, 239, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.nav-wrap.nav-scrolled {
  box-shadow: 0 2px 24px rgba(17, 19, 26, 0.09);
  border-bottom-color: rgba(22, 21, 18, 0.14);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: auto;
  height: 76px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.logo-name { display: block; font-weight: 700; font-size: 1rem; }
.logo-tld { color: var(--accent-dark); }
.logo-stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.logo-stacked .logo-sub {
  margin: 0;
}
.brand-tld { color: #fb923c; font-weight: 700; }
.logo-sub { display: block; font-size: 0.7rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.nav-links { display: flex; gap: 22px; font-size: 0.9rem; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; gap: 10px; }

/* ── ANNOUNCEMENT BAR ── */
.top-chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.announce-bar {
  background: linear-gradient(90deg, #0a0e1a 0%, #1a2740 50%, #0a0e1a 100%);
  background-size: 200% 100%;
  color: #fff;
  padding: 10px 0;
  font-size: 0.85rem;
  animation: announceShift 8s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}
.announce-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(249,115,22,0.12) 50%, transparent 100%);
  animation: announceShine 4s linear infinite;
  pointer-events: none;
}
.announce-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.announce-dot { color: #16a34a; animation: livePulse 1.6s ease-in-out infinite; font-size: 0.7rem; }
.announce-link {
  color: #fb923c;
  font-weight: 700;
  display: inline-flex;
  gap: 6px;
  transition: gap 0.2s ease;
}
.announce-link:hover { gap: 12px; color: #f97316; }
@keyframes announceShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes announceShine {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

/* ── HERO — Admin Signin Background Replica ── */
.hero {
  --signin-bg-navy: #2a3552;
  --signin-bg-navy-deep: #243553;
  --signin-bg-navy-dark: #223e5a;
  --signin-bg-boricua: #ff5c2b;
  --signin-bg-cyan: #00e5ff;
  --signin-bg-glass: rgba(255, 255, 255, 0.03);
  --signin-bg-glass-border: rgba(255, 255, 255, 0.08);
  padding: 120px 0 110px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background-color: var(--signin-bg-navy);
  background-image:
    radial-gradient(circle at 18% 18%, rgba(255, 92, 43, 0.1) 0%, rgba(255, 92, 43, 0) 55%),
    radial-gradient(circle at 82% 78%, rgba(0, 229, 255, 0.08) 0%, rgba(0, 229, 255, 0) 55%),
    linear-gradient(130deg, #343b5e 0%, #2b3b58 45%, #223e5b 100%);
}

/* Signin-bg structure */
.hero .signin-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero .signin-bg__atmo {
  position: absolute;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.hero .signin-bg__atmo--a {
  font-size: 15vw;
  top: -6%;
  left: -6%;
  transform: rotate(-5deg);
}
.hero .signin-bg__atmo--b {
  font-size: 8vw;
  bottom: 6%;
  right: 2%;
  transform: rotate(2deg);
}

.hero .signin-bg__float {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.hero .signin-bg__card {
  background: var(--signin-bg-glass);
  border: 1px solid var(--signin-bg-glass-border);
  border-radius: 22px;
  box-shadow: -20px 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero .signin-bg__card--small {
  width: 320px;
  height: 190px;
  top: 70px;
  left: 40px;
  opacity: 0.2;
  transform: rotate(-12deg);
}
.hero .signin-bg__card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hero .signin-bg__dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.45);
}
.hero .signin-bg__bar {
  width: 48px; height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}
.hero .signin-bg__card-body {
  padding: 14px 18px;
  display: grid;
  gap: 12px;
}
.hero .signin-bg__mini-chart {
  height: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  align-items: end;
}
.hero .signin-bg__mini-chart span {
  display: block;
  background: rgba(0, 229, 255, 0.2);
  border-radius: 4px 4px 0 0;
}
.hero .signin-bg__mini-chart span:nth-child(1) { height: 50%; }
.hero .signin-bg__mini-chart span:nth-child(2) { height: 70%; }
.hero .signin-bg__mini-chart span:nth-child(3) { height: 100%; }
.hero .signin-bg__mini-chart span:nth-child(4) { height: 60%; }

.hero .signin-bg__thin-bar {
  width: 100%; height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.hero .signin-bg__chart-circle {
  top: 50%;
  left: 70px;
  transform: translateY(-50%);
  opacity: 0.2;
}
.hero .signin-bg__chart-circle svg { width: 120px; height: 120px; }
.hero .signin-bg__chart-circle path {
  fill: none;
  stroke: var(--signin-bg-cyan);
  stroke-width: 3;
  stroke-dasharray: 75, 100;
}

.hero .signin-bg__card--large {
  width: 500px;
  height: 350px;
  bottom: -110px;
  right: -90px;
  opacity: 0.15;
  transform: rotate(6deg);
}
.hero .signin-bg__grid {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.hero .signin-bg__panel {
  height: 140px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}
.hero .signin-bg__panel--wide {
  grid-column: 1 / -1;
  height: 80px;
  border-color: rgba(255, 92, 43, 0.25);
  background: rgba(255, 92, 43, 0.08);
}

.hero .signin-bg__wave {
  top: 115px;
  right: 140px;
  opacity: 0.25;
}
.hero .signin-bg__wave svg { width: 190px; height: 80px; }
.hero .signin-bg__wave path {
  fill: none;
  stroke: var(--signin-bg-cyan);
  stroke-width: 2;
}
.hero .signin-bg__wave circle { fill: var(--signin-bg-cyan); }

.hero .signin-bg__sun {
  top: 15%;
  right: 18%;
  opacity: 0.4;
}
.hero .signin-bg__sun svg {
  width: 90px; height: 90px;
  fill: none;
  stroke: rgba(255, 92, 43, 0.45);
  stroke-width: 1.5;
}
.hero .signin-bg__dashed { stroke-dasharray: 4 4; }

.hero .signin-bg__flower {
  top: 7%;
  right: 4%;
  opacity: 0.35;
}
.hero .signin-bg__flower svg {
  width: 120px; height: 120px;
  fill: none;
  stroke: rgba(255, 92, 43, 0.4);
  stroke-width: 1.2;
}
.hero .signin-bg__flower circle { fill: rgba(255, 92, 43, 0.4); }

.hero .signin-bg__mask {
  bottom: 22%;
  left: 3%;
  color: rgba(255, 92, 43, 0.45);
  transform: rotate(-12deg);
  text-align: center;
}
.hero .signin-bg__mask .material-symbols-outlined { font-size: 120px; }
.hero .signin-bg__mask-label {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: rgba(255, 92, 43, 0.35);
}

.hero .signin-bg__leaf { color: rgba(255, 92, 43, 0.4); }
.hero .signin-bg__leaf--1 { top: 42%; left: 9%; transform: rotate(45deg); }
.hero .signin-bg__leaf--2 { bottom: 18%; right: 15%; transform: rotate(-12deg); }
.hero .signin-bg__leaf .material-symbols-outlined { font-size: 36px; }

.hero .signin-bg__sticker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--signin-bg-navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  box-shadow: 3px 3px 0 rgba(0, 229, 255, 0.2);
  opacity: 0.75;
}
.hero .signin-bg__sticker .material-symbols-outlined { font-size: 12px; }
.hero .signin-bg__sticker--pr { top: 46%; right: 6%; transform: rotate(6deg); }
.hero .signin-bg__sticker--boricua {
  bottom: 46%;
  left: 3%;
  transform: rotate(-12deg);
  box-shadow: 3px 3px 0 rgba(255, 92, 43, 0.2);
}

.hero .signin-bg__leak {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.hero .signin-bg__leak--orange {
  width: 40vw; height: 40vw;
  top: -10%; left: -10%;
  background: rgba(255, 92, 43, 0.12);
}
.hero .signin-bg__leak--cyan {
  width: 30vw; height: 30vw;
  bottom: -8%; right: -6%;
  background: rgba(0, 229, 255, 0.08);
}

@media (max-width: 900px) {
  .hero .signin-bg__card--small { transform: rotate(-8deg) scale(0.85); top: 50px; left: 20px; }
  .hero .signin-bg__card--large { transform: rotate(6deg) scale(0.85); right: -140px; }
  .hero .signin-bg__mask { transform: rotate(-8deg) scale(0.8); }
  .hero .signin-bg__wave { right: 40px; }
}
@media (max-width: 600px) {
  .hero .signin-bg__card--small,
  .hero .signin-bg__card--large,
  .hero .signin-bg__wave,
  .hero .signin-bg__chart-circle { opacity: 0.15; }
  .hero .signin-bg__sticker--pr,
  .hero .signin-bg__sticker--boricua { font-size: 9px; }
  .hero .signin-bg__atmo--a { font-size: 18vw; }
  .hero .signin-bg__atmo--b { font-size: 10vw; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Hero content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.25);
  animation: livePulse 1.6s ease-in-out infinite;
}

.hero-text h1 {
  color: #fff;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 700;
  margin: 0 0 24px;
}
.h-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #fb923c 55%, #f97316 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.hero-desc {
  color: rgba(255,255,255,0.62);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-desc strong { color: #fff; font-weight: 600; }

/* Glass button */
.btn-glass {
  background: rgba(255,255,255,0.06);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: none;
}
.btn-glass:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* Shimmer button */
.btn-shimmer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(249,115,22,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-shimmer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.38) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: shimmer 3.2s linear infinite;
}
.btn-shimmer:hover {
  box-shadow: 0 14px 40px rgba(249,115,22,0.55), inset 0 1px 0 rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.btn-arrow { display: inline-block; transition: transform 0.2s ease; }
.btn-shimmer:hover .btn-arrow { transform: translateX(5px); }
@keyframes shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

/* Trust row on dark hero */
.hero .trust-row .trust-item {
  color: rgba(255,255,255,0.7);
}
.hero .trust-icon { color: #16a34a; }
.hero .trust-item-ath {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.3);
}
.hero .trust-item-ath span { color: #fb923c; }

/* mockup card glow on dark */
.hero .mockup-card {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 40px 80px rgba(0,0,0,0.5),
    0 0 120px rgba(249, 115, 22, 0.1);
}
.hero .floating-card {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.trust-row { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}
.trust-icon { color: var(--accent-dark); font-weight: 700; }

/* Hero visual */
.hero-visual { position: relative; }

.mockup-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f2f1ec;
  border-bottom: 1px solid var(--border);
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(22,21,18,0.15);
}
.mockup-dots span:first-child { background: #fc615d; }
.mockup-dots span:nth-child(2) { background: #fdbc40; }
.mockup-dots span:nth-child(3) { background: #34c749; }
.mockup-url {
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  background: #e8e6e0;
  padding: 5px 12px;
  border-radius: 999px;
}
.mockup-body { padding: 20px; }

.store-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.store-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.store-badge.live { background: rgba(40,55,87,0.12); color: var(--accent-dark); }
.store-name { font-weight: 700; font-family: "Bricolage Grotesque", sans-serif; }

.product-list { display: grid; gap: 10px; margin-bottom: 16px; }
.product-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  background: #faf9f6;
}
.product-thumb {
  width: 38px; height: 38px;
  border-radius: 8px;
  flex-shrink: 0;
}
.product-thumb.food { background: linear-gradient(135deg, #f97316, #ea580c); }
.product-thumb.drink { background: linear-gradient(135deg, #6b4f35, #3b2011); }
.product-thumb.pasta { background: linear-gradient(135deg, #eab308, #ca8a04); }
.product-info { flex: 1; }
.product-name { display: block; font-size: 0.82rem; font-weight: 600; }
.product-price { display: block; font-size: 0.78rem; color: var(--muted); }
.add-btn {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
}
.checkout-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--ink);
  border-radius: var(--radius-xs);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}
.checkout-btn {
  background: var(--accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.floating-card {
  position: absolute;
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: grid;
  gap: 2px;
}
.fc-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.fc-value { font-size: 1.4rem; font-weight: 700; font-family: "Bricolage Grotesque", sans-serif; }
.fc-sub { font-size: 0.75rem; color: var(--muted); }
.fc-sub.atm { color: var(--accent-dark); font-weight: 600; }

.card-orders { top: -20px; right: -24px; }
.card-payment { bottom: 20px; left: -28px; }

/* ── STORE MOCKUP (replica real) ── */
.store-mockup {
  --coral: #d2785a;
  --coral-soft: #e99277;
  --coral-ink: #8c3c22;
  transition: box-shadow .5s ease;
}
.store-mockup .mockup-body { padding: 0; }

/* Demo chips above mockup */
.demo-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
  justify-content: center;
}
.demo-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s ease;
}
.demo-chip:hover { color: #fff; background: rgba(255,255,255,0.14); }
.demo-chip.active {
  background: var(--chip-color, var(--coral));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.demo-chip .chip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.7;
}

/* top coral bar */
.sm-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--coral);
  color: #fff;
  transition: background .5s ease;
}
.sm-logo {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(0,0,0,0.18);
  display: grid; place-items: center;
  color: #fff;
}
.sm-logo svg { width: 18px; height: 18px; }
.sm-top-right { display: flex; gap: 8px; align-items: center; }
.sm-user, .sm-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--ink);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}
.sm-avatar {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #eee;
  display: grid; place-items: center;
  font-size: 0.65rem;
  color: var(--muted);
}
.sm-cart svg { width: 14px; height: 14px; color: var(--coral-ink); }
.sm-cart-count { font-variant-numeric: tabular-nums; }

/* body: sidebar + grid */
.sm-body {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 14px;
  background: #fbf8f3;
  transition: opacity .35s ease, transform .35s ease;
}
.sm-body.is-swapping {
  opacity: 0;
  transform: translateY(6px);
}
.sm-sidebar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 8px;
  font-size: 0.72rem;
}
.sm-side-title {
  display: block;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 4px 8px 8px;
  color: var(--ink);
}
.sm-sidebar ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid; gap: 2px;
}
.sm-sidebar li {
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--muted);
  cursor: default;
}
.sm-sidebar li.active {
  background: rgba(210, 120, 90, 0.12);
  color: var(--coral-ink);
  font-weight: 600;
}

.sm-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.sm-product {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sm-prod-img {
  height: 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #eee;
  transition: background-image .3s ease;
}

.sm-prod-info {
  padding: 8px 10px 10px;
  display: grid;
  gap: 2px;
}
.sm-prod-name { font-size: 0.74rem; font-weight: 700; color: var(--ink); }
.sm-prod-desc { font-size: 0.66rem; color: var(--muted); line-height: 1.3; }
.sm-prod-price { font-size: 0.8rem; font-weight: 700; color: var(--ink); margin-top: 4px; }
.sm-prod-actions {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}
.sm-btn-ghost, .sm-btn-primary {
  flex: 1;
  padding: 5px 6px;
  border-radius: 6px;
  font-size: 0.62rem;
  font-weight: 600;
  cursor: default;
  border: none;
}
.sm-btn-ghost {
  background: transparent;
  color: var(--coral-ink);
}
.sm-btn-primary {
  background: var(--coral);
  color: #fff;
}

/* footer */
.sm-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 14px;
  background: #fbf8f3;
  border-top: 1px solid var(--border);
  font-size: 0.65rem;
  color: var(--muted);
}
.sm-powered strong { color: var(--coral-ink); font-weight: 700; }

/* ── STORE TYPES ── */
.store-types {
  padding: 96px 0;
  background: rgba(255,255,255,0.5);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-head { max-width: 560px; margin-bottom: 48px; }
.section-head.centered { margin: 0 auto 48px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 3vw, 2.8rem); margin-bottom: 12px; }
.section-head p { font-size: 1.05rem; }

.types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.type-card {
  display: block;
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.type-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.type-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: var(--accent);
}
.type-icon svg {
  width: 100%;
  height: 100%;
}
.type-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.type-card p { font-size: 0.88rem; }

/* ── FEATURES / BENTO ── */
.features { padding: 96px 0; }

.features-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.bento-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.bento-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.bento-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.bento-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.bento-card p { font-size: 0.92rem; }

.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.feature-tags span {
  padding: 6px 12px;
  background: #f2f1ec;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* mini dashboard visual */
.mini-dashboard {
  background: #0d1520;
  border-radius: var(--radius-sm);
  padding: 20px;
  color: #fff;
}
.dash-row { display: flex; gap: 12px; margin-bottom: 16px; }
.dash-stat {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 10px 12px;
}
.ds-label { display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.ds-val { font-size: 1.15rem; font-weight: 700; font-family: "Bricolage Grotesque", sans-serif; }
.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}
.bar {
  flex: 1;
  background: rgba(40,55,87,0.35);
  border-radius: 4px 4px 0 0;
  transition: background 0.2s;
}
.bar.active { background: var(--accent); }

/* ATH badge */
.athm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: rgba(40,55,87,0.1);
  border: 1px solid rgba(40,55,87,0.25);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-dark);
}
.athm-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(40,55,87,0.2);
}

/* theme dots */
.themes-row { display: flex; gap: 10px; margin-top: 16px; }
.theme-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* ── STEPS ── */
.steps {
  padding: 96px 0;
  background: rgba(255,255,255,0.5);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
}
.step-card {
  flex: 1;
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.step-divider {
  font-size: 1.8rem;
  color: var(--muted);
  padding: 0 16px;
  flex-shrink: 0;
}
.step-num {
  font-size: 2.4rem;
  font-weight: 800;
  font-family: "Bricolage Grotesque", sans-serif;
  color: var(--accent-dark);
  opacity: 0.3;
  display: block;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; }
.step-code {
  display: inline-block;
  font-family: "SFMono-Regular", "Menlo", "Consolas", monospace;
  font-size: 0.82rem;
  background: rgba(40, 55, 87, 0.08);
  color: var(--accent-dark);
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid rgba(40, 55, 87, 0.15);
  font-weight: 600;
  white-space: nowrap;
}

/* ── SOCIAL PROOF ── */
.social-proof {
  padding: 64px 0;
  background: var(--ink);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.proof-stat { padding: 8px; }
.proof-num {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  font-family: "Bricolage Grotesque", sans-serif;
  color: #fff;
  margin-bottom: 6px;
}
.proof-label { font-size: 0.88rem; color: rgba(255,255,255,0.55); font-weight: 500; }

/* ── PRICING ── */
.pricing { padding: 96px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.plan-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.plan-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(40,55,87,0.15), var(--shadow);
  transform: scale(1.03);
}
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-name { font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin: 10px 0 4px; }
.plan-amount { font-size: 2.4rem; font-weight: 800; font-family: "Bricolage Grotesque", sans-serif; }
.plan-period { color: var(--muted); font-size: 0.9rem; }
.plan-desc { color: var(--muted); font-size: 0.88rem; }
.plan-features { list-style: none; display: grid; gap: 10px; }
.plan-features li {
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
  color: var(--muted);
}
.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

/* ── CTA SECTION ── */
.cta-section { padding: 80px 0 100px; }
.cta-card {
  background: linear-gradient(145deg, #0d1520 0%, #0a1018 50%, #0d1828 100%);
  border-radius: var(--radius);
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 0%, rgba(40,55,87,0.25), transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 12px;
}
.cta-content > p { color: rgba(255,255,255,0.6); font-size: 1.05rem; margin-bottom: 32px; }
.cta-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto 16px; }
.cta-input {
  flex: 1;
  padding: 15px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.cta-input::placeholder { color: rgba(255,255,255,0.4); }
.cta-input:focus { border-color: var(--accent); }
.cta-form .btn-primary { background: var(--accent); box-shadow: 0 8px 20px rgba(40,55,87,0.35); flex-shrink: 0; }
.cta-note { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ── FOOTER ── */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; margin-top: 8px; max-width: 220px; }
.footer-links-group { display: grid; gap: 10px; }
.footer-group-title {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin-bottom: 4px;
}
.footer-links-group a { font-size: 0.88rem; color: var(--muted); transition: color 0.15s; }
.footer-links-group a:hover { color: var(--ink); }
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── ATH MÓVIL FEATURE SECTION ── */
.athm-section {
  padding: 100px 0;
  background: #0f0f0f;
  position: relative;
  overflow: hidden;
}
.athm-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 100% 50%, rgba(249, 115, 22, 0.18), transparent 65%),
    radial-gradient(ellipse 500px 400px at 0% 80%, rgba(249, 115, 22, 0.08), transparent 60%);
  pointer-events: none;
}
.athm-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow-orange {
  color: #f97316;
  letter-spacing: 0.18em;
}
.athm-hero-logo {
  display: block;
  height: 72px;
  width: auto;
  margin: 20px 0 32px;
}
.athm-left h2 {
  color: #fff;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  margin-bottom: 16px;
}
.athm-left > p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 480px;
}
.athm-perks {
  list-style: none;
  display: grid;
  gap: 20px;
}
.athm-perks li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.perk-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.athm-perks li div { display: grid; gap: 3px; }
.athm-perks li strong { color: #fff; font-size: 0.95rem; }
.athm-perks li span { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.5; }

/* phone mockup */
.athm-mockup {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
}
.atm-phone {
  width: 220px;
  background: #1a1a1a;
  border-radius: 32px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
  padding: 12px;
  flex-shrink: 0;
}
.atm-phone-notch {
  width: 60px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  margin: 0 auto 14px;
}
.atm-screen {
  background: #fff;
  border-radius: 22px;
  padding: 20px 16px;
  display: grid;
  gap: 16px;
}
.atm-app-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a1a1a;
  font-family: "Bricolage Grotesque", sans-serif;
}
.atm-app-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: contain;
}
.atm-request {
  background: #f7f7f7;
  border-radius: 14px;
  padding: 16px;
  display: grid;
  gap: 4px;
  text-align: center;
}
.atm-req-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  font-weight: 600;
}
.atm-req-from {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a1a;
}
.atm-req-amount {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: 1.1;
}
.atm-req-desc {
  font-size: 0.7rem;
  color: #999;
  line-height: 1.4;
}
.atm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.atm-btn-decline {
  padding: 10px;
  border-radius: 999px;
  border: 1.5px solid #e5e5e5;
  font-size: 0.8rem;
  font-weight: 600;
  color: #666;
  font: inherit;
  cursor: pointer;
}
.atm-btn-pay {
  padding: 10px;
  border-radius: 999px;
  background: #f97316;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  border: none;
  font: inherit;
  cursor: pointer;
}

/* flow steps */
.atm-flow {
  display: grid;
  gap: 0;
  align-items: center;
}
.flow-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  padding: 2px 0;
}
.flow-step.done { color: rgba(255,255,255,0.75); }
.flow-step.active { color: #f97316; font-weight: 600; }
.flow-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.flow-step.done .flow-dot { background: #f97316; }
.flow-step.active .flow-dot {
  background: #f97316;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.25);
}
.flow-line {
  width: 2px;
  height: 24px;
  background: rgba(255,255,255,0.1);
  margin-left: 4px;
}
.flow-line.done { background: rgba(249, 115, 22, 0.5); }

/* trust row ATH item */
.trust-item-ath {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 999px;
}
.trust-athm-logo {
  height: 22px;
  width: auto;
}
.trust-item-ath {
  padding: 8px 16px;
  gap: 8px;
}
.trust-item-ath span {
  font-size: 0.88rem;
  font-weight: 700;
  color: #c2580a;
}

/* ── ONE-STORE BADGE ── */
.one-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 9px 16px;
  background: var(--accent-light);
  border: 1px solid rgba(40, 55, 87, 0.2);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--accent-dark);
}
.osb-icon { font-size: 0.7rem; }

/* ── ATH MÓVIL LOGO INSTANCES ── */
.athm-btn-logo {
  height: 22px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.checkout-btn {
  background: #f97316;
  padding: 8px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-athm-logo {
  height: 24px;
  width: auto;
  margin-top: 4px;
}

.athm-badge-logo {
  height: 28px;
  width: auto;
}

/* ── PAYMENTS BAND — ATH NATIVO DRAMATIC ── */
.payments-band {
  position: relative;
  padding: 120px 0;
  background: radial-gradient(ellipse at top, #1a2740 0%, #0a0e1a 70%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.pb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.pb-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(249,115,22,0.35), transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  animation: pbOrb1 14s ease-in-out infinite alternate;
}
.pb-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(40,55,87,0.55), transparent 70%);
  bottom: -150px; right: -100px;
  animation: pbOrb2 18s ease-in-out infinite alternate;
}
@keyframes pbOrb1 {
  from { transform: translateX(-50%) scale(1); }
  to   { transform: translateX(-45%) scale(1.15); }
}
@keyframes pbOrb2 {
  from { transform: scale(1); }
  to   { transform: scale(1.2) translate(-40px, -40px); }
}

.pb-container { position: relative; z-index: 2; }

/* Head */
.pb-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.pb-head h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.pb-head p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin: 0;
}

/* Hero logo with pulsing rings */
.pb-hero-logo {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 72px;
  display: grid;
  place-items: center;
}
.pb-logo {
  position: relative;
  z-index: 2;
  width: 220px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(249,115,22,0.4));
}
.pb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(249, 115, 22, 0.5);
  pointer-events: none;
  animation: pbPulse 3.2s ease-out infinite;
  opacity: 0;
}
.pb-ring-1 { width: 260px; height: 260px; animation-delay: 0s; }
.pb-ring-2 { width: 260px; height: 260px; animation-delay: 1s; }
.pb-ring-3 { width: 260px; height: 260px; animation-delay: 2s; }
@keyframes pbPulse {
  0%   { transform: scale(0.7); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Comparison */
.pb-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 72px;
}
.pb-card {
  position: relative;
  padding: 32px;
  border-radius: 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.pb-card-other {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
}
.pb-card-ours {
  background: linear-gradient(145deg, rgba(249,115,22,0.18) 0%, rgba(249,115,22,0.06) 100%);
  border: 1.5px solid rgba(249,115,22,0.4);
  box-shadow: 0 30px 60px rgba(249,115,22,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}
.pb-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pb-brand-icon {
  font-size: 1.6rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.pb-brand {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.pb-card-logo {
  height: 32px;
  width: auto;
}
.pb-flag {
  font-size: 1.6rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.pb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.pb-list li {
  position: relative;
  padding-left: 34px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.pb-card-ours .pb-list li { color: #fff; }
.pb-card-ours .pb-list strong { color: #fff; font-weight: 700; }
.pb-card-other .pb-list em { color: rgba(255,255,255,0.9); font-style: normal; font-weight: 600; }
.pb-x, .pb-check {
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
}
.pb-x {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45);
}
.pb-check {
  background: #f97316;
  color: #fff;
  box-shadow: 0 2px 8px rgba(249,115,22,0.4);
}
.pb-tag {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #f97316;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(249,115,22,0.4);
}
.pb-vs {
  display: grid;
  place-items: center;
  width: 56px;
}
.pb-vs span {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(255,255,255,0.35);
  border: 2px solid rgba(255,255,255,0.15);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.03);
}

/* Flow */
.pb-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 28px;
  margin-bottom: 48px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.pb-flow-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
}
.pb-flow-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.08);
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.pb-flow-final .pb-flow-num {
  background: #f97316;
  box-shadow: 0 8px 20px rgba(249,115,22,0.4);
}
.pb-flow-text { display: grid; gap: 2px; }
.pb-flow-text strong {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}
.pb-flow-text span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.pb-flow-arrow {
  display: flex;
  gap: 6px;
}
.pb-flow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #f97316;
  opacity: 0.3;
  animation: pbDotFlow 1.4s ease-in-out infinite;
}
.pb-flow-arrow .pb-flow-dot:nth-child(2) { animation-delay: 0.2s; }
.pb-flow-arrow .pb-flow-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes pbDotFlow {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.4); }
}

/* CTA row */
.pb-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.pb-cta-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ── CUSTOM CASE CTA (tipos) ── */
.custom-case {
  margin-top: 28px;
  background: linear-gradient(135deg, var(--ink) 0%, #23324f 100%);
  border-radius: var(--radius);
  padding: 36px 40px;
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.custom-case::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(249,115,22,0.22), transparent 70%);
  pointer-events: none;
}
.custom-case-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
}
.custom-case .eyebrow { color: #f97316; }
.custom-case h3 { color: #fff; font-size: 1.6rem; margin-bottom: 10px; }
.custom-case p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0; }
.custom-case .btn-primary {
  background: #fff;
  color: var(--ink);
  flex-shrink: 0;
  white-space: nowrap;
}
.custom-case .btn-primary:hover { background: #f97316; color: #fff; }

/* ── EARLY ACCESS CARD ── */
.eyebrow-live {
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow-live::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 4px rgba(22,163,74,0.2);
  animation: livePulse 1.6s ease-in-out infinite;
}
.eyebrow-live { letter-spacing: 0.12em; }
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(22,163,74,0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(22,163,74,0.08); }
}

.early-card {
  background: var(--card);
  border-radius: 28px;
  padding: 48px;
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 6px rgba(40,55,87,0.08), 0 40px 80px rgba(40,55,87,0.14);
  position: relative;
  overflow: hidden;
}
.early-card::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(40,55,87,0.12), transparent 70%);
  pointer-events: none;
}

.early-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.early-top-left { flex: 1; }
.early-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.early-top h3 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}
.early-top p { margin: 0; color: var(--muted); }

.early-price {
  text-align: right;
  flex-shrink: 0;
}
.early-amount {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.early-period {
  font-size: 1.1rem;
  color: var(--muted);
  margin-left: 4px;
}
.early-strike {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.early-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 36px;
  position: relative;
}
.ef-col { display: grid; gap: 10px; }
.ef-title {
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  margin-bottom: 4px;
}
.ef-col ul { list-style: none; display: grid; gap: 10px; padding: 0; }
.ef-col li {
  font-size: 0.92rem;
  color: var(--muted);
  padding-left: 22px;
  position: relative;
}
.ef-col li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.early-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.early-note {
  font-size: 0.82rem;
  color: var(--muted);
}

.early-promise {
  margin-top: 32px;
  padding: 24px 28px;
  background: #fff;
  border: 1px dashed rgba(40,55,87,0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.promise-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.early-promise > div > strong {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.early-promise p { margin: 0; font-size: 0.9rem; }
.early-promise p strong { font-weight: 700; color: var(--accent-dark); }

/* ── SCROLL REVEAL ── */
.will-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease var(--reveal-delay, 0ms),
              transform 0.55s ease var(--reveal-delay, 0ms);
}
.revealed {
  opacity: 1;
  transform: none;
}

/* ── MARQUEE MODERN ── */
.marquee-wrap {
  overflow: hidden;
  padding: 28px 0;
  background: linear-gradient(180deg, #fff 0%, #faf9f4 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  /* smooth fade edges */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marqueeSlide 32s linear infinite;
}

.mpill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(22, 21, 18, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  cursor: default;
}
.mpill svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  transition: color 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}
.mpill:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: var(--accent);
  color: var(--accent-dark);
  box-shadow: 0 10px 24px rgba(40, 55, 87, 0.14);
}
.mpill:hover svg {
  transform: rotate(-8deg) scale(1.15);
}

.marquee-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 8px)); }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ── CARD GLOW HOVER ── */
.type-card:hover {
  box-shadow: 0 0 0 1.5px var(--accent), 0 20px 40px rgba(40, 55, 87, 0.12);
}
.type-card:hover .type-icon {
  color: var(--accent-dark);
  transform: scale(1.15);
  transition: transform 0.2s ease;
}
.type-icon {
  transition: transform 0.2s ease, color 0.2s ease;
}

/* ── PLAN CARD HOVER ── */
.plan-card:not(.plan-featured):hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(40, 55, 87, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* ── GRAIN TEXTURE (ATH only) ── */
.athm-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── CURVED SECTION DIVIDER ── */
.curve-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}
.curve-divider svg {
  display: block;
  width: 100%;
  height: 56px;
}

/* ── MOCKUP CARD TILT ── */
.mockup-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  transform-origin: center center;
}

/* ── BENTO CARD HOVER ── */
.bento-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(40, 55, 87, 0.1);
}

/* ── PROOF SECTION PULSE ── */
.proof-num {
  background: linear-gradient(135deg, #fff 40%, rgba(255,255,255,0.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── STEP NUMBER ACCENT ── */
.step-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(40,55,87,0.1);
}
.step-num {
  opacity: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-wide { grid-column: span 1; grid-template-columns: 1fr; }
  .features-bento { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .athm-inner { grid-template-columns: 1fr; }
  .athm-mockup { flex-direction: column; }
  .hero-inner { grid-template-columns: 1fr; }
  .custom-case { padding: 28px; }
  .custom-case-inner { flex-direction: column; align-items: flex-start; }
  .early-card { padding: 32px 24px; }
  .early-top { flex-direction: column; gap: 20px; }
  .early-price { text-align: left; }
  .early-features { grid-template-columns: 1fr; gap: 20px; }
  .card-orders, .card-payment { display: none; }
  .steps-grid { flex-direction: column; }
  .step-divider { transform: rotate(90deg); padding: 4px 0; }
  .pricing-grid { grid-template-columns: 1fr; }
  .plan-featured { transform: none; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .hero { padding: 64px 0 56px; }
  .hero-text h1 { font-size: 2.4rem; }
  .types-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 40px 24px; }
  .cta-form { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
  .nav-actions .btn-ghost { display: none; }
  .pb-compare { grid-template-columns: 1fr; }
  .pb-vs { margin: 0 auto; }
  .pb-flow { flex-direction: column; gap: 20px; padding: 20px; }
  .pb-flow-arrow { transform: rotate(90deg); }
  .pb-hero-logo { width: 220px; height: 220px; margin-bottom: 48px; }
  .pb-logo { width: 170px; }
  .pb-ring-1, .pb-ring-2, .pb-ring-3 { width: 210px; height: 210px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE POLISH PASS
   ═══════════════════════════════════════════════ */

/* Global containment: evita scroll horizontal accidental */
html, body { overflow-x: hidden; }
.hero { overflow: hidden; }

/* Tablet */
@media (max-width: 820px) {
  /* Announce bar compact */
  .announce-bar { padding: 8px 0; font-size: 0.8rem; }
  .announce-inner { gap: 8px; text-align: center; }

  /* Hero actions full width */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  /* Nav compact */
  .nav { padding: 10px 0; }
  .logo-sub { display: none; }

  /* Demo chips más chicos */
  .demo-chip { font-size: 0.68rem; padding: 4px 9px; }

  /* Mockup card: ancho máx controlado */
  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }

  /* Payments band — logo */
  .pb-logo-wrap { padding: 20px; }
}

/* Mobile */
@media (max-width: 640px) {
  /* Container más breathing room */
  :root { --container: 1120px; }
  .container { width: min(100% - 24px, var(--container)); }

  /* Announce bar: esconde el link inline, deja texto corto */
  .announce-inner > span:not(.announce-dot) {
    font-size: 0.78rem;
    line-height: 1.4;
  }
  .announce-link { font-size: 0.78rem; }

  /* Nav */
  .logo-name { font-size: 1rem; }
  .logo-mark { height: 60px; width: auto; }
  .btn { padding: 10px 16px; font-size: 0.9rem; }
  .btn-lg { padding: 14px 22px; font-size: 0.95rem; }

  /* Hero text */
  .hero-text h1 { font-size: 2rem; line-height: 1.1; }
  .hero-desc { font-size: 0.95rem; }
  .trust-row { gap: 12px; }
  .trust-item { font-size: 0.8rem; }

  /* Hero signin-bg: bajar aún más los floaters */
  .hero .signin-bg__mask,
  .hero .signin-bg__sun,
  .hero .signin-bg__flower,
  .hero .signin-bg__leaf--1,
  .hero .signin-bg__leaf--2 { opacity: 0.18; transform: scale(0.7); }

  /* Demo chips: solo muestra el primer renglón, wrap fluido */
  .demo-chips { gap: 4px; margin-bottom: 10px; }
  .demo-chip { font-size: 0.64rem; padding: 4px 8px; }
  .chip-dot { width: 4px; height: 4px; }

  /* Mockup url truncate */
  .mockup-url {
    font-size: 0.7rem;
    padding: 4px 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .mockup-header { gap: 8px; padding: 10px 12px; }
  .mockup-dots span { width: 8px; height: 8px; }

  /* Store mockup compact */
  .sm-body {
    grid-template-columns: 90px 1fr;
    gap: 8px;
    padding: 10px;
  }
  .sm-sidebar { padding: 8px 6px; font-size: 0.68rem; }
  .sm-side-title { font-size: 0.68rem; padding: 2px 6px 6px; }
  .sm-sidebar li { padding: 5px 8px; }
  .sm-grid { gap: 8px; }
  .sm-prod-img { height: 68px; }
  .sm-prod-info { padding: 6px 8px 8px; }
  .sm-prod-name { font-size: 0.72rem; }
  .sm-prod-desc { font-size: 0.62rem; }
  .sm-prod-price { font-size: 0.75rem; }
  .sm-btn-ghost, .sm-btn-primary { font-size: 0.58rem; padding: 4px 5px; }
  .sm-user, .sm-cart { font-size: 0.7rem; padding: 4px 9px; }

  /* Section paddings más ajustados */
  .store-types, .features, .athm-section, .steps-section, .pricing, .cta-section { padding: 64px 0; }
  .payments-band { padding: 72px 0; }
  .section-head { margin-bottom: 32px; }
  h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Proof grid 2x2 */
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .proof-num { font-size: 1.8rem; }

  /* CTA card */
  .cta-card { padding: 32px 20px; text-align: center; }
  .cta-form { width: 100%; }
  .cta-input { width: 100%; }

  /* Footer */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* Muy pequeño (iPhone SE y similares) */
@media (max-width: 380px) {
  .hero-text h1 { font-size: 1.75rem; }
  .demo-chips { display: none; } /* deja solo el mockup, sin chips */
  .sm-body { grid-template-columns: 1fr; } /* sidebar arriba */
  .sm-sidebar { display: flex; flex-wrap: wrap; gap: 4px; }
  .sm-sidebar ul { display: flex; flex-wrap: wrap; gap: 4px; width: 100%; }
  .sm-sidebar li { padding: 3px 8px; font-size: 0.65rem; }
  .sm-side-title { display: none; }
  .trust-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pb-hero-logo { width: 180px; height: 180px; }
  .pb-logo { width: 130px; }
  .pb-ring-1, .pb-ring-2, .pb-ring-3 { width: 170px; height: 170px; }
}

/* Desactivar tilt en touch devices (evita transforms stuck) */
@media (hover: none) {
  .mockup-card:hover { transform: none !important; }
}

/* ═══════════════════════════════════════════════
   ANNOUNCE BAR — toggle texto según viewport
   ═══════════════════════════════════════════════ */
.announce-text--short { display: none; }
@media (max-width: 640px) {
  .announce-text--long { display: none; }
  .announce-text--short { display: inline; }
}

/* ═══════════════════════════════════════════════
   HAMBURGER + MOBILE NAV
   ═══════════════════════════════════════════════ */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  padding: 0;
  border-radius: 10px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  z-index: 12;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 90px 24px 28px;
  background: rgba(247, 245, 239, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  z-index: 11;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.nav-mobile.open {
  transform: translateY(0);
}
.nav-mobile a:not(.btn) {
  padding: 14px 4px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid rgba(22,21,18,0.06);
}
.nav-mobile a:not(.btn):last-of-type {
  border-bottom: none;
}
.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.nav-mobile-actions .btn { width: 100%; justify-content: center; }

/* Bloquea scroll del body cuando el menú está abierto */
body.nav-open { overflow: hidden; }

/* ── CONTACT SECTION ── */
.contact-section {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

/* Left column */
.contact-text .eyebrow {
  display: block;
  margin-bottom: 12px;
}

.contact-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  color: var(--ink);
}

.contact-text > p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--muted);
}

.cp-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Right column — form */
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.cf-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cf-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.cf-optional {
  font-weight: 400;
  color: var(--muted);
}

.cf-field input,
.cf-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  outline: none;
  resize: vertical;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.cf-field input:focus,
.cf-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(40, 55, 87, 0.1);
  background: #fff;
}

.cf-field input.is-invalid,
.cf-field textarea.is-invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.cf-error {
  font-size: 0.8rem;
  color: #dc2626;
  min-height: 16px;
}

.cf-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.cf-note {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Loading state on submit button */
.cf-btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: cf-spin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes cf-spin {
  to { transform: rotate(360deg); }
}

#cfSubmit.is-loading .cf-btn-text { opacity: 0.7; }
#cfSubmit.is-loading .cf-btn-spinner { display: inline-block; }
#cfSubmit.is-loading { display: flex; align-items: center; gap: 10px; }

/* Success state */
.cf-success {
  display: none;
  align-items: center;
  gap: 16px;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: var(--radius-xs);
  padding: 16px 20px;
  margin-top: 8px;
}

.cf-success.visible {
  display: flex;
}

.contact-form.is-sent .cf-row-2,
.contact-form.is-sent .cf-field,
.contact-form.is-sent .cf-footer {
  display: none;
}

.cf-success-icon {
  width: 36px;
  height: 36px;
  background: #16a34a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.cf-success strong {
  display: block;
  color: #15803d;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.cf-success span {
  font-size: 0.85rem;
  color: #166534;
}

/* Error banner */
.cf-error-banner {
  font-size: 0.875rem;
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-xs);
  padding: 10px 14px;
  display: none;
}

.cf-error-banner:not(:empty) {
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 540px) {
  .contact-section {
    padding: 64px 0;
  }
  .contact-form {
    padding: 24px 20px;
  }
  .cf-row-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-burger { display: flex; }
  .nav-links, .nav-actions { display: none; }
}
