/* Botxo 11 — landing
   Athletic red palette + light/dark + ES/EN */

:root {
  --red: #EE2D24;
  --red-2: #C5251E;
  --red-soft: #FDE7E5;
  --green: #19A974;
  --amber: #F2A33A;
  --blue: #2D7BF4;

  --bg: #F2F3F5;
  --surface: #FFFFFF;
  --surface-2: #FFFFFF;
  --ink: #15181B;
  --ink-70: #4B5258;
  --ink-50: #7A8189;
  --ink-30: #B6BBC1;
  --ink-10: #E5E7EA;
  --hair: rgba(20, 22, 25, 0.08);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "DM Sans", "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --font-screen: "DM Sans", system-ui, sans-serif;

  --max: 1320px;
  --gutter: 32px;
}

body[data-mode="dark"] {
  --bg: #0F1114;
  --surface: #1A1D21;
  --surface-2: #22262B;
  --surface-3: #0F1114;
  --ink: #ECEDEE;
  --ink-70: #B7BCC2;
  --ink-50: #888E96;
  --ink-30: #4C525A;
  --ink-10: #2A2E33;
  --hair: rgba(255, 255, 255, 0.06);
  --hair-strong: rgba(255, 255, 255, 0.2);
  --red-soft: #2A1816;
}

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

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  transition: background .2s, color .2s;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* LOGO */
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 44px; height: 36px;
  border-radius: 9px;
  background: var(--surface-3);
  border: 1px solid var(--hair-strong);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.05em;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
  padding: 0 6px;
}
.logo-mark .b { color: var(--red); }
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 20px; letter-spacing: -0.02em;
  white-space: nowrap;
}

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  background: color-mix(in oklab, var(--bg), transparent 25%);
  border-bottom: 1px solid var(--hair);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px;
}
.nav-links a { color: var(--ink-70); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Language seg: fix width so ES↔EN swap doesn't shift layout */
.seg[aria-label="language"] {
  min-width: 112px;
  justify-content: space-between;
}
.seg[aria-label="language"] button {
  flex: 1;
  text-align: center;
  justify-content: center;
}

.btn {
  appearance: none; border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .12s, background .15s, color .15s, opacity .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 6px 18px -4px rgba(238, 45, 36, 0.45);
}
.btn-primary:hover { background: var(--red-2); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--ink-10);
}
.btn-ghost:hover { border-color: var(--ink-70); }

/* Toggle group — for ES/EN + light/dark */
.seg {
  display: inline-flex;
  padding: 3px;
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.seg button {
  appearance: none; border: 0; background: transparent;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--ink-70);
  font: inherit;
  cursor: pointer;
  transition: background .12s, color .12s;
  display: inline-flex; align-items: center; gap: 6px;
  min-width: 56px;
  justify-content: center;
}
.seg button.active {
  background: var(--ink);
  color: var(--bg);
}

/* HERO */
.hero {
  padding: 64px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red);
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--red-soft);
  border: 1.5px solid var(--red);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--red);
  animation: pulse 1.6s infinite;
}
.hero-headline {
  font-size: clamp(48px, 7vw, 104px);
  letter-spacing: -0.04em;
  line-height: 0.9;
}
.hero-headline .red { color: var(--red); }
.hero-headline .italic { font-style: italic; font-weight: 500; }

.hero-sub {
  max-width: 480px;
  font-size: 19px;
  color: var(--ink-70);
  margin-top: 28px;
  line-height: 1.5;
}

.hero-ctas {
  display: flex; gap: 12px; margin-top: 32px;
  align-items: center; flex-wrap: wrap;
}
.hero-meta {
  display: flex; align-items: center; gap: 20px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-50);
  font-family: var(--font-mono);
}
.hero-meta b { color: var(--ink); font-weight: 600; }

/* Phone stage */
.phone-stage {
  position: relative;
  height: 720px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-back, .phone-front {
  position: absolute;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,0.18));
}
.phone-back {
  transform: translate(-40%, 8%) rotate(-6deg) scale(0.92);
  opacity: 0.95;
  z-index: 1;
}
.phone-front {
  transform: translate(8%, -2%) rotate(3deg);
  z-index: 2;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* PHONE FRAME */
.phone {
  width: 300px;
  height: 620px;
  border-radius: 42px;
  background: #0A0B0D;
  padding: 10px;
  border: 1px solid #222;
  box-shadow:
    0 0 0 2px #1a1a1a inset,
    0 30px 60px -20px rgba(0,0,0,0.4);
  position: relative;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 32px;
  background: var(--bg);
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
  font-family: var(--font-screen);
  color: var(--ink);
}
.phone-notch {
  position: absolute; top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 22px;
  background: #0A0B0D;
  border-radius: 12px;
  z-index: 10;
}
.status-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px 0;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono);
  color: var(--ink-70);
}

/* TICKER */
.ticker {
  background: var(--red);
  color: #fff;
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}
.ticker::before, .ticker::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(to right, var(--red), transparent); }
.ticker::after  { right: 0; background: linear-gradient(to left,  var(--red), transparent); }
.ticker-track {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: scroll 50s linear infinite;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.ticker-item { display: inline-flex; align-items: center; gap: 14px; }
.ticker-item .score {
  background: #fff; color: var(--red);
  padding: 2px 9px;
  border-radius: 5px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: none;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* SECTION */
.section { padding: 120px 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 80px;
}
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(40px, 5vw, 80px);
  letter-spacing: -0.035em;
}
.section-title .red { color: var(--red); }
.section-title .italic { font-style: italic; font-weight: 500; }
.section-lede {
  font-size: 18px;
  color: var(--ink-70);
  max-width: 420px;
  line-height: 1.55;
}

/* FEATURE — phone-led */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--hair);
}
.feature-row.reverse > .feature-text { order: 2; }
.feature-row.reverse > .feature-phone { order: 1; }
.feature-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.feature-text h3 {
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.03em;
  margin-top: 16px;
}
.feature-text h3 .red { color: var(--red); }
.feature-text p {
  font-size: 17px;
  color: var(--ink-70);
  margin-top: 20px;
  max-width: 460px;
  line-height: 1.55;
}
.feature-tags {
  margin-top: 24px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-70);
  border: 1px solid var(--hair);
  font-weight: 600;
}
.feature-phone { display: flex; justify-content: center; }

/* SCREEN INTERNALS — match the real app */
.screen-bg-light { background: #F2F3F5; }
.screen-bg-dark { background: #0F1114; color: #ECEDEE; }
.screen-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 18px 14px;
}
.screen-header-l { display: flex; align-items: center; gap: 10px; }
.screen-avatar {
  width: 32px; height: 32px; border-radius: 999px;
  background: linear-gradient(135deg, #888, #444);
  border: 1px solid rgba(0,0,0,0.06);
}
.screen-title-row { display: flex; align-items: center; gap: 8px; }
.screen-applogo {
  width: 30px; height: 24px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.06em;
  line-height: 1;
  color: #15181B;
  padding: 0 4px;
}
.screen-applogo::before {
  content: "B";
  color: var(--red);
}
.screen-applogo::after {
  content: "11";
}
.screen-bg-dark .screen-applogo {
  background: #2A2E33;
  border-color: rgba(255,255,255,0.08);
  color: #ECEDEE;
}
.screen-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.icons-r { display: flex; gap: 14px; color: var(--ink-50); }
.icon-btn { font-size: 16px; opacity: 0.7; }

/* CARDS shared */
.card {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  margin: 0 14px 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.screen-bg-dark .card { background: #1A1D21; }

/* tab bar */
.tab-bar {
  margin-top: auto;
  display: flex; justify-content: space-around;
  padding: 10px 0 16px;
  border-top: 1px solid rgba(0,0,0,0.05);
  background: rgba(255,255,255,0.6);
}
.screen-bg-dark .tab-bar { background: rgba(26,29,33,0.6); border-color: rgba(255,255,255,0.06); }
.tab {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 9.5px;
  color: var(--ink-50);
  font-weight: 500;
}
.tab.active { color: var(--red); }
.tab-icon { font-size: 14px; }

/* CTA */
.cta {
  text-align: center;
  padding: 140px 0;
  position: relative;
}
.cta h2 {
  font-size: clamp(48px, 7vw, 104px);
  letter-spacing: -0.035em;
  line-height: 0.9;
  max-width: 14ch;
  margin: 0 auto;
}
.cta h2 .red { color: var(--red); }
.cta h2 .italic { font-style: italic; font-weight: 500; }
.cta p {
  font-size: 18px;
  color: var(--ink-70);
  margin-top: 24px;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}
.waitlist {
  margin-top: 36px;
  display: flex; gap: 8px;
  max-width: 460px;
  margin-left: auto; margin-right: auto;
  padding: 6px 6px 6px 8px;
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: 14px;
  align-items: stretch;
}
.waitlist input {
  flex: 1; min-width: 0;
  border: 0; outline: none;
  padding: 12px 14px;
  background: transparent;
  font: inherit;
  color: var(--ink);
  border-radius: 10px;
}
.waitlist input:focus { background: var(--bg); }
.waitlist input::placeholder { color: var(--ink-50); }
.waitlist .btn {
  border-radius: 10px;
  padding: 12px 18px;
  flex-shrink: 0;
}

/* Modal */
.modal-scrim {
  position: fixed; inset: 0;
  background: rgba(15, 17, 20, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid; place-items: center;
  z-index: 100;
  padding: 20px;
  animation: fade .15s ease-out;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  width: 100%;
  max-width: 460px;
  background: var(--surface);
  border-radius: 24px;
  padding: 36px 32px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  position: relative;
  border: 1px solid var(--hair);
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  border: 0; border-radius: 999px;
  background: var(--bg);
  color: var(--ink-70);
  cursor: pointer;
  font-size: 16px;
  display: grid; place-items: center;
}
.modal-close:hover { background: var(--ink-10); color: var(--ink); }
.modal h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 6px;
}
.modal h3 .red { color: var(--red); }
.modal p {
  font-size: 14px;
  color: var(--ink-70);
  margin: 0 0 22px;
}
.modal label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-50);
  font-weight: 600;
  margin-bottom: 6px;
}
.modal input {
  width: 100%;
  border: 1px solid var(--ink-10);
  background: var(--bg);
  color: var(--ink);
  padding: 13px 14px;
  border-radius: 12px;
  font: inherit;
  outline: none;
  margin-bottom: 16px;
  transition: border-color .15s;
}
.modal input:focus { border-color: var(--red); }
.modal-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 14px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  transition: background .15s;
}
.modal-submit:hover { background: var(--red-2); }
.modal-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.modal-foot {
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.modal-success {
  text-align: center;
  padding: 12px 8px;
}
.modal-success-icon {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
  display: grid; place-items: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 16px;
}
.cta-meta {
  margin-top: 20px;
  display: flex; justify-content: center; gap: 18px;
  font-size: 12px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-50);
}

/* FOOTER */
footer {
  border-top: 1px solid var(--hair);
  padding: 56px 0 36px;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-grid h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-50);
  margin: 0 0 14px;
  font-weight: 600;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; font-size: 14px; color: var(--ink-70); cursor: default; }
.footer-bottom {
  margin-top: 56px; padding-top: 20px;
  border-top: 1px solid var(--hair);
  display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-50);
}
.disclaimer {
  margin-top: 32px;
  padding: 0;
  font-size: 12px;
  color: var(--ink-30);
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.waitlist-sent {
  margin: 36px auto 0;
  max-width: 520px;
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--red-soft);
  color: var(--red);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
  border: 1px solid color-mix(in oklab, var(--red), transparent 75%);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  :root { --gutter: 24px; }
  .section { padding: 96px 0; }
  .hero { padding: 48px 0 72px; }
  .hero-grid { gap: 40px; }
  .phone-stage { height: 640px; }
  .phone-back { transform: translate(-32%, 6%) rotate(-6deg) scale(0.88); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { height: 64px; }

  /* Keep language and theme toggles visible on tablet */
  .nav-right .seg { display: inline-flex; }
  .nav-right .btn.nav-cta { display: none; }

  .hero-grid, .section-head, .feature-row, .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .feature-row { padding: 56px 0; }
  .feature-row.reverse > .feature-text { order: 1; }
  .feature-row.reverse > .feature-phone { order: 2; }

  .hero-headline { font-size: clamp(40px, 11vw, 64px); }
  .hero-sub { font-size: 17px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 48px; }
  .section-title { font-size: clamp(34px, 7.5vw, 56px); }
  .feature-text h3 { font-size: clamp(28px, 6vw, 40px); }

  .phone-stage { height: 580px; }
  .phone-back { display: none; }
  .phone-front { transform: none; position: relative; }

  .hero-meta { flex-wrap: wrap; gap: 10px 14px; }
}

@media (max-width: 600px) {
  :root { --gutter: 18px; }
  .nav-inner { height: 60px; }
  .brand { font-size: 17px; }
  .logo-mark { width: 38px; height: 32px; font-size: 15px; }

  /* Show language + theme toggles; hide CTA button on mobile */
  .nav-right { gap: 6px; }
  .nav-right .seg { display: inline-flex; }
  .nav-right .seg button { padding: 5px 8px; min-width: 40px; font-size: 11px; }
  .nav-right .btn.nav-cta { display: none; }

  /* Hero eyebrow: allow wrapping, center on mobile */
  .hero-eyebrow {
    font-size: 10px;
    padding: 5px 10px;
    margin-bottom: 20px;
    white-space: normal;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }
  .hero-eyebrow-main { white-space: nowrap; }

  .hero { padding: 32px 0 56px; }
  .hero-headline { font-size: clamp(38px, 12vw, 56px); }
  .hero-sub { font-size: 16px; margin-top: 20px; }
  .hero-ctas { gap: 10px; margin-top: 24px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-ctas .btn-ghost { display: none; }

  /* Fix hero-meta spacing: add top margin so it doesn't collide with phone */
  .hero-meta {
    font-size: 12px;
    margin-top: 28px;
    padding-bottom: 8px;
  }

  /* Only show one phone on mobile (phone-back already hidden at 900px) */
  .phone-stage { height: 540px; margin-top: 0; }
  .phone { transform: scale(0.92); transform-origin: top center; }

  .ticker { padding: 12px 0; }
  .ticker-track { gap: 40px; font-size: 12px; }
  .ticker-item .score { font-size: 13px; }

  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; gap: 20px; }
  .section-title { font-size: clamp(30px, 9vw, 44px); }
  .section-lede { font-size: 16px; }
  .feature-row { padding: 40px 0; gap: 32px; }
  .feature-text h3 { font-size: clamp(26px, 7.5vw, 36px); }
  .feature-text p { font-size: 16px; }
  .feature-tags { gap: 6px; }

  .cta { padding: 80px 0; }
  .cta h2 { font-size: clamp(36px, 11vw, 56px); }
  .cta p { font-size: 16px; margin-top: 18px; }
  .waitlist {
    flex-direction: column;
    border-radius: 16px;
    gap: 6px;
    padding: 6px;
    max-width: 100%;
  }
  .waitlist input { width: 100%; padding: 14px 16px; }
  .waitlist .btn { width: 100%; justify-content: center; padding: 14px; border-radius: 10px; }
  .cta-meta { flex-wrap: wrap; gap: 8px 12px; font-size: 11px; }

  footer { padding: 40px 0 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
}

@media (max-width: 380px) {
  .phone { transform: scale(0.84); }
  .phone-stage { height: 500px; }
  .hero-headline { font-size: 36px; }
}

/* always allow CTA email link in footer */
.footer-grid li a { color: inherit; }
.footer-grid li a:hover { color: var(--red); }

/* Scroll to top button */
.scroll-top-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 99;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  border: none;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px -2px rgba(238,45,36,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s, opacity .2s;
  line-height: 1;
}
.scroll-top-btn:hover { transform: translateY(-3px); }

@media (max-width: 600px) {
  .scroll-top-btn { bottom: 20px; right: 16px; width: 40px; height: 40px; font-size: 18px; }
}

.hero-eyebrow-main {
  font-weight: 900;
  color: #fff;
  background: rgba(238, 46, 36, 0.678); /* rojo suave */
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.16em;
}

.nav-cta {
  width: 170px;        /* fijo → evita shift */
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}