/* =========================================================================
   Accessin — Landing (static rebuild, pixel-faithful port of the Next app)
   Organised by section. Tokens mirror app/globals.css.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Tokens
   ------------------------------------------------------------------------- */
:root {
  color-scheme: light;

  --background: #f7f4ef;
  --surface: #ffffff;
  --foreground: #111110;
  --card: #ffffff;
  --card-foreground: #111110;
  --primary: #fe6511;
  --primary-foreground: #ffffff;
  --cta: #fe6126;
  --cta-foreground: #ffffff;
  --market: #6b2d8b;
  --market-deep: #3b145a;
  --market-mid: #4a1a6b;
  --market-soft: #f3e8fa;
  --secondary: #efeae2;
  --secondary-foreground: #111110;
  --muted: #efeae2;
  --muted-foreground: #6a655c;
  --accent: #fff0e6;
  --accent-foreground: #c74e0d;
  --border: #e5dfd4;
  --input: #e5dfd4;
  --ring: #fe6511;

  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Inter Tight", ui-sans-serif, system-ui, sans-serif;

  --shadow-soft: 0 1px 2px rgba(17, 17, 16, 0.03), 0 12px 32px rgba(17, 17, 16, 0.06);
  --shadow-panel: 0 1px 2px rgba(17, 17, 16, 0.03), 0 24px 64px rgba(17, 17, 16, 0.08);
  --shadow-cta: 0 10px 28px rgba(254, 97, 38, 0.3);
}

/* -------------------------------------------------------------------------
   2. Reset / base
   ------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: var(--border);
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

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

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

ul {
  list-style: none;
}

input,
textarea {
  font-family: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* -------------------------------------------------------------------------
   3. Layout helpers
   ------------------------------------------------------------------------- */
.container-page {
  width: 100%;
  max-width: 72rem; /* max-w-6xl */
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.container-wide {
  width: 100%;
  max-width: 79.2rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section-pad {
  padding-block: 7rem; /* py-28 */
}

@media (min-width: 640px) {
  .container-page,
  .container-wide {
    padding-inline: 2rem;
  }
  .section-pad {
    padding-block: 9rem; /* sm:py-36 */
  }
}

@media (min-width: 1024px) {
  .section-pad {
    padding-block: 11rem; /* lg:py-44 */
  }
}

.bg-surface {
  background: var(--surface);
}
.bg-background {
  background: var(--background);
}
.center {
  text-align: center;
}

/* -------------------------------------------------------------------------
   4. Typography utilities
   ------------------------------------------------------------------------- */
.eyebrow,
.eyebrow-muted {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--muted-foreground);
}
.eyebrow.on-market {
  color: var(--market);
}

.heading-section {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.heading-sub {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.body-muted {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}
@media (min-width: 640px) {
  .body-muted {
    font-size: 1.125rem;
  }
}

.text-primary {
  color: var(--primary);
}
.text-foreground {
  color: var(--foreground);
}

/* -------------------------------------------------------------------------
   5. Buttons (+ swipe fill)
   ------------------------------------------------------------------------- */
.btn-primary,
.btn-cta,
.btn-cta-sm,
.btn-swipe {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-primary::before,
.btn-cta::before,
.btn-cta-sm::before,
.btn-swipe::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #e5551f;
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-primary:hover::before,
.btn-primary:focus-visible::before,
.btn-cta:hover::before,
.btn-cta:focus-visible::before,
.btn-cta-sm:hover::before,
.btn-cta-sm:focus-visible::before,
.btn-swipe:hover::before,
.btn-swipe:focus-visible::before {
  transform: translateX(0);
}

.btn-swipe-black {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-swipe-black::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #111110;
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-swipe-black:hover::before,
.btn-swipe-black:focus-visible::before {
  transform: translateX(0);
}

.btn-primary,
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 6px;
  padding: 0.875rem 1.75rem;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #fe6126;
  transition: color 0.3s;
}
.btn-primary {
  box-shadow: 0 1px 2px rgba(17, 17, 16, 0.06), 0 10px 28px rgba(254, 97, 38, 0.32);
}
.btn-cta {
  box-shadow: 0 1px 2px rgba(17, 17, 16, 0.06), 0 12px 32px rgba(254, 97, 38, 0.28);
}

.btn-cta-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  height: 2.5rem;
  border-radius: 6px;
  padding-inline: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: #fe6126;
  box-shadow: 0 8px 20px rgba(254, 97, 38, 0.28);
  transition: color 0.3s;
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  padding: 0.875rem 1.75rem;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  transition: background-color 0.3s;
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: transparent;
  padding: 0.875rem 1.75rem;
  font-size: 15px;
  font-weight: 600;
  color: var(--foreground);
  transition: background-color 0.3s;
}
.btn-ghost:hover {
  background: var(--secondary);
}

.btn-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s;
}
.group:hover .btn-icon {
  transform: translate(0.125rem, -0.125rem);
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}
.shadow-panel {
  box-shadow: var(--shadow-panel);
}

/* -------------------------------------------------------------------------
   6. Panels / cards
   ------------------------------------------------------------------------- */
.panel {
  overflow: hidden;
  border-radius: 1.75rem;
  border: 1px solid rgba(229, 223, 212, 0.6);
  background: var(--surface);
}
.card-surface {
  overflow: hidden;
  border-radius: 1.35rem;
  border: 1px solid rgba(229, 223, 212, 0.6);
  background: var(--surface);
}
.media-frame {
  overflow: hidden;
  border-radius: 1.25rem;
  background: var(--secondary);
}

/* Lucide-style icon default */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* -------------------------------------------------------------------------
   7. Animations / keyframes
   ------------------------------------------------------------------------- */
@keyframes accessin-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.animate-marquee {
  animation: accessin-marquee 40s linear infinite;
}
.marquee-group:hover .animate-marquee {
  animation-play-state: paused;
}

@keyframes accessin-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.animate-float {
  animation: accessin-float 5.5s ease-in-out infinite;
}

@keyframes accessin-orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.animate-orbit {
  animation: accessin-orbit 64s linear infinite;
}
.animate-orbit-reverse {
  animation: accessin-orbit 64s linear infinite reverse;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate-marquee,
  .animate-float,
  .animate-orbit,
  .animate-orbit-reverse {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================================
   8. Header
   ========================================================================= */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
}
.site-header .header-shell {
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent;
}
.site-header.scrolled .header-shell {
  border-bottom: 1px solid rgba(229, 223, 212, 0.6);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (min-width: 640px) {
  .header-inner {
    height: 4.25rem;
  }
}

.brand {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
}
.brand img {
  height: 32px;
  width: auto;
  flex-shrink: 0;
}
.site-header .brand img,
.mobile-menu-top .brand img {
  height: 35.2px;
}
.site-header .brand-word,
.mobile-menu-top .brand-word {
  font-size: 1.58125rem;
}
.brand-word {
  font-family: var(--font-display);
  font-size: 1.4375rem;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: -0.03em;
  color: #fff;
  transition: color 0.3s;
}
.site-header.scrolled .brand-word {
  color: var(--foreground);
}

.desktop-nav {
  position: absolute;
  inset-inline: 0;
  display: none;
  justify-content: center;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .desktop-nav {
    display: flex;
  }
}
.desktop-nav-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.desktop-nav a {
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
.desktop-nav a:hover {
  color: #fff;
}
.site-header.scrolled .desktop-nav a {
  color: rgba(17, 17, 16, 0.7);
}
.site-header.scrolled .desktop-nav a:hover {
  color: var(--foreground);
}

.header-actions {
  position: relative;
  z-index: 10;
  display: none;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .header-actions {
    display: flex;
  }
}

.btn-login {
  display: inline-flex;
  height: 2.5rem;
  align-items: center;
  gap: 0.375rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  padding-inline: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: color 0.3s;
}
.site-header.scrolled .btn-login {
  border-color: rgba(17, 17, 16, 0.1);
  background: var(--foreground);
  color: var(--background);
  backdrop-filter: none;
}
.btn-login:hover {
  color: #fff;
}

.menu-toggle {
  position: relative;
  z-index: 10;
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: #fff;
  transition: background-color 0.2s;
}
.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}
.site-header.scrolled .menu-toggle {
  color: var(--foreground);
}
.site-header.scrolled .menu-toggle:hover {
  background: var(--secondary);
}
@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: var(--foreground);
  color: var(--background);
  transition: opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none;
  }
}
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 0;
}
.mobile-menu-top .brand-word {
  color: var(--background);
}
.menu-close {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  color: var(--background);
}
.menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1.5rem 0;
}
.mobile-nav a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1rem;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  transform: translateY(0.75rem);
  opacity: 0;
  transition: all 0.5s;
}
.mobile-menu.open .mobile-nav a {
  transform: translateY(0);
  opacity: 1;
}
.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-inline: 1.5rem;
}
.mobile-cta .btn-primary {
  height: 3rem;
  width: 100%;
}
.mobile-cta .btn-login {
  height: 3rem;
  width: 100%;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: var(--background);
  font-size: 15px;
}

/* =========================================================================
   9. Hero
   ========================================================================= */
.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
  transform: scale(1.08);
}
.hero-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    115deg,
    rgba(17, 17, 16, 0.9) 0%,
    rgba(17, 17, 16, 0.55) 48%,
    rgba(17, 17, 16, 0.18) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 100svh;
  width: 100%;
  flex-direction: column;
  padding-top: 6rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 640px) {
  .hero-content {
    padding-top: 7rem;
    padding-bottom: 3.5rem;
  }
}
.hero-center {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.hero-copy {
  width: 100%;
  max-width: 740px;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 640px) {
  .hero-eyebrow {
    font-size: 0.875rem;
  }
}
.hero h1 {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.85rem, 7.2vw, 6rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-wrap: balance;
  color: #fff;
}
.hero h1 .line {
  display: block;
}
.hero h1 .rotating-line {
  margin-top: 0.25rem;
  display: block;
  white-space: nowrap;
}
.hero-article,
.hero-word {
  display: inline-block;
  transition:
    transform 0.4s ease-out,
    opacity 0.4s ease-out;
}
.hero-word-wrap {
  position: relative;
  display: inline-grid;
  vertical-align: baseline;
}
.hero-word-ghost {
  visibility: hidden;
  grid-column: 1;
  grid-row: 1;
}
.hero-word {
  grid-column: 1;
  grid-row: 1;
  color: var(--primary);
}
.hero-article.is-hidden,
.hero-word.is-hidden {
  transform: translateY(0.75rem);
  opacity: 0;
}
.hero-lede {
  margin-top: 1.5rem;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 640px) {
  .hero-lede {
    font-size: 1.125rem;
  }
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }
}
.hero-actions .icon-play {
  width: 0.875rem;
  height: 0.875rem;
  fill: currentColor;
  stroke: currentColor;
}

/* =========================================================================
   10. Platform hub (orbit)
   ========================================================================= */
.platform {
  position: relative;
  overflow: hidden;
  background: var(--background);
}
.platform-glow {
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
  height: 480px;
  width: 480px;
  transform: translate(-50%, -50%);
  border-radius: 9999px;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--primary) 12%, transparent) 0%,
    transparent 70%
  );
  opacity: 0.6;
  filter: blur(64px);
}
.platform .inner {
  position: relative;
}
.platform-head {
  margin-inline: auto;
  max-width: 48rem;
  text-align: center;
}
.platform-head h2 {
  margin-top: 1rem;
}
.platform-title {
  text-wrap: balance;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12em;
}
.platform-title-top,
.platform-title-bottom {
  display: block;
}
.platform-title-bottom {
  color: var(--foreground);
}
.platform-head .body-muted {
  margin-inline: auto;
  margin-top: 1.25rem;
  max-width: 42rem;
}
.platform-head strong {
  font-weight: 500;
  color: var(--foreground);
}
.platform-head .accent {
  font-weight: 500;
  color: var(--primary);
}

.orbit {
  position: relative;
  margin-inline: auto;
  margin-top: 4rem;
  aspect-ratio: 1;
  width: 100%;
  max-width: 540px;
}
.orbit-ring {
  position: absolute;
  border-radius: 9999px;
  border: 1px solid rgba(17, 17, 16, 0.1);
}
.orbit-ring.ring-outer {
  inset: 0;
}
.orbit-ring.ring-inner {
  inset: 12%;
}
.orbit-rotor {
  position: absolute;
  inset: 0;
}
.orbit-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transform: translate(-50%, -50%);
}
.orbit-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.orbit-badge {
  display: flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.orbit-badge .icon {
  height: 1.25rem;
  width: 1.25rem;
  color: rgba(17, 17, 16, 0.5);
  stroke-width: 1.75;
}
.orbit-item.pillar .orbit-badge {
  border-color: rgba(17, 17, 16, 0.15);
  background: var(--foreground);
}
.orbit-item.pillar .orbit-badge .icon {
  color: var(--background);
}
.orbit-label {
  width: 7rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.25;
  font-weight: 500;
  color: var(--muted-foreground);
}
.orbit-item.pillar .orbit-label {
  color: var(--foreground);
}
@media (min-width: 640px) {
  .orbit-badge {
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 1rem;
  }
  .orbit-badge .icon {
    height: 1.5rem;
    width: 1.5rem;
  }
}
.orbit-center {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  height: 9rem;
  width: 9rem;
  transform: translate(-50%, -50%);
  align-items: center;
  justify-content: center;
}
.orbit-center img {
  height: 5rem;
  width: 5rem;
  object-fit: contain;
}
@media (min-width: 640px) {
  .orbit-center img {
    height: 6rem;
    width: 6rem;
  }
}
.orbit-caption {
  margin-inline: auto;
  margin-top: 4.025rem;
  max-width: 44rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem 0.7rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--muted-foreground);
}
@media (min-width: 640px) {
  .orbit-caption {
    font-size: 1.125rem;
  }
}
.orbit-caption-item {
  white-space: nowrap;
}
.orbit-caption-lead {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--foreground);
}
.orbit-caption-sep {
  display: inline-block;
  width: 0.28rem;
  height: 0.28rem;
  margin-inline: 0.1rem;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--primary) 55%, transparent);
  transform: translateY(-0.12em);
}

/* =========================================================================
   11. CTA band
   ========================================================================= */
.cta-band {
  position: relative;
  overflow: hidden;
}
.cta-band > img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cta-band-warm {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(254, 101, 17, 0.35) 0%,
    rgba(255, 106, 74, 0.22) 45%,
    rgba(255, 89, 87, 0.18) 100%
  );
  mix-blend-mode: soft-light;
}
.cta-band-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(17, 17, 16, 0.72) 0%,
    rgba(17, 17, 16, 0.5) 48%,
    rgba(17, 17, 16, 0.38) 100%
  );
}
.cta-band-inner {
  position: relative;
  z-index: 10;
  margin-inline: auto;
  display: flex;
  width: 100%;
  max-width: 77.04rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2.675rem 1.25rem;
}
@media (min-width: 640px) {
  .cta-band-inner {
    padding: 3.21rem 2rem;
  }
}
@media (min-width: 768px) {
  .cta-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cta-band-inner .copy {
  max-width: 36rem;
}
.cta-band-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: #fff;
  text-wrap: balance;
}
.cta-band-inner .copy p {
  margin-top: 0.5rem;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
.cta-band-actions {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .cta-band-actions {
    flex-direction: row;
  }
}
.btn-whatsapp-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.25);
  padding: 0.875rem 1.75rem;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(4px);
  transition: background-color 0.2s;
}
.btn-whatsapp-outline:hover {
  background: rgba(0, 0, 0, 0.35);
}
.icon-wa {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

/* =========================================================================
   12. Pillars
   ========================================================================= */
.pillars .head {
  max-width: 42rem;
}
.pillars .head h2 {
  margin-top: 1rem;
}
.pillars-layout {
  margin-top: 3.5rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .pillars-layout {
    grid-template-columns: max-content 1fr;
    gap: 1rem;
  }
}
.pillar-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}
@media (min-width: 1024px) {
  .pillar-tabs {
    flex-direction: column;
    overflow: visible;
    padding-bottom: 0;
    width: max-content;
  }
}
.pillar-tabs button {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.75rem;
  border-radius: 1rem;
  padding: 0.875rem 1rem;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--muted-foreground);
  transition: all 0.2s;
  white-space: nowrap;
}
.pillar-tabs button .icon {
  height: 1rem;
  width: 1rem;
}
.pillar-tabs button:hover {
  background: var(--secondary);
  color: var(--foreground);
}
.pillar-tabs button.active {
  background: var(--foreground);
  color: var(--background);
  box-shadow: var(--shadow-soft);
}
.pillar-tabs button.active:hover {
  background: var(--foreground);
  color: var(--background);
}

.pillar-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.pillar-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.55rem;
  padding: 1.35rem 1.75rem 0.35rem;
}
@media (min-width: 640px) {
  .pillar-heading {
    padding: 1.5rem 1.75rem 0.4rem;
  }
}
.pillar-index {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--primary);
  user-select: none;
}
.pillar-module {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--foreground);
  text-transform: none;
}
.pillar-heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--foreground);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.pillar-heading.is-switching .pillar-module,
.pillar-heading.is-switching .pillar-index,
.pillar-heading.is-switching h3 {
  opacity: 0;
  transform: translateY(6px);
}

.pillar-body {
  display: grid;
  min-height: 0;
  flex: 1;
}
@media (min-width: 1024px) {
  .pillar-body {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: stretch;
  }
}
.pillar-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 0.85rem 1.75rem 1.75rem;
}
@media (min-width: 640px) {
  .pillar-copy {
    padding: 0.9rem 1.75rem 2rem;
  }
}
@media (min-width: 1024px) {
  .pillar-copy {
    padding: 0.75rem 1.5rem 1.75rem 1.75rem;
  }
}
.pillar-copy > p,
#pillar-desc {
  display: none !important;
}
.pillar-copy ul {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.check-li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.check-badge {
  margin-top: 0.125rem;
  display: flex;
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
  color: var(--primary);
}
.check-badge .icon {
  height: 0.75rem;
  width: 0.75rem;
  stroke-width: 3;
}
.check-li span:last-child {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(17, 17, 16, 0.85);
  white-space: normal;
}
.pillar-copy .check-li span:last-child {
  font-size: 16px;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .pillar-copy .check-li span:last-child {
    font-size: 16.5px;
  }
}
.pillar-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 0.65rem;
  overflow: hidden;
  background: var(--surface);
  border: 0;
}
.pillar-shot {
  width: 100%;
  height: 100%;
  max-height: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid rgba(229, 223, 212, 0.55);
  background: var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 0 0 1px rgba(17, 17, 16, 0.04),
    0 12px 32px rgba(17, 17, 16, 0.1);
}
.pillar-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
@media (min-width: 640px) {
  .pillar-image {
    padding: 0.75rem;
  }
}
@media (min-width: 1024px) {
  .pillar-image {
    min-height: 100%;
    padding: 0.85rem;
  }
  .pillar-shot {
    width: 100%;
    height: auto;
    max-height: calc(100% - 0.1rem);
    aspect-ratio: 16 / 9;
  }
}

/* =========================================================================
   13. Rover
   ========================================================================= */
.rover {
  position: relative;
  display: flex;
  min-height: 100svh;
  width: 100%;
  align-items: center;
  overflow-x: clip;
  background: var(--background);
  color: var(--foreground);
  padding-block: 3.5rem;
}
@media (min-width: 640px) {
  .rover {
    padding-block: 4rem;
  }
}
.rover-grid {
  position: relative;
  display: grid;
  width: 100%;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 640px) {
  .rover-grid {
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .rover-grid {
    grid-template-columns: 2fr 3fr;
    gap: 2.5rem;
  }
}
.rover-visual {
  order: 2;
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .rover-visual {
    order: 1;
    justify-content: flex-start;
  }
}
.rover-scene {
  position: relative;
  margin-inline: auto;
  aspect-ratio: 1;
  width: 100%;
  max-width: 340px;
}
@media (min-width: 640px) {
  .rover-scene {
    max-width: 400px;
  }
}
@media (min-width: 1024px) {
  .rover-scene {
    max-width: 100%;
  }
}
.rover-photo {
  position: absolute;
  inset: 8%;
  overflow: hidden;
  border-radius: 9999px;
  border: 1px solid rgba(229, 223, 212, 0.6);
  background: var(--secondary);
  box-shadow: var(--shadow-panel);
}
.rover-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 48% 42%;
}
.rover-ring {
  pointer-events: none;
  position: absolute;
  inset: 4%;
  border-radius: 9999px;
  border: 1px solid rgba(229, 223, 212, 0.4);
}
.rover-float {
  position: absolute;
  z-index: 20;
}
.rover-float span.badge {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(229, 223, 212, 0.7);
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow-soft);
}
.rover-float span.badge .icon {
  height: 1.25rem;
  width: 1.25rem;
  stroke-width: 1.75;
}
@media (min-width: 640px) {
  .rover-float span.badge {
    height: 2.75rem;
    width: 2.75rem;
  }
}
.rover-copy {
  order: 1;
}
@media (min-width: 1024px) {
  .rover-copy {
    order: 2;
  }
}
.rover-copy h2 {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.85rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
  color: var(--foreground);
}
.rover-copy > p:not(.eyebrow) {
  margin-top: 0.75rem;
  max-width: none;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}
@media (min-width: 640px) {
  .rover-copy > p:not(.eyebrow) {
    font-size: 15px;
  }
}
.spec-grid {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.spec-grid article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  border-radius: 1rem;
  border: 1px solid rgba(229, 223, 212, 0.6);
  background: var(--surface);
  padding: 0.95rem 1rem;
  box-shadow: var(--shadow-soft);
}
.spec-icon {
  display: inline-flex;
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--accent);
  color: var(--primary);
}
.spec-icon .icon {
  height: 1rem;
  width: 1rem;
}
.spec-grid article > div {
  width: 100%;
  min-width: 0;
}
.spec-grid h3 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--foreground);
}
.spec-grid article p {
  margin-top: 0.25rem;
  width: 100%;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--muted-foreground);
}
@media (min-width: 640px) {
  .spec-grid article p {
    font-size: 13px;
  }
}

/* =========================================================================
   14. Audiences
   ========================================================================= */
.audiences .head {
  max-width: 42rem;
}
.audiences .head h2 {
  margin-top: 1rem;
}
.audience-grid {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.audience-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 640px) {
  .audience-card {
    min-height: 600px;
  }
}
.audience-card .body {
  position: relative;
  z-index: 10;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  padding-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .audience-card .body {
    padding: 2.5rem;
    padding-bottom: 1.5rem;
  }
}
.audience-card h3 {
  color: var(--foreground);
}
.audience-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.store-row {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}
.store {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--foreground);
  transition: transform 0.2s;
}
.store.dark {
  border-color: transparent;
  background: var(--foreground);
  color: var(--background);
}
.store:hover {
  transform: translateY(-0.125rem);
}
.store .icon {
  height: 0.85rem;
  width: 0.85rem;
}
.audience-fade {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 52%;
  background: linear-gradient(
    to top,
    var(--secondary),
    color-mix(in srgb, var(--secondary) 70%, transparent),
    transparent
  );
}
.audience-fade.tall {
  height: 55%;
  background: linear-gradient(
    to top,
    var(--secondary),
    color-mix(in srgb, var(--secondary) 60%, transparent),
    transparent
  );
}
.audience-phone {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
}
.audience-phone .float {
  transform-origin: bottom;
}
.audience-phone img {
  width: auto;
  height: 336px;
  max-width: 204px;
  transform: translateY(calc(1.5rem + 67px));
  filter: drop-shadow(0 24px 48px rgba(17, 17, 16, 0.2));
  object-fit: contain;
  object-position: top center;
}
@media (min-width: 640px) {
  .audience-phone img {
    height: 408px;
    max-width: 240px;
    transform: translateY(calc(2rem + 82px));
  }
}
.audience-dash {
  pointer-events: none;
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  padding-inline: 1.25rem;
}
@media (min-width: 640px) {
  .audience-dash {
    padding-inline: 2rem;
  }
}
.audience-dash .float {
  width: 100%;
  max-width: 480px;
  transform-origin: bottom;
}
.audience-dash .frame {
  /* Alineado al tope del celular; se corta abajo */
  transform: translateY(calc(1.25rem - 13px));
  overflow: hidden;
  border-radius: 0.85rem 0.85rem 0 0;
  border: 1px solid rgba(229, 223, 212, 0.6);
  background: var(--surface);
  box-shadow: var(--shadow-panel);
}
.audience-dash .frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
}
@media (min-width: 640px) {
  .audience-dash .frame {
    transform: translateY(calc(1.5rem - 17px));
  }
}

/* =========================================================================
   15. Logo strip (marquee)
   ========================================================================= */
.logo-section {
  background: #faf7f2;
}
.logo-section.section-pad {
  padding-block: 3.5rem;
}
@media (min-width: 640px) {
  .logo-section.section-pad {
    padding-block: 4.5rem;
  }
}
@media (min-width: 1024px) {
  .logo-section.section-pad {
    padding-block: 5.5rem;
  }
}
.logo-head {
  margin-inline: auto;
  max-width: 42rem;
  text-align: center;
}
.logo-head h2 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--foreground);
}
.marquee-group {
  position: relative;
  margin-inline: auto;
  margin-top: 2.35rem;
  max-width: 79.2rem;
  overflow: hidden;
}
@media (min-width: 640px) {
  .marquee-group {
    margin-top: 2.75rem;
  }
}
.marquee-fade {
  pointer-events: none;
  position: absolute;
  inset-block: 0;
  z-index: 10;
  width: 4rem;
}
.marquee-fade.left {
  left: 0;
  background: linear-gradient(to right, #faf7f2, transparent);
}
.marquee-fade.right {
  right: 0;
  background: linear-gradient(to left, #faf7f2, transparent);
}
@media (min-width: 640px) {
  .marquee-fade {
    width: 7rem;
  }
}
.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 3.5rem;
  padding-right: 3.5rem;
}
@media (min-width: 640px) {
  .marquee-track {
    gap: 4rem;
    padding-right: 4rem;
  }
}
.marquee-track .logo {
  display: flex;
  height: 2.25rem;
  align-items: center;
}
@media (min-width: 640px) {
  .marquee-track .logo {
    height: 2.75rem;
  }
}
.marquee-track .logo img {
  height: 100%;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}
@media (min-width: 640px) {
  .marquee-track .logo img {
    max-width: 160px;
  }
}

/* =========================================================================
   16. Market services — clean panel + violet glow (como Final CTA)
   ========================================================================= */
.market-section .eyebrow.on-market {
  color: var(--market);
}
.market-section-head {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}
.market-section-head h2 {
  margin-top: 1rem;
}

.market-stage {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}
.market-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 0%,
    color-mix(in srgb, var(--market) 16%, transparent),
    transparent 70%
  );
}
.market-stage-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: 2.5rem;
  padding: 2.75rem 1.5rem;
}
@media (min-width: 640px) {
  .market-stage-inner {
    padding: 3.5rem 2.5rem;
  }
}
@media (min-width: 1024px) {
  .market-stage-inner {
    grid-template-columns: 1.15fr minmax(240px, 0.85fr);
    gap: 2.5rem;
    padding: 4rem 3rem;
  }
}

.market-stage-copy {
  max-width: 36rem;
}
.market-logo-img {
  height: 3rem;
  width: auto;
  object-fit: contain;
  object-position: left;
}
@media (min-width: 640px) {
  .market-logo-img {
    height: 3.5rem;
  }
}
.market-stage-copy h3 {
  margin-top: 0;
}
.market-stage-copy .body-muted {
  margin-top: 1.25rem;
  max-width: 30rem;
}

.market-values {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.market-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.15rem 0.75rem;
  text-align: center;
}
.market-value + .market-value {
  border-left: 1px solid var(--border);
}
.market-value strong {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--primary);
}
.market-value span {
  max-width: 8.5rem;
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--muted-foreground);
}

.market-categories {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
  font-size: 13px;
  color: var(--muted-foreground);
}
.market-categories .dot {
  color: var(--market);
}
.market-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.market-cta {
  margin-top: 0;
}

.market-stage-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
}
.market-stage-visual .market-logo-img {
  display: block;
  margin-inline: auto;
  object-position: center;
}
.market-bag-wrap {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .market-bag-wrap {
    max-width: 320px;
  }
}
.market-bag-shadow {
  position: absolute;
  inset: 10%;
  border-radius: 9999px;
  background: color-mix(in srgb, var(--market) 18%, transparent);
  filter: blur(28px);
}
.market-bag-circle {
  position: relative;
  overflow: hidden;
  border-radius: 9999px;
  border: 1px solid color-mix(in srgb, var(--market) 18%, var(--border));
  box-shadow: var(--shadow-soft);
}
.market-bag-circle img {
  aspect-ratio: 1;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Alliances — editorial, sin cards */
.alliances {
  margin-top: 3.5rem;
  scroll-margin-top: 6rem;
}
@media (min-width: 640px) {
  .alliances {
    margin-top: 4rem;
  }
}
.alliance-grid {
  margin-top: 0;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .alliance-grid {
    grid-template-columns: 4fr 3fr 3fr;
    gap: 2rem;
    align-items: stretch;
  }
}
.alliance-item {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  height: 100%;
}
.alliance-item h4 {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--foreground);
}
.alliance-item h4 .icon {
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
  color: var(--primary);
}
.alliance-media {
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
}
.alliance-media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.alliance-item:hover .alliance-media img {
  transform: scale(1.04);
}
.alliance-copy {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 0.15rem;
  flex: 1;
}
.alliance-copy .name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--foreground);
  margin: 0;
}
.alliance-copy .name-logo {
  height: 46px;
  width: auto;
  align-self: flex-start;
  object-fit: contain;
}
.alliance-copy > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.alliance-stat-line {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}
.alliance-stat-text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.65rem;
  min-width: 0;
  flex: 1;
}
.alliance-stat {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
}
.alliance-statlabel {
  font-size: 0.8rem;
  color: var(--muted-foreground);
}
.alliance-go {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  min-width: 2.4rem;
  height: 2rem;
  margin-left: auto;
  padding: 0 0.65rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(17, 17, 16, 0.32);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 16px rgba(17, 17, 16, 0.12);
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}
.alliance-go .icon {
  width: 0.75rem;
  height: 0.75rem;
  stroke-width: 2.25;
}
.alliance-card:hover .alliance-go {
  background: rgba(254, 101, 17, 0.82);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}

/* =========================================================================
   17. Metrics
   ========================================================================= */
.metrics-section .head {
  margin-inline: auto;
  max-width: 42rem;
  text-align: center;
}
.metrics-section .head h2 {
  margin-top: 1rem;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  color: var(--foreground);
}
.metrics-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.metric {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
@media (min-width: 640px) {
  .metric {
    align-items: center;
    text-align: center;
  }
}
.metric-value {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--primary);
}
.metric p {
  margin-top: 1rem;
  max-width: 18ch;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* =========================================================================
   18. Case study
   ========================================================================= */
.case-study {
  position: relative;
  overflow: hidden;
  background: var(--background);
}
.case-grid {
  display: grid;
  align-items: stretch;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
  }
}
.case-image {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.case-image img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.case-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 17, 16, 0.82) 0%, rgba(17, 17, 16, 0.08) 55%);
}
.case-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 1;
  padding: 2rem;
}
.case-caption .tag {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}
.case-caption .name {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: #fff;
}
.case-caption .meta {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case-copy h2 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  color: var(--foreground);
}
.timeline {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
}
.timeline li {
  position: relative;
  border-left: 1px solid rgba(229, 223, 212, 0.8);
  padding: 1.25rem 0 1.25rem 1.5rem;
}
.timeline li:first-child {
  padding-top: 0;
}
.timeline li:last-child {
  padding-bottom: 0;
}
.timeline li .dot {
  position: absolute;
  left: -5px;
  top: 1.5rem;
  height: 0.625rem;
  width: 0.625rem;
  border-radius: 9999px;
  background: var(--primary);
}
.timeline li:first-child .dot {
  top: 0.25rem;
}
.timeline .tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
}
.timeline h3 {
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--foreground);
}
.timeline p {
  margin-top: 0.375rem;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* =========================================================================
   19. Support
   ========================================================================= */
.support {
  scroll-margin-top: 6rem;
}
.support .head {
  max-width: 42rem;
}
.support .head h2 {
  margin-top: 1rem;
}
.support .head .body-muted {
  margin-top: 1.25rem;
}
.support-highlights {
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .support-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}
.highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  border: 1px solid rgba(229, 223, 212, 0.6);
  background: var(--surface);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.highlight .inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.highlight .badge {
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--secondary);
  color: var(--foreground);
}
.highlight .badge .icon {
  height: 1.25rem;
  width: 1.25rem;
  stroke-width: 1.75;
}
.highlight h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--foreground);
}
.highlight p {
  margin-top: 0.375rem;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.highlight p.nowrap {
  white-space: nowrap;
}
.support-channels {
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .support-channels {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .support-channels {
    grid-template-columns: repeat(3, 1fr);
  }
}
.channel {
  position: relative;
  display: flex;
  min-height: 336px;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(229, 223, 212, 0.6);
  box-shadow: var(--shadow-soft);
}
.channel > img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.channel-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 17, 16, 0.92) 0%,
    rgba(17, 17, 16, 0.45) 38%,
    rgba(17, 17, 16, 0.12) 68%,
    rgba(17, 17, 16, 0.04) 100%
  );
}
.channel-body {
  position: relative;
  z-index: 10;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.25rem 1.35rem 1.35rem;
}
.channel-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}
.channel-icon {
  display: inline-flex;
  height: 2.25rem;
  width: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(4px);
}
.channel-icon .icon {
  height: 1.15rem;
  width: 1.15rem;
  stroke-width: 1.75;
}
.channel-badge {
  border-radius: 9999px;
  background: var(--primary);
  padding: 0.125rem 0.5rem;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}
.channel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #fff;
}
.channel-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem;
}
.channel-foot p {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}
.channel-cta {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
  padding: 0.45rem 0.85rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.channel-cta:hover {
  background: #fff;
  border-color: #fff;
  color: var(--foreground);
}

.help-card {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(229, 223, 212, 0.6);
  background: var(--surface);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 640px) {
  .help-card {
    flex-direction: row;
    align-items: center;
    padding: 2rem;
  }
}
.help-card .copy {
  max-width: 36rem;
}
.help-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--foreground);
}
.help-card .copy p {
  margin-top: 0.5rem;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.help-actions {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .help-actions {
    flex-direction: row;
  }
}
.btn-whatsapp-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 6px;
  background: #25d366;
  padding: 0.875rem 1.5rem;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  transition: transform 0.2s;
}
.btn-whatsapp-green:hover {
  transform: translateY(-0.125rem);
}
.btn-whatsapp-green .icon-wa {
  width: 1.25rem;
  height: 1.25rem;
}

/* =========================================================================
   20. Pricing
   ========================================================================= */
.pricing {
  scroll-margin-top: 6rem;
}
.pricing .head {
  margin-inline: auto;
  max-width: 42rem;
  text-align: center;
}
.pricing .head h2 {
  margin-top: 1rem;
}
.pricing .head .body-muted {
  margin-inline: auto;
  margin-top: 1.25rem;
  max-width: none;
}
.pricing .head .pricing-lede {
  white-space: nowrap;
}
@media (max-width: 640px) {
  .pricing .head .pricing-lede {
    white-space: normal;
  }
}
.pricing-toggle {
  margin-top: 2.5rem;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.pricing-toggle .seg-group {
  display: flex;
  width: fit-content;
  align-items: center;
  border-radius: 6px;
  border: 1px solid rgba(229, 223, 212, 0.7);
  background: var(--surface);
  padding: 0.25rem;
  box-shadow: var(--shadow-soft);
}
.pricing-toggle .seg-group button {
  border-radius: 6px;
  padding: 0.625rem 1.25rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.pricing-toggle .seg-group button:hover {
  color: var(--foreground);
}
.pricing-toggle .seg-group button.active {
  background: var(--foreground);
  color: var(--background);
}
.pricing-toggle .seg-admin {
  border-radius: 6px;
  border: 1px solid rgba(229, 223, 212, 0.7);
  background: var(--surface);
  padding: 0.625rem 1.25rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--muted-foreground);
  box-shadow: var(--shadow-soft);
  transition: color 0.2s;
}
.pricing-toggle .seg-admin:hover {
  color: var(--foreground);
}
.pricing-toggle .seg-admin.active {
  border-color: var(--foreground);
  background: var(--foreground);
  color: var(--background);
}

.plans {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .plans {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .plans {
    grid-template-columns: repeat(4, 1fr);
  }
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.35rem;
  border: 1px solid rgba(229, 223, 212, 0.6);
  background: var(--surface);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 640px) {
  .plan {
    padding: 1.5rem;
  }
}
.plan.featured {
  border-color: color-mix(in srgb, var(--primary) 30%, transparent);
  box-shadow: var(--shadow-panel);
  outline: 1px solid color-mix(in srgb, var(--primary) 15%, transparent);
  outline-offset: 0;
}
.plan-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 1.35rem;
}
.plan-glow > div {
  position: absolute;
  inset: 0;
}
.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 1.25rem;
  z-index: 20;
  display: inline-flex;
  border-radius: 6px;
  background: var(--primary);
  padding: 0.25rem 0.625rem;
  font-size: 10px;
  font-weight: 600;
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
}
.plan-inner {
  position: relative;
  z-index: 10;
  display: flex;
  height: 100%;
  flex-direction: column;
}
.plan-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-foreground);
}
.plan-price {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--foreground);
}
.plan-unit {
  margin-top: 0.5rem;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}
.plan-net {
  margin-top: 0.25rem;
  font-size: 12px;
  color: var(--muted-foreground);
}
.plan-desc {
  margin-top: 1rem;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(17, 17, 16, 0.75);
}
.plan-features {
  margin-top: 1.25rem;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.625rem;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.plan-features .check-badge {
  height: 1rem;
  width: 1rem;
}
.plan-features .check-badge .icon {
  height: 0.625rem;
  width: 0.625rem;
}
.plan-features li span:last-child {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(17, 17, 16, 0.85);
}
.plan-cta {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin-top: 1.5rem;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}
.plan-cta.outline {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
}
.plan-cta.outline:hover {
  background: var(--secondary);
}
.plan-cta.solid {
  background: #fe6126;
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.plan-cta .icon {
  height: 0.875rem;
  width: 0.875rem;
  transition: transform 0.3s;
}
.plan-cta:hover .icon {
  transform: translate(0.125rem, -0.125rem);
}

.admin-card {
  margin-inline: auto;
  margin-top: 2.5rem;
  max-width: 36rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(229, 223, 212, 0.6);
  background: var(--surface);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 640px) {
  .admin-card {
    padding: 2.5rem;
  }
}
.admin-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--foreground);
}
.admin-card p {
  margin-top: 0.75rem;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.admin-card .btn-primary {
  margin-top: 1.75rem;
}

.guarantees {
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .guarantees {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .guarantees {
    grid-template-columns: repeat(4, 1fr);
  }
}
.guarantee {
  border-radius: 1rem;
  border: 1px solid rgba(229, 223, 212, 0.6);
  background: var(--surface);
  padding: 1.25rem;
  text-align: left;
  box-shadow: var(--shadow-soft);
}
.guarantee-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  height: 1.35rem;
  min-width: 1.35rem;
  padding-inline: 0.3rem;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--primary) 28%, var(--border));
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--primary);
}
.guarantee h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--foreground);
}
.guarantee p {
  margin-top: 0.375rem;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted-foreground);
}
.guarantees-note {
  margin: 2.1rem 0 0;
  text-align: center;
  font-size: 14.3px;
  line-height: 1.5;
  color: var(--muted-foreground);
}
.guarantees-note a,
.guarantees-note-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}
.guarantees-note a:hover,
.guarantees-note-link:hover {
  text-decoration: underline;
}
.finance-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.finance-modal[hidden] {
  display: none;
}
.finance-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 17, 16, 0.48);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.finance-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  max-height: min(90vh, 40rem);
  overflow: auto;
  border-radius: 1.25rem;
  border: 1px solid rgba(229, 223, 212, 0.7);
  background: var(--surface);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-panel);
}
.finance-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  width: 2rem;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  color: var(--muted-foreground);
  cursor: pointer;
}
.finance-modal-close:hover {
  background: color-mix(in srgb, var(--foreground) 6%, transparent);
  color: var(--foreground);
}
.finance-modal-close .icon {
  height: 1rem;
  width: 1rem;
}
.finance-modal-panel .eyebrow {
  margin: 0;
}
.finance-modal-panel h3 {
  margin: 0.55rem 0 0;
  padding-right: 1.75rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--foreground);
}
.finance-modal-lede {
  margin: 0.65rem 0 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted-foreground);
}
.finance-form {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.finance-form label {
  display: block;
}
.finance-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--muted-foreground);
}
.finance-form input,
.finance-form textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(229, 223, 212, 0.7);
  background: var(--background);
  padding: 0.7rem 0.9rem;
  font-size: 14px;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.finance-form textarea {
  resize: vertical;
  min-height: 5.5rem;
  line-height: 1.45;
}
.finance-form input::placeholder,
.finance-form textarea::placeholder {
  color: color-mix(in srgb, var(--muted-foreground) 70%, transparent);
}
.finance-form input:focus,
.finance-form textarea:focus {
  border-color: color-mix(in srgb, var(--primary) 50%, transparent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 15%, transparent);
}
.finance-or {
  margin: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.finance-hint {
  margin: 0;
  font-size: 12.5px;
  color: #b42318;
}
.finance-submit {
  width: 100%;
  margin-top: 0.25rem;
}
.warranty {
  margin-inline: auto;
  margin-top: 2.5rem;
  max-width: 36rem;
  text-align: center;
}
.warranty h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--foreground);
}
.warranty p {
  margin-top: 0.5rem;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* =========================================================================
   21. FAQ
   ========================================================================= */
.faq-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .faq-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
  }
}
.faq-left h2 {
  margin-top: 1rem;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  color: var(--foreground);
}
.faq-form {
  margin-top: 2.5rem;
  max-width: 24rem;
}
.faq-form h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--foreground);
}
.faq-form label {
  display: block;
  margin-top: 0.75rem;
}
.faq-form label:first-of-type {
  margin-top: 1.25rem;
}
.faq-form input,
.faq-form textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(229, 223, 212, 0.7);
  background: var(--surface);
  padding: 0.75rem 1rem;
  font-size: 14px;
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-form textarea {
  resize: none;
}
.faq-form input::placeholder,
.faq-form textarea::placeholder {
  color: color-mix(in srgb, var(--muted-foreground) 70%, transparent);
}
.faq-form input:focus,
.faq-form textarea:focus {
  border-color: color-mix(in srgb, var(--primary) 50%, transparent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 15%, transparent);
}
.faq-form .btn-primary {
  margin-top: 1rem;
  width: 100%;
}
@media (min-width: 640px) {
  .faq-form .btn-primary {
    width: auto;
  }
}
.form-success {
  margin-top: 0.75rem;
  font-size: 13px;
  color: var(--muted-foreground);
}
.accordion-item {
  border-bottom: 1px solid rgba(229, 223, 212, 0.7);
}
.accordion-item:first-child {
  border-top: 1px solid rgba(229, 223, 212, 0.7);
}
.accordion-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.25rem;
  text-align: left;
}
@media (min-width: 640px) {
  .accordion-trigger {
    padding-block: 1.5rem;
  }
}
.accordion-trigger span.q {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--foreground);
}
@media (min-width: 640px) {
  .accordion-trigger span.q {
    font-size: 1.125rem;
  }
}
.accordion-trigger .icon {
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
  color: var(--muted-foreground);
  transition: transform 0.3s, color 0.3s;
}
.accordion-item.open .accordion-trigger .icon {
  transform: rotate(45deg);
  color: var(--primary);
}
.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out;
}
.accordion-item.open .accordion-panel {
  grid-template-rows: 1fr;
}
.accordion-panel .inner {
  overflow: hidden;
}
.accordion-panel p {
  padding-bottom: 1.5rem;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-foreground);
}
@media (min-width: 640px) {
  .accordion-panel p {
    font-size: 1rem;
  }
}

/* =========================================================================
   22. Final CTA
   ========================================================================= */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--background);
}
.final-cta .panel {
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-panel);
}
@media (min-width: 640px) {
  .final-cta .panel {
    padding: 5rem 3rem;
  }
}
@media (min-width: 1024px) {
  .final-cta .panel {
    padding-block: 6rem;
  }
}
.final-cta-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 50% 0%,
    color-mix(in srgb, var(--primary) 14%, transparent),
    transparent 70%
  );
}
.final-cta .content {
  position: relative;
  margin-inline: auto;
  max-width: 42rem;
}
.final-cta h2 {
  margin-top: 1.25rem;
}
.final-cta .body-muted {
  margin-inline: auto;
  margin-top: 1.5rem;
  max-width: 28rem;
}
.final-cta-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .final-cta-actions {
    flex-direction: row;
  }
}
.final-cta-actions .btn-primary .icon-wa {
  width: 1.25rem;
  height: 1.25rem;
}

/* =========================================================================
   23. Footer
   ========================================================================= */
.site-footer {
  width: 100%;
  background: var(--foreground);
  color: var(--background);
}
.site-footer .inner {
  padding-block: 4rem;
}
.footer-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}
.footer-brand {
  max-width: 20rem;
}
.footer-brand .brand-word {
  color: var(--background);
}
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
.footer-col h3 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
}
.footer-col ul {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
  cursor: pointer;
}
.footer-col a:hover {
  color: var(--primary);
}
.footer-bottom {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}
.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom .links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom .links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
  cursor: pointer;
}
.footer-bottom .links a:hover {
  color: var(--primary);
}

/* =========================================================================
   24. Floating widgets
   ========================================================================= */
.floating-wa-wrap {
  position: fixed;
  bottom: 1.5rem;
  right: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.floating-wa-menu {
  margin-right: 0.75rem;
  width: min(280px, calc(100vw - 1.5rem));
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-panel);
  padding: 0.75rem;
}
.floating-wa-menu[hidden] {
  display: none;
}
.floating-wa-menu-title {
  margin: 0 0 0.5rem;
  padding: 0.25rem 0.5rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--muted-foreground);
}
.floating-wa-option {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  border-radius: 0.75rem;
  padding: 0.75rem 0.85rem;
  text-decoration: none;
  color: var(--foreground);
  transition: background 0.2s;
}
.floating-wa-option:hover {
  background: var(--secondary);
}
.floating-wa-option + .floating-wa-option {
  margin-top: 0.25rem;
}
.floating-wa-option-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.floating-wa-option-hint {
  font-size: 12px;
  color: var(--muted-foreground);
}

.floating-wa {
  display: inline-flex;
  height: 3rem;
  align-items: center;
  border: 0;
  cursor: pointer;
  border-radius: 9999px 0 0 9999px;
  background: #25d366;
  padding-left: 0.875rem;
  padding-right: 0.75rem;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: background-color 0.3s, padding 0.3s;
}
.floating-wa:hover,
.floating-wa-wrap.is-open .floating-wa {
  background: #1ebe57;
  padding-right: 0.875rem;
}
.floating-wa .icon-wa {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  fill: currentColor;
}
.floating-wa span {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  opacity: 0;
  transition: all 0.3s;
}
.floating-wa:hover span,
.floating-wa-wrap.is-open .floating-wa span {
  margin-left: 0.5rem;
  max-width: 6rem;
  opacity: 1;
}
@media (min-width: 640px) {
  .floating-wa {
    height: 3.5rem;
    padding-left: 1rem;
    padding-right: 0.875rem;
  }
  .floating-wa:hover,
  .floating-wa-wrap.is-open .floating-wa {
    padding-right: 1rem;
  }
  .floating-wa .icon-wa {
    width: 1.75rem;
    height: 1.75rem;
  }
  .floating-wa span {
    font-size: 14px;
  }
}

.demo-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 30;
  transform: translateY(100%);
  transition: transform 0.5s;
}
.demo-bar.show {
  transform: translateY(0);
}
.demo-bar .wrap {
  margin-inline: auto;
  margin-bottom: 0.75rem;
  width: fit-content;
  max-width: calc(100% - 1.5rem);
  padding-inline: 0.75rem;
}
.demo-bar .bar {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 6px;
  border: 1px solid rgba(229, 223, 212, 0.8);
  background: rgba(255, 255, 255, 0.95);
  padding: 0.25rem 0.25rem 0.25rem 0.625rem;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}
@media (min-width: 640px) {
  .demo-bar .bar {
    gap: 0.5rem;
    padding-left: 0.75rem;
  }
}
.demo-bar .bar p {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(17, 17, 16, 0.8);
}
@media (min-width: 640px) {
  .demo-bar .bar p {
    font-size: 13px;
  }
}
.demo-bar .bar p .icon {
  height: 0.875rem;
  width: 0.875rem;
  flex-shrink: 0;
  color: var(--primary);
}
.demo-bar .full {
  display: none;
}
.demo-bar .short {
  display: inline;
}
@media (min-width: 640px) {
  .demo-bar .full {
    display: inline;
  }
  .demo-bar .short {
    display: none;
  }
}
.demo-bar-cta {
  display: inline-flex;
  height: 2rem;
  align-items: center;
  gap: 0.25rem;
  border-radius: 6px;
  background: #fe6126;
  padding-inline: 0.875rem;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.demo-bar-cta .icon {
  height: 0.875rem;
  width: 0.875rem;
}
@media (min-width: 640px) {
  .demo-bar-cta {
    height: 2.25rem;
    padding-inline: 1rem;
    font-size: 13px;
  }
}

/* =========================================================================
   MOBILE ONLY (max 639px) — desktop rules above are untouched
   ========================================================================= */
@media (max-width: 639px) {
  /* Global spacing / type */
  .section-pad {
    padding-block: 4.5rem;
  }
  .heading-section {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
    line-height: 1.08;
  }
  .container-page {
    padding-inline: 1.1rem;
  }

  /* ---- Hero: 3 lines — "Tu barrio en / una sola / plataforma" ---- */
  .hero h1 {
    font-size: clamp(2.15rem, 9.5vw, 2.75rem);
    line-height: 1.06;
    letter-spacing: -0.04em;
  }
  .hero h1 .rotating-line {
    margin-top: 0.15rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    white-space: normal;
    gap: 0.05em;
  }
  .hero-article {
    display: block;
  }
  .hero-word-wrap {
    display: inline-grid; /* ghost + word siguen superpuestos */
  }
  .orbit-caption-item {
    white-space: normal;
  }
  .hero-lede {
    margin-top: 1.15rem;
    font-size: 0.95rem;
  }
  .hero-actions {
    width: 100%;
  }
  .hero-actions .btn-cta,
  .hero-actions .btn-ghost-light {
    width: 100%;
    justify-content: center;
  }

  /* ---- Platform orbit ---- */
  .orbit-rotor {
    inset: 7%;
  }
  .orbit-label {
    width: 4.5rem;
    font-size: 0.62rem;
    line-height: 1.2;
  }
  .orbit-item {
    gap: 0.3rem;
  }
  .orbit-badge {
    height: 2.5rem;
    width: 2.5rem;
  }
  .orbit-badge .icon {
    height: 1.05rem;
    width: 1.05rem;
  }
  .orbit-caption {
    gap: 0.55rem 0.75rem;
    font-size: 0.8rem;
  }

  /* ---- CTA band ---- */
  .cta-band-actions {
    width: 100%;
  }
  .cta-band-actions .btn-cta,
  .cta-band-actions .btn-whatsapp-outline {
    width: 100%;
    justify-content: center;
  }

  /* ---- Pillars ---- */
  .pillar-tabs {
    margin-inline: -1.1rem;
    padding-inline: 1.1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  .pillar-tabs::-webkit-scrollbar {
    display: none;
  }
  .pillar-tabs button {
    scroll-snap-align: start;
    padding: 0.7rem 0.85rem;
    font-size: 14px;
  }
  .pillar-heading {
    padding: 1.1rem 1.1rem 0.25rem;
    gap: 0.3rem 0.4rem;
  }
  .pillar-index,
  .pillar-module,
  .pillar-heading h3 {
    font-size: clamp(1.15rem, 5.2vw, 1.4rem);
  }
  .pillar-copy {
    padding: 0.7rem 1.1rem 1.35rem;
  }
  .pillar-image {
    min-height: 200px;
    padding: 0.55rem;
  }

  /* ---- Rover ---- */
  .rover-scene {
    max-width: min(100%, 300px);
  }
  .rover-float span.badge {
    height: 2.15rem;
    width: 2.15rem;
  }
  .rover-float span.badge .icon {
    height: 1.05rem;
    width: 1.05rem;
  }
  .rover-copy h2 {
    font-size: clamp(1.55rem, 7.5vw, 2.1rem);
  }
  .spec-grid article {
    padding: 0.85rem 0.9rem;
  }

  /* ---- Audiences ---- */
  .audience-card {
    min-height: 460px;
  }
  .audience-card .body {
    padding: 1.5rem 1.25rem 1rem;
    gap: 1rem;
  }
  .audience-phone img {
    height: 280px;
    max-width: 170px;
    transform: translateY(calc(1rem + 40px));
  }
  .heading-sub {
    font-size: clamp(1.35rem, 6vw, 1.65rem);
  }

  /* ---- Market ---- */
  .market-values {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0.85rem 0;
  }
  .market-value {
    padding: 0.15rem 0;
  }
  .market-value + .market-value {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
  }
  .market-value span {
    max-width: none;
  }

  /* ---- Metrics ---- */
  .metrics-grid {
    gap: 1.75rem 1.25rem;
  }
  .metric-value {
    font-size: clamp(2.25rem, 12vw, 2.75rem);
  }
  .metric p {
    font-size: 13px;
    max-width: 14ch;
  }

  /* ---- Pricing ---- */
  .pricing-toggle .seg-group {
    width: 100%;
  }
  .pricing-toggle .seg-group button {
    flex: 1;
    padding-inline: 0.5rem;
    font-size: 12px;
    white-space: normal;
    line-height: 1.25;
  }
  .pricing-toggle .seg-admin {
    width: 100%;
  }

  /* ---- Final CTA ---- */
  .final-cta .panel {
    padding: 3rem 1.25rem;
  }
  .final-cta-actions {
    width: 100%;
  }
  .final-cta-actions .btn-primary,
  .final-cta-actions .btn-ghost {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
    padding-inline: 1rem;
    white-space: normal;
    text-align: center;
  }

  /* ---- Footer ---- */
  .footer-bottom .links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
  }

  /* ---- Alliances ---- */
  .alliance-copy {
    padding-inline: 0.95rem;
  }
}
