:root {
  
  --zen-green:      #22A34A;
  --zen-green-600:  #1B8B3E;
  --zen-green-700:  #146B2F;
  --zen-green-300:  #6FD08C;
  --zen-green-100:  #D6F2DF;
  --zen-green-50:   #F1FAF4;

  --zen-navy:       #161C6B;   
  --zen-navy-600:   #1F2A8C;
  --zen-sky:        #38BDF8;
  --zen-sky-600:    #0284C7;

  
  --surface:        #FFFFFF;
  --surface-2: #F7F7F4;
  --surface-3: #F0EFEA;
  --line: #E4E4E1;
  --line-strong: #CFCEC7;

  
  --dark:           #070D1B;
  --dark-2:         #0C1526;
  --dark-3:         #131F35;
  --dark-line:      rgba(255,255,255,.10);
  --dark-line-2:    rgba(255,255,255,.16);

  
  --ink: #1D2026;
  --ink-2: #2C3039;
  --body: #55575C;
  --muted: #6C6C6A;
  --on-dark:        #EEF3FA;
  --on-dark-muted:  #9AA8BE;

  
  --red:            #E5484D;
  --amber:          #F5A524;
  --violet:         #7C5CFF;

  
  --r-xs: 6px;  --r-sm: 10px;  --r-md: 14px;
  --r-lg: 20px; --r-xl: 28px;  --r-pill: 999px;

  
  --sh-xs: 0 1px 2px rgba(10,20,36,.06);
  --sh-sm: 0 2px 8px rgba(10,20,36,.06), 0 1px 2px rgba(10,20,36,.04);
  --sh-md: 0 8px 24px rgba(10,20,36,.08), 0 2px 6px rgba(10,20,36,.04);
  --sh-lg: 0 18px 48px rgba(10,20,36,.12), 0 4px 12px rgba(10,20,36,.05);
  --sh-xl: 0 32px 80px rgba(10,20,36,.16), 0 8px 20px rgba(10,20,36,.06);

  
  --tint-sky:      #EFF9FE;
  --tint-sky-2:    #E1F3FC;
  --tint-sky-line: #D3EDFA;
  --tint-navy:     #EEF0FB;
  --tint-navy-line:#DCE0F5;
  --tint-violet:   #F5F3FF;
  --tint-green:    #E9F7EE;

  
  --amber-ink:  #B54708;
  --amber-bg:   #FEF0C7;
  --amber-soft: #FFFAEB;
  --red-ink:    #B42318;
  --red-bg:     #FEE4E2;
  --red-soft:   #FEF3F2;

  
  --on-dark-soft: #8A9AB2;

  --sh-brand: 0 10px 30px rgba(34,163,74,.28);
  
  --ring:       0 0 0 3px rgba(34,163,74,.28);   
  --ring-0:     0 0 0 0 rgba(34,163,74,0);       
  --sh-inset:   inset 0 1px 0 rgba(255,255,255,.55);
  --sh-inset-d: inset 0 1px 0 rgba(255,255,255,.10);

  
  --container: 1200px;
  --container-narrow: 880px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(64px, 6.1vw, 88px);
  --nav-h: 72px;

  
  --font-display: 'Plus Jakarta Sans', 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono:    ui-monospace, 'SF Mono', 'JetBrains Mono', 'Cascadia Code', Consolas, monospace;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}


*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
  font-feature-settings: 'cv02','cv03','cv04','cv11';
}

html { overflow-x: clip; }
@supports not (overflow: clip) { html { overflow-x: hidden; } }

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

:focus-visible {
  outline: 2px solid var(--zen-green);
  outline-offset: 3px;
  border-radius: 4px;
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 700;
  text-wrap: balance;
}
h1 { font-size: clamp(2.25rem, 1.35rem + 3.4vw, 4rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.75rem, 1.15rem + 2.3vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.2rem, 1.02rem + .7vw, 1.6rem); }
h4 { font-size: clamp(1.05rem, .98rem + .32vw, 1.25rem); }
h5 { font-size: 1rem; }

p { text-wrap: pretty; }
strong, b { font-weight: 700; color: var(--ink-2); }

.lead {
  font-size: clamp(1.0625rem, 1rem + .35vw, 1.25rem);
  line-height: 1.65;
  color: var(--body);
}
.text-grad {
  background: linear-gradient(100deg, var(--zen-green) 0%, #3FD07A 40%, var(--zen-sky) 85%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.mono { font-family: var(--font-mono); font-size: .8em; letter-spacing: -.01em; }


.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: var(--container-narrow); }

section { position: relative; }
.section { padding-block: var(--section-y); }
.section-sm { padding-block: clamp(44px, 5vw, 72px); }

.sec-head { max-width: 760px; margin-bottom: clamp(36px, 4vw, 60px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { margin-bottom: 16px; }
.sec-head .lead { margin-top: 0; }


.bg-soft   { background: var(--surface-2); }
.bg-mesh   { background:
    radial-gradient(1000px 500px at 12% -8%, rgba(34,163,74,.07), transparent 62%),
    radial-gradient(900px 460px at 92% 4%, rgba(56,189,248,.07), transparent 60%),
    var(--surface); }
.bg-mesh-soft { background:
    radial-gradient(900px 460px at 88% 0%, rgba(34,163,74,.08), transparent 60%),
    var(--surface-2); }

.bg-dark {
  background:
    radial-gradient(1100px 560px at 10% -10%, rgba(34,163,74,.16), transparent 60%),
    radial-gradient(900px 520px at 95% 10%, rgba(56,189,248,.12), transparent 58%),
    linear-gradient(165deg, var(--dark) 0%, var(--dark-2) 55%, #08111F 100%);
  color: var(--on-dark);
}
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5 { color: #fff; }
.bg-dark p, .bg-dark .lead { color: var(--on-dark-muted); }
.bg-dark strong { color: #fff; }


.grid-lines::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 30%, #000 20%, transparent 78%);
  mask-image: radial-gradient(ellipse 80% 65% at 50% 30%, #000 20%, transparent 78%);
}
.grid-lines > * { position: relative; z-index: 1; }


.grid { display: grid; gap: clamp(16px, 2vw, 24px); }
.g-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.g-6 { grid-template-columns: repeat(6, minmax(0,1fr)); }
@media (max-width: 1000px) { .g-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } .g-6 { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 860px)  { .g-3 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px)  { .g-2, .g-3, .g-4, .g-6 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split.wide-left  { grid-template-columns: 1.1fr .9fr; }
.split.wide-right { grid-template-columns: .9fr 1.1fr; }
@media (max-width: 980px) { .split, .split.wide-left, .split.wide-right { grid-template-columns: 1fr; } }

.stack   { display: flex; flex-direction: column; gap: 16px; }
.row     { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.row.center { justify-content: center; }
.mt-auto { margin-top: auto; }
.center  { text-align: center; }


.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display);
  font-size: .9375rem; font-weight: 700; letter-spacing: -.01em;
  padding: 13px 24px; border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background-color .2s, border-color .2s, color .2s;
  position: relative;
}
.btn:active { transform: translateY(1px); }
.btn .ico { font-size: 1.05em; line-height: 1; transition: transform .25s var(--ease); }
.btn:hover .ico { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--zen-green) 0%, var(--zen-green-600) 100%);
  color: #fff; box-shadow: var(--sh-brand);
}
.btn-primary:hover { box-shadow: var(--sh-brand); transform: translateY(-2px); }

.btn-navy { background: var(--ink); color: #fff; box-shadow: var(--sh-md); }
.btn-navy:hover { background: #16233A; transform: translateY(-2px); }

.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line-strong); box-shadow: var(--sh-xs); }
.btn-ghost:hover { border-color: var(--zen-green); color: var(--zen-green-600); box-shadow: var(--sh-sm); transform: translateY(-2px); }

.btn-outline-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.26); backdrop-filter: blur(8px); }
.btn-outline-light:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.5); transform: translateY(-2px); }

.btn-white { background: #fff; color: var(--ink); box-shadow: var(--sh-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); }

.btn-sm { padding: 9px 16px; font-size: .8438rem; border-radius: var(--r-xs); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 700; font-size: .9rem;
  color: var(--zen-green-600); transition: gap .22s var(--ease), color .2s;
}
.link-arrow::after { content: '→'; transition: transform .22s var(--ease); }
.link-arrow:hover { color: var(--zen-green-700); }
.link-arrow:hover::after { transform: translateX(4px); }
.bg-dark .link-arrow { color: var(--zen-green-300); }



.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: .6875rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--zen-green-700);
  background: none; border: 0; padding: 0; border-radius: 0;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ''; flex: none;
  width: 26px; height: 1px; border-radius: 0;
  background: currentColor; opacity: .55; box-shadow: none;
}
.bg-dark .eyebrow { color: var(--zen-green-300); background: none; border-color: transparent; }


.hero-centro .eyebrow::after {
  content: ''; flex: none;
  width: 26px; height: 1px;
  background: currentColor; opacity: .55;
}

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .75rem; font-weight: 500; letter-spacing: -.005em;
  color: var(--ink-2); background: var(--surface-3);
  border: 1px solid var(--line);
  padding: 5px 11px; border-radius: var(--r-pill);
}
.pill-green { color: var(--zen-green-700); background: var(--zen-green-50); border-color: var(--zen-green-100); }
.pill-sky   { color: var(--zen-sky-600); background: var(--tint-sky); border-color: var(--tint-sky-line); }
.pill-navy  { color: var(--zen-navy); background: var(--tint-navy); border-color: var(--tint-navy-line); }
.bg-dark .pill { color: var(--on-dark); background: rgba(255,255,255,.07); border-color: var(--dark-line); }

.badge-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex: none;
  font-family: var(--font-display); font-size: .8125rem; font-weight: 700;
  color: var(--zen-green-700); background: var(--zen-green-50);
  border: 1px solid var(--zen-green-100); border-radius: var(--r-sm);
}
.bg-dark .badge-num { color: var(--zen-green-300); background: rgba(34,163,74,.14); border-color: rgba(34,163,74,.3); }

.tag-row { display: flex; flex-wrap: wrap; gap: 7px; }


.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.4vw, 30px);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  overflow: hidden;
}
.card::after {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, var(--zen-green), var(--zen-sky));
  transform: scaleX(0); transform-origin: left;
  transition: transform .38s var(--ease);
}
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--line-strong); }
.card-hover:hover::after { transform: scaleX(1); }

.card h3, .card h4 { margin-bottom: 2px; }
.card p { font-size: .9375rem; line-height: 1.62; }

.card-soft { background: var(--surface-2); border-color: transparent; }
.card-dark {
  background: rgba(255,255,255,.035);
  border-color: var(--dark-line);
  backdrop-filter: blur(10px);
}
.card-dark:hover { background: rgba(255,255,255,.06); border-color: var(--dark-line-2); }
.card-dark h3, .card-dark h4 { color: #fff; }
.card-dark p { color: var(--on-dark-muted); }

.card-accent { border-color: var(--zen-green-100); background: linear-gradient(165deg, var(--zen-green-50), var(--surface) 62%); }


.c-ico {
  width: 50px; height: 50px; flex: none;
  display: grid; place-items: center;
  font-size: 1.4rem; line-height: 1;
  border-radius: var(--r-md);
  background: linear-gradient(140deg, var(--zen-green-50), var(--tint-green));
  border: 1px solid var(--zen-green-100);
  transition: transform .3s var(--ease);
}
.card-hover:hover .c-ico { transform: scale(1.07) rotate(-3deg); }
.c-ico.sky   { background: linear-gradient(140deg, var(--tint-sky), var(--tint-sky-2)); border-color: var(--tint-sky-line); }
.c-ico.navy  { background: linear-gradient(140deg, var(--tint-navy), #E4E8F8); border-color: var(--tint-navy-line); }
.c-ico.amber { background: linear-gradient(140deg, #FEF6E7, #FDEFD4); border-color: #FAE3B4; }
.bg-dark .c-ico { background: rgba(34,163,74,.14); border-color: rgba(34,163,74,.3); }


.card-step { padding-top: 26px; }
.card-step .step-n {
  font-family: var(--font-display); font-size: 2.25rem; font-weight: 700;
  line-height: 1; letter-spacing: -.04em;
  background: linear-gradient(140deg, var(--zen-green), var(--zen-sky));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  opacity: .9;
}


.stats-row {
  display: grid; gap: clamp(18px, 2.5vw, 32px);
  
  grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
}
@media (max-width: 900px) { .stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .stats-row { grid-template-columns: 1fr; } }
.stat { text-align: center; }
.stat .n {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.4rem + 2.2vw, 3.25rem);
  font-weight: 700; line-height: 1; letter-spacing: -.045em;
  color: var(--ink);
  display: block;
}
.stat.grad .n {
  background: linear-gradient(135deg, var(--zen-green) 10%, #45D07F 55%, var(--zen-sky) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat .l { margin-top: 8px; font-size: .875rem; color: var(--muted); font-weight: 500; }
.bg-dark .stat .n { color: #fff; }
.bg-dark .stat .l { color: var(--on-dark-muted); }


.stat-band {
  display: grid; gap: 4px;
  grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr));
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--surface); overflow: hidden;
}
.stat-band > * { padding: clamp(20px, 2.4vw, 30px) 16px; }
.stat-band > * + * { border-left: 1px solid var(--line); }


@media (max-width: 900px) {
  .stat-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-band > * + * { border-left: none; }
  .stat-band > *:nth-child(even) { border-left: 1px solid var(--line); }
  .stat-band > *:nth-child(n+3) { border-top: 1px solid var(--line); }
  .bg-dark .stat-band > *:nth-child(even),
  .bg-dark .stat-band > *:nth-child(n+3) { border-color: var(--dark-line); }
}


@media (max-width: 520px) {
  .stat-band { grid-template-columns: 1fr; }
  .stat-band > * { border-left: none !important; }
  .stat-band > * + * { border-top: 1px solid var(--line); }
  .bg-dark .stat-band > * + * { border-color: var(--dark-line); }
}
.bg-dark .stat-band { background: rgba(255,255,255,.035); border-color: var(--dark-line); }
.bg-dark .stat-band > * + * { border-color: var(--dark-line); }


.topbar {
  
  color: #fff; position: relative; overflow: hidden;
  font-size: .8125rem;
}
.tb-slide { background: linear-gradient(100deg, #071B3B 0%, #0A3E8C 45%, #083272 78%, #071B3B 100%); }


.tb-slide.tb-clobi {
  background: linear-gradient(100deg, #071B3B 0%, #0A3E8C 45%, #083272 78%, #071B3B 100%);
}

.tb-slide.tb-training {
  background: linear-gradient(100deg, #04240F 0%, #0E5C2A 42%, #146B2F 74%, #04240F 100%);
}
.tb-slide.tb-training .tb-tag { background: rgba(111,208,140,.18); border-color: rgba(111,208,140,.34); color: #BFF0CF; }
.tb-slide.tb-training .tb-cta { background: #6FD08C; color: #04240F; }
.tb-slide.tb-training .tb-cta:hover { background: #fff; }
.topbar-inner {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 9px var(--gutter); flex-wrap: wrap; text-align: center;
}
.topbar .tb-tag {
  font-size: .625rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2);
  padding: 3px 9px; border-radius: var(--r-pill);
}
.topbar strong { color: #fff; font-weight: 700; }
.topbar span.sep { color: rgba(255,255,255,.45); }
.topbar .tb-cta {
  display: inline-flex; align-items: center; gap: 5px;
  font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--zen-green), var(--zen-green-600));
  padding: 5px 13px; border-radius: var(--r-pill);
  transition: transform .2s var(--ease), box-shadow .2s;
}
.topbar .tb-cta:hover { transform: translateY(-1px); box-shadow: var(--sh-brand); }
.topbar .tb-close { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,.6); font-size: 1rem; padding: 4px 8px; }
.topbar .tb-close:hover { color: #fff; }
@media (max-width: 720px) { .topbar .tb-sub { display: none; } }

header.nav {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background-color .3s;
}
header.nav.stuck { border-bottom-color: var(--line); box-shadow: var(--sh-sm); background: rgba(255,255,255,.95); }

.nav-inner {
  height: var(--nav-h);
  display: flex; align-items: center; gap: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; flex: none; margin-right: 8px; }
.brand img { height: 34px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2px; margin-left: 8px; }
.nav-links > li { position: relative; }
.nav-links a.nl, .nav-links button.nl {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-display); font-size: .9rem; font-weight: 500;
  color: var(--ink-2); padding: 9px 13px; border-radius: var(--r-sm);
  transition: color .2s, background-color .2s;
}
.nav-links a.nl:hover, .nav-links button.nl:hover { color: var(--zen-green-600); background: var(--zen-green-50); }
.nav-links a.nl.active { color: var(--zen-green-600); }
.nl .chev { font-size: .6rem; opacity: .55; transition: transform .25s var(--ease); }
li.has-menu:hover .chev, li.has-menu:focus-within .chev { transform: rotate(180deg); }

.submenu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 250px; padding: 8px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: var(--sh-lg);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
li.has-menu:hover > .submenu, li.has-menu:focus-within > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px; border-radius: var(--r-sm);
  font-size: .875rem; font-weight: 500; color: var(--ink-2);
  transition: background-color .18s, color .18s;
}
.submenu a:hover { background: var(--surface-2); color: var(--zen-green-600); }
.submenu a .sm-ico { width: 30px; height: 30px; flex: none; display: grid; place-items: center; border-radius: var(--r-sm); background: var(--zen-green-50); font-size: .95rem; }
.submenu a .sm-txt small { display: block; font-size: .75rem; font-weight: 400; color: var(--muted); line-height: 1.35; margin-top: 1px; }

.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }

.burger {
  display: none; width: 42px; height: 42px; border-radius: var(--r-sm);
  border: 1px solid var(--line); place-items: center; flex-direction: column; gap: 5px;
  background: var(--surface);
}
.burger span { display: block; width: 18px; height: 2px; border-radius: var(--r-pill); background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-links, .nav-actions .btn-desktop { display: none; }
  .burger { display: flex; align-items: center; justify-content: center; }
}


.mobile-menu {
  position: fixed; inset: 0; z-index: 950;
  background: var(--surface);
  padding: calc(var(--nav-h) + 20px) var(--gutter) 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .38s var(--ease-out);
  visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu a, .mobile-menu button.mm-toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  font-family: var(--font-display); font-size: 1.0625rem; font-weight: 500; color: var(--ink);
  padding: 15px 4px; border-bottom: 1px solid var(--line);
}
.mobile-menu .mm-sub { padding-left: 14px; overflow: hidden; max-height: 0; visibility: hidden;
  transition: max-height .35s var(--ease), visibility .35s; }
.mobile-menu .mm-sub.open { max-height: 560px; visibility: visible; }
.mobile-menu .mm-sub a { font-size: .95rem; font-weight: 500; color: var(--body); }
.mobile-menu .mm-cta { margin-top: 26px; display: grid; gap: 12px; }
.mobile-menu .mm-cta .btn { width: 100%; }


#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 999;
  background: linear-gradient(90deg, var(--zen-green), #56D98A, var(--zen-sky));
  box-shadow: 0 0 12px rgba(34,163,74,.5);
  transition: width .1s linear;
}


.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(56px, 7vw, 104px) clamp(56px, 7vw, 100px);
}
.hero-dark {
  background:
    radial-gradient(1200px 620px at 8% -12%, rgba(34,163,74,.22), transparent 58%),
    radial-gradient(1000px 560px at 96% 6%, rgba(56,189,248,.16), transparent 56%),
    linear-gradient(160deg, #060C18 0%, #0A1526 45%, #081426 72%, #060F1F 100%);
  color: var(--on-dark);
}
.hero-dark h1, .hero-dark h2 { color: #fff; }
.hero-dark p { color: #A9B7CC; }
.hero-light { background:
    radial-gradient(1000px 520px at 6% -10%, rgba(34,163,74,.09), transparent 60%),
    radial-gradient(900px 500px at 98% 0%, rgba(56,189,248,.09), transparent 58%),
    linear-gradient(180deg, #FBFDFE 0%, var(--surface) 60%); }

.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
@media (max-width: 1040px) { .hero-grid { grid-template-columns: 1fr; gap: 44px; } }

.hero h1 { margin-bottom: 20px; }
.hero .lead { max-width: 56ch; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }

.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; font-size: .8125rem; color: var(--muted); }
.hero-dark .hero-meta { color: var(--on-dark-soft); }
.hero-meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--zen-green); box-shadow: var(--ring); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: var(--ring); } 50% { box-shadow: var(--ring-0); } }

.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }


.app-window {
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-xl);
  overflow: hidden;
  font-size: .8125rem;
  position: relative;
}
.hero-dark .app-window, .bg-dark .app-window {
  border-color: rgba(255,255,255,.14);
  box-shadow: var(--sh-xl);
}
.app-window.tilt { transform: perspective(1600px) rotateY(-4deg) rotateX(2deg); transition: transform .6s var(--ease-out); }
.app-window.tilt:hover { transform: perspective(1600px) rotateY(0) rotateX(0); }

.aw-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: var(--surface-2); border-bottom: 1px solid var(--line);
}
.aw-dots { display: flex; gap: 6px; flex: none; }
.aw-dots i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.aw-dots i:nth-child(1) { background: #FF5F57; }
.aw-dots i:nth-child(2) { background: #FEBC2E; }
.aw-dots i:nth-child(3) { background: #28C840; }

.aw-logo { height: 16px; width: auto; flex: none; object-fit: contain; }
.aw-url {
  flex: 1; min-width: 0;
  font-family: var(--font-mono); font-size: .6875rem; color: var(--muted);
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 4px 12px;
  text-align: center; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.aw-live {
  flex: none; display: inline-flex; align-items: center; gap: 5px;
  font-size: .625rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--zen-green-700); background: var(--zen-green-50);
  border: 1px solid var(--zen-green-100); padding: 3px 9px; border-radius: var(--r-pill);
}
.aw-live::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--zen-green); animation: pulse 2s infinite; }

.aw-body { padding: 16px; background: #fff; }
.aw-body.pad-lg { padding: 20px; }

.aw-tabs { display: flex; gap: 3px; padding: 8px 12px 0; background: #fff; border-bottom: 1px solid var(--line); overflow-x: auto; scrollbar-width: none; }
.aw-tabs::-webkit-scrollbar { display: none; }
.aw-tabs span {
  font-size: .75rem; font-weight: 500; color: var(--muted);
  padding: 8px 12px; border-radius: var(--r-sm) var(--r-sm) 0 0; white-space: nowrap;
  border-bottom: 2px solid transparent;
}
.aw-tabs span.on { color: var(--zen-green-700); border-bottom-color: var(--zen-green); background: var(--zen-green-50); }


.aw-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px; }
@media (max-width: 520px) { .aw-kpis { grid-template-columns: repeat(2, 1fr); } }
.aw-kpi { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 11px 12px; }
.aw-kpi .v { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--ink); line-height: 1.1; letter-spacing: -.03em; }
.aw-kpi .k { font-size: .6875rem; color: var(--muted); margin-top: 3px; }
.aw-kpi .d { font-size: .625rem; font-weight: 700; margin-top: 4px; }
.aw-kpi .d.up { color: var(--zen-green-600); }
.aw-kpi .d.down { color: var(--zen-sky-600); }


.aw-list { display: flex; flex-direction: column; gap: 7px; }
.aw-row {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 12px; border-radius: var(--r-sm);
  background: var(--surface); border: 1px solid var(--line);
  transition: border-color .2s, transform .2s;
}
.aw-row:hover { border-color: var(--zen-green-300); transform: translateX(2px); }
.aw-av {
  width: 30px; height: 30px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  font-size: .625rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--zen-green), var(--zen-sky));
  font-family: var(--font-display);
}
.aw-av.v2 { background: linear-gradient(135deg, var(--violet), var(--zen-sky)); }
.aw-av.v3 { background: linear-gradient(135deg, var(--amber), var(--red)); }
.aw-av.v4 { background: linear-gradient(135deg, #0EA5E9, #6366F1); }
.aw-main { flex: 1; min-width: 0; }
.aw-t { font-size: .8125rem; font-weight: 500; color: var(--ink); line-height: 1.35; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.aw-s { font-size: .6875rem; color: var(--muted); margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.aw-chip {
  flex: none; font-size: .625rem; font-weight: 700; padding: 3px 9px; border-radius: var(--r-pill);
  border: 1px solid transparent; white-space: nowrap;
}
.chip-red    { color: var(--red-ink); background: #FEF3F2; border-color: var(--red-bg); }
.chip-amber  { color: var(--amber-ink); background: var(--amber-soft); border-color: var(--amber-bg); }
.chip-green  { color: var(--zen-green-700); background: var(--zen-green-50); border-color: var(--zen-green-100); }
.chip-sky    { color: #026AA2; background: #F0F9FF; border-color: #D1EBFB; }
.chip-gray   { color: var(--muted); background: var(--surface-2); border-color: var(--line); }
.chip-violet { color: #5B21B6; background: var(--tint-violet); border-color: #E9E1FE; }


.aw-table { width: 100%; font-size: .75rem; }
.aw-table th {
  text-align: left; font-size: .625rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); padding: 8px 10px; border-bottom: 1px solid var(--line);
}
.aw-table td { padding: 10px; border-bottom: 1px solid var(--surface-3); color: var(--ink-2); vertical-align: middle; }
.aw-table tr:last-child td { border-bottom: none; }
.aw-table tr:hover td { background: var(--surface-2); }
.aw-table .id { font-family: var(--font-mono); font-size: .6875rem; color: var(--muted); }


.aw-bars { display: flex; flex-direction: column; gap: 9px; }

.aw-bar-item {
  display: grid;
  grid-template-columns: auto minmax(52px, 1fr) auto;
  gap: 10px; align-items: center; font-size: .6875rem;
}
.aw-bar-item .lbl { color: var(--muted); white-space: nowrap; }
.aw-bar-item .track { height: 7px; border-radius: var(--r-pill); background: var(--surface-3); overflow: hidden; min-width: 0; }
.aw-bar-item .fill { height: 100%; border-radius: var(--r-pill); background: linear-gradient(90deg, var(--zen-green), var(--zen-sky)); width: 0; transition: width 1.1s var(--ease-out); }
.aw-bar-item .pct { text-align: right; font-weight: 700; color: var(--ink); white-space: nowrap; }


.aw-chart { display: flex; align-items: flex-end; gap: 6px; height: 88px; padding-top: 8px; }
.aw-chart .col { flex: 1; border-radius: var(--r-xs) var(--r-xs) 2px 2px; background: linear-gradient(180deg, var(--zen-green-300), var(--zen-green)); min-height: 6px; height: 0; transition: height .8s var(--ease-out); }
.aw-chart .col.alt { background: linear-gradient(180deg, #7FD8F8, var(--zen-sky)); }
.aw-xaxis { display: flex; gap: 6px; margin-top: 7px; }
.aw-xaxis span { flex: 1; text-align: center; font-size: .5625rem; color: var(--muted); }


.aw-spark { width: 100%; height: 60px; }


.aw-kanban { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
@media (max-width: 620px) { .aw-kanban { grid-template-columns: repeat(2, 1fr); } }
.aw-col { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 9px; }
.aw-col h6 { font-size: .625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 8px; display: flex; justify-content: space-between; }
.aw-deal { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 8px 9px; margin-bottom: 6px; }
.aw-deal .n { font-size: .75rem; font-weight: 500; color: var(--ink); }
.aw-deal .a { font-size: .8125rem; font-weight: 700; color: var(--zen-green-600); font-family: var(--font-display); }


.aw-chat { display: flex; flex-direction: column; gap: 10px; }
.aw-msg { max-width: 86%; padding: 10px 13px; border-radius: var(--r-md); font-size: .75rem; line-height: 1.55; }
.aw-msg .who { display: block; font-size: .5625rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 4px; opacity: .7; }
.aw-msg.them { background: var(--surface-2); border: 1px solid var(--line); color: var(--ink-2); align-self: flex-start; border-bottom-left-radius: 4px; }
.aw-msg.ai { background: linear-gradient(140deg, var(--tint-violet), #EEF2FF); border: 1px solid #E9E1FE; color: #4C1D95; align-self: flex-start; }
.aw-msg.me { background: linear-gradient(135deg, var(--zen-green), var(--zen-green-600)); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.aw-note { font-size: .6875rem; color: var(--muted); display: flex; gap: 12px; flex-wrap: wrap; }


.aw-flow { display: flex; flex-direction: column; gap: 7px; }
.aw-flow-step { display: flex; align-items: center; gap: 10px; padding: 9px 11px; border-radius: var(--r-sm); background: var(--surface-2); border: 1px solid var(--line); font-size: .75rem; }
.aw-flow-step .st { width: 20px; height: 20px; flex: none; border-radius: 50%; display: grid; place-items: center; font-size: .625rem; font-weight: 700; }
.st.done { background: var(--zen-green-100); color: var(--zen-green-700); }
.st.wait { background: var(--amber-bg); color: var(--amber-ink); }
.st.todo { background: var(--surface-3); color: var(--muted); }
.aw-flow-step .txt { flex: 1; color: var(--ink-2); font-weight: 500; }
.aw-flow-step .stt { font-size: .625rem; color: var(--muted); }
.aw-flow-arrow { text-align: center; color: var(--line-strong); font-size: .875rem; line-height: 1; }


.float-card {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,.97);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  padding: 11px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: .75rem;
  backdrop-filter: blur(12px);
  animation: floaty 5s ease-in-out infinite;
}
.float-card .fc-ico { width: 32px; height: 32px; flex: none; border-radius: var(--r-sm); display: grid; place-items: center; background: var(--zen-green-50); font-size: 1rem; }
.float-card .fc-t { display: block; font-weight: 700; color: var(--ink); font-size: .75rem; line-height: 1.3; white-space: nowrap; }
.float-card .fc-s { display: block; color: var(--muted); font-size: .6875rem; margin-top: 2px; white-space: nowrap; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (max-width: 780px) { .float-card { display: none; } }


.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: clamp(28px, 4vw, 60px); width: max-content; animation: slide 42s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 10px; flex: none;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--muted); letter-spacing: -.02em; white-space: nowrap;
  transition: color .25s;
}
.marquee-item:hover { color: var(--ink); }
.marquee-item img { width: 24px; height: 24px; object-fit: contain; border-radius: var(--r-xs); }
.bg-dark .marquee-item { color: #7E8DA3; }
.bg-dark .marquee-item:hover { color: #fff; }

.logo-strip-label { text-align: center; font-size: .75rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }


.tabs-nav {
  display: flex; gap: 6px; flex-wrap: wrap;
  padding: 6px; border-radius: var(--r-md);
  background: var(--surface-2); border: 1px solid var(--line);
  margin-bottom: 32px; width: fit-content; max-width: 100%;
}
.tabs-nav.center { margin-inline: auto; }
.tabs-nav button {
  font-family: var(--font-display); font-size: .875rem; font-weight: 500;
  color: var(--body); padding: 10px 18px; border-radius: var(--r-sm);
  transition: all .24s var(--ease); white-space: nowrap;
}
.tabs-nav button:hover { color: var(--ink); background: rgba(255,255,255,.7); }
.tabs-nav button.on { color: var(--zen-green-700); background: var(--surface); box-shadow: var(--sh-sm); }
.bg-dark .tabs-nav { background: rgba(255,255,255,.05); border-color: var(--dark-line); }
.bg-dark .tabs-nav button { color: var(--on-dark-muted); }
.bg-dark .tabs-nav button.on { color: #fff; background: rgba(255,255,255,.12); }

.tab-panel { display: none; animation: fadeUp .45s var(--ease-out); }
.tab-panel.on { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }


.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filter-bar button {
  font-family: var(--font-display); font-size: .8125rem; font-weight: 500;
  color: var(--body); background: var(--surface); border: 1px solid var(--line);
  padding: 9px 18px; border-radius: var(--r-pill);
  transition: all .22s var(--ease);
}
.filter-bar button:hover { border-color: var(--zen-green-300); color: var(--zen-green-700); }
.filter-bar button.on { color: #fff; background: linear-gradient(135deg, var(--zen-green), var(--zen-green-600)); border-color: transparent; box-shadow: var(--sh-brand); }

.filter-item { animation: fadeUp .4s var(--ease-out); }
.filter-item[hidden] { display: none !important; }


.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; text-align: left;
  font-family: var(--font-display); font-size: clamp(.9375rem, .9rem + .2vw, 1.0625rem); font-weight: 500;
  color: var(--ink); transition: color .2s;
}
.acc-q:hover { color: var(--zen-green-600); }
.acc-q .ai {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line); display: grid; place-items: center;
  font-size: .875rem; color: var(--muted);
  transition: transform .3s var(--ease), background-color .25s, color .25s, border-color .25s;
}
.acc-item.open .acc-q { color: var(--zen-green-700); }
.acc-item.open .ai { transform: rotate(45deg); background: var(--zen-green); border-color: var(--zen-green); color: #fff; }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-a > div { padding: 0 4px 24px; font-size: .9375rem; line-height: 1.72; color: var(--body); max-width: 78ch; }
.bg-dark .accordion, .bg-dark .acc-item { border-color: var(--dark-line); }
.bg-dark .acc-q { color: #fff; }
.bg-dark .acc-a > div { color: var(--on-dark-muted); }
.bg-dark .acc-q .ai { border-color: var(--dark-line-2); color: var(--on-dark-muted); }


.check-list { display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .9375rem; line-height: 1.6; color: var(--body); }
.check-list li::before {
  content: '✓'; flex: none;
  width: 22px; height: 22px; margin-top: 1px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: .6875rem; font-weight: 700;
  color: var(--zen-green-700); background: var(--zen-green-100);
}
.bg-dark .check-list li { color: var(--on-dark-muted); }
.bg-dark .check-list li::before { color: var(--zen-green-300); background: rgba(34,163,74,.2); }

.x-list li::before { content: '✕'; color: var(--red-ink); background: var(--red-bg); }


.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(16px, 2.5vw, 30px); align-items: center; }
@media (max-width: 860px) { .compare { grid-template-columns: 1fr; } .compare .cmp-arrow { transform: rotate(90deg); } }
.cmp-arrow { font-size: 1.75rem; color: var(--zen-green); font-weight: 400; }
.cmp-box { border-radius: var(--r-lg); padding: clamp(22px, 2.6vw, 30px); border: 1px solid var(--line); }
.cmp-box.bad  { background: #FFFBFA; border-color: var(--red-bg); }
.cmp-box.good { background: var(--zen-green-50); border-color: var(--zen-green-100); }
.cmp-box h4 { margin-bottom: 16px; font-size: 1rem; }
.cmp-box.bad h4  { color: var(--red-ink); }
.cmp-box.good h4 { color: var(--zen-green-700); }


.timeline { position: relative; display: grid; gap: 4px; }
.tl-item {
  position: relative;
  display: grid; grid-template-columns: 56px 1fr; gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.tl-item:last-child { border-bottom: none; }
.tl-num {
  width: 44px; height: 44px; border-radius: var(--r-md);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: .9375rem; font-weight: 700;
  color: #fff; background: linear-gradient(140deg, var(--zen-green), var(--zen-green-600));
  box-shadow: var(--sh-brand);
}
.tl-item.alt .tl-num { background: linear-gradient(140deg, var(--zen-sky), var(--zen-sky-600)); box-shadow: var(--sh-brand); }
.tl-phase { font-size: .6875rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--zen-green-600); margin-bottom: 5px; }
.tl-body h4 { margin-bottom: 7px; }
.tl-body p { font-size: .9375rem; }
.bg-dark .tl-item { border-color: var(--dark-line); }


.flow { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); position: relative; }
.flow-step { text-align: center; position: relative; }
.flow-step .fs-ico {
  width: 62px; height: 62px; margin: 0 auto 16px;
  border-radius: var(--r-lg); display: grid; place-items: center; font-size: 1.5rem;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--sh-sm);
  position: relative; z-index: 2;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.flow-step:hover .fs-ico { transform: translateY(-4px) scale(1.05); box-shadow: var(--sh-md); border-color: var(--zen-green-300); }
.flow-step h4 { font-size: 1rem; margin-bottom: 7px; }
.flow-step p { font-size: .875rem; }
.bg-dark .flow-step .fs-ico { background: rgba(255,255,255,.06); border-color: var(--dark-line); }


.plans { display: grid; gap: clamp(18px, 2.4vw, 26px); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: clamp(26px, 3vw, 34px);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.plan.hot { border: 2px solid var(--zen-green); box-shadow: var(--sh-brand); background: linear-gradient(170deg, #fff 0%, var(--zen-green-50) 100%); }
.plan.hot::before {
  content: 'MÁS POPULAR'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: .625rem; font-weight: 700; letter-spacing: .1em;
  color: #fff; background: linear-gradient(90deg, var(--zen-green-600), var(--zen-green), var(--zen-sky));
  padding: 6px 18px; border-radius: var(--r-pill); white-space: nowrap;
  box-shadow: var(--sh-brand);
}
.plan-tier { font-size: .6875rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--zen-green-600); margin-bottom: 10px; }
.plan h3 { margin-bottom: 6px; }
.plan .plan-sub { font-size: .875rem; color: var(--muted); min-height: 40px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin: 20px 0 4px; }
.plan-price .amt { font-family: var(--font-display); font-size: clamp(2rem, 1.6rem + 1.3vw, 2.75rem); font-weight: 700; letter-spacing: -.04em; color: var(--ink); line-height: 1; }
.plan-price .per { font-size: .875rem; color: var(--muted); font-weight: 500; }
.plan-note { font-size: .8125rem; font-weight: 700; color: var(--ink-2); margin: 18px 0 12px; }
.plan .check-list { margin-bottom: 26px; }
.plan .check-list li { font-size: .875rem; }
.plan .btn { margin-top: auto; }


.cmp-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); }
.cmp-table { min-width: 620px; font-size: .875rem; }
.cmp-table th, .cmp-table td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.cmp-table thead th { font-family: var(--font-display); font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); background: var(--surface-2); }
.cmp-table thead th.hl { color: var(--zen-green-700); background: var(--zen-green-50); }
.cmp-table td.hl { background: rgba(34,163,74,.045); font-weight: 500; color: var(--ink); }
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table .yes { color: var(--zen-green-600); font-weight: 700; }
.cmp-table .no  { color: var(--line-strong); font-weight: 700; }


.quote-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(24px, 2.8vw, 32px);
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.quote-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.stars { color: var(--amber); font-size: .875rem; letter-spacing: 2px; }
.quote-card blockquote { font-size: 1rem; line-height: 1.7; color: var(--ink-2); font-weight: 400; }
.quote-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote-who .qa {
  width: 42px; height: 42px; flex: none; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-display);
  font-size: .8125rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--zen-green), var(--zen-sky));
}

.quote-who > span:last-child { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.quote-who .qn { display: block; font-family: var(--font-display); font-size: .9375rem; font-weight: 700; color: var(--ink); line-height: 1.25; }
.quote-who .qr { display: block; font-size: .8125rem; color: var(--muted); line-height: 1.35; }
.quote-metrics { display: flex; gap: 20px; flex-wrap: wrap; padding-top: 16px; border-top: 1px solid var(--line); }
.quote-metrics div { font-size: .75rem; color: var(--muted); }
.quote-metrics b { display: block; font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--zen-green-600); letter-spacing: -.02em; }


.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(44px, 6vw, 80px) clamp(24px, 4vw, 64px);
  background:
    radial-gradient(800px 400px at 15% 0%, rgba(34,163,74,.28), transparent 62%),
    radial-gradient(700px 380px at 88% 100%, rgba(56,189,248,.22), transparent 58%),
    linear-gradient(150deg, #08111F 0%, #0D1B2F 55%, #0A1526 100%);
  color: #fff; text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: #A9B7CC; max-width: 62ch; margin-inline: auto; }
.cta-band .row { justify-content: center; margin-top: 30px; }
.cta-band .cta-note { margin-top: 22px; font-size: .8125rem; color: #7E8DA3; }


.modal-backdrop {
  position: fixed; inset: 0; z-index: 980;
  background: rgba(6,12,22,.72); backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
}
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal {
  width: 100%; max-width: 470px; max-height: 92vh; overflow-y: auto;
  background: var(--surface); border-radius: var(--r-xl);
  box-shadow: var(--sh-xl); padding: clamp(26px, 3vw, 36px);
  transform: translateY(18px) scale(.98);
  transition: transform .34s var(--ease-out);
}
.modal-backdrop.open .modal { transform: none; }
.modal-close { position: absolute; top: 14px; right: 16px; font-size: 1.25rem; color: var(--muted); width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; transition: background-color .2s, color .2s; }
.modal-close:hover { background: var(--surface-2); color: var(--ink); }
.modal h3 { margin-bottom: 8px; }
.modal > p { font-size: .9375rem; margin-bottom: 22px; }

.field { margin-bottom: 14px; }
.field label { display: block; font-size: .8125rem; font-weight: 500; color: var(--ink-2); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--surface); font-size: .9375rem; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--zen-green); box-shadow: var(--ring);
}
.field textarea { resize: vertical; min-height: 88px; }
.form-ok {
  display: none; padding: 16px; border-radius: var(--r-sm);
  background: var(--zen-green-50); border: 1px solid var(--zen-green-100);
  color: var(--zen-green-700); font-size: .875rem; font-weight: 500; text-align: center;
}
.form-ok.show { display: block; }


footer.site-footer {
  background: linear-gradient(170deg, #060C18 0%, #0A1424 60%, #070F1E 100%);
  color: var(--on-dark-muted);
  padding-block: clamp(52px, 6vw, 80px) 0;
  position: relative; overflow: hidden;
}
footer.site-footer::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(900px 420px at 12% 0%, rgba(34,163,74,.14), transparent 60%),
              radial-gradient(700px 360px at 92% 20%, rgba(56,189,248,.09), transparent 58%);
  pointer-events: none;
}
footer.site-footer > * { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 52px); }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }


.footer-brand img { height: 38px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: .9375rem; color: var(--on-dark-soft); max-width: 34ch; }
.f-social { display: flex; gap: 10px; margin-top: 20px; }
.f-social a {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  display: grid; place-items: center; font-size: .9rem;
  background: rgba(255,255,255,.06); border: 1px solid var(--dark-line);
  color: #fff; transition: all .22s var(--ease);
}
.f-social a:hover { background: var(--zen-green); border-color: var(--zen-green); transform: translateY(-2px); }

footer .f-h {
  font-family: var(--font-display); font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 18px;
}
footer .f-links { display: grid; gap: 11px; }
footer .f-links a { font-size: .875rem; color: var(--on-dark-soft); transition: color .2s, transform .2s; display: inline-flex; align-items: center; gap: 8px; }
footer .f-links a:hover { color: #fff; transform: translateX(3px); }

.f-contact { display: grid; gap: 13px; }
.f-country { display: flex; align-items: center; gap: 11px; font-size: .875rem; }
.f-country .flag { font-size: 1.1rem; line-height: 1; }
.f-country .cn { color: var(--on-dark-soft); min-width: 62px; }
.f-country a { color: #fff; font-weight: 500; font-variant-numeric: tabular-nums; transition: color .2s; }
.f-country a:hover { color: var(--zen-green-300); }

.footer-bottom {
  margin-top: clamp(40px, 5vw, 60px);
  padding-block: 24px;
  border-top: 1px solid var(--dark-line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .8125rem; color: #6E7C93;
}
.footer-bottom a { color: var(--on-dark-soft); transition: color .2s; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .fb-links { display: flex; gap: 20px; flex-wrap: wrap; }


.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .07s; } .reveal-d2 { transition-delay: .14s; }
.reveal-d3 { transition-delay: .21s; } .reveal-d4 { transition-delay: .28s; }
.reveal-d5 { transition-delay: .35s; } .reveal-d6 { transition-delay: .42s; }

.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; }
.hide-sm { }
@media (max-width: 640px) { .hide-sm { display: none !important; } }


.gallery { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.gal-item {
  position: relative; overflow: hidden; border-radius: var(--r-md);
  border: 1px solid var(--line); background: var(--surface-2);
  aspect-ratio: 4/3;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease-out); }
.gal-item:hover img { transform: scale(1.06); }
.gal-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 14px 12px;
  background: linear-gradient(transparent, rgba(6,12,22,.85));
  color: #fff; font-size: .8125rem; font-weight: 500;
}


.shot {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--sh-lg);
  background: var(--surface);
}
.shot img { width: 100%; }
.bg-dark .shot { border-color: rgba(255,255,255,.12); box-shadow: var(--sh-xl); }


.post-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.post-card .pc-img { aspect-ratio: 16/9; overflow: hidden; background: var(--surface-2); }
.post-card .pc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.post-card:hover .pc-img img { transform: scale(1.05); }
.post-card .pc-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card h3 { font-size: 1.0625rem; line-height: 1.35; }
.post-card .pc-meta { font-size: .75rem; color: var(--muted); display: flex; gap: 10px; align-items: center; }


.partner-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; }
.partner-tile {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; border-radius: var(--r-md);
  background: var(--surface); border: 1px solid var(--line);
  transition: all .26s var(--ease);
}
.partner-tile:hover { border-color: var(--zen-green-300); box-shadow: var(--sh-md); transform: translateY(-3px); }
.partner-tile img { width: 30px; height: 30px; object-fit: contain; flex: none; }
.partner-tile .pt-n { font-family: var(--font-display); font-size: .9375rem; font-weight: 700; color: var(--ink); }
.partner-tile .pt-c { font-size: .75rem; color: var(--muted); }


.callout {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px; border-radius: var(--r-md);
  background: var(--zen-green-50); border: 1px solid var(--zen-green-100);
  font-size: .9375rem; color: var(--zen-green-700);
}
.callout .ci { font-size: 1.15rem; line-height: 1.3; }
.callout.sky { background: #F0F9FF; border-color: #D1EBFB; color: #026AA2; }
.callout.amber { background: var(--amber-soft); border-color: var(--amber-bg); color: var(--amber-ink); }


.pull-quote {
  border-left: 3px solid var(--zen-green);
  padding: 6px 0 6px 24px;
  font-family: var(--font-display); font-size: clamp(1.0625rem, 1rem + .5vw, 1.375rem);
  font-weight: 500; line-height: 1.55; color: var(--ink-2); letter-spacing: -.015em;
}
.bg-dark .pull-quote { color: #D5DEEA; }


.prose { max-width: 72ch; font-size: 1.0625rem; line-height: 1.78; color: var(--body); }
.prose > * + * { margin-top: 1.15em; }
.prose h2 {
  margin-top: 2.2em; margin-bottom: .1em;
  font-size: clamp(1.35rem, 1.15rem + .9vw, 1.875rem);
  scroll-margin-top: calc(var(--nav-h) + 24px);
}
.prose h3 { margin-top: 1.9em; margin-bottom: .1em; font-size: clamp(1.1rem, 1rem + .5vw, 1.35rem); }
.prose h4 { margin-top: 1.6em; font-size: 1.0625rem; }
.prose ul, .prose ol { padding-left: 0; display: grid; gap: 10px; }
.prose ul li { position: relative; padding-left: 26px; }
.prose ul li::before {
  content: ''; position: absolute; left: 6px; top: .68em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--zen-green);
}
.prose ol { counter-reset: n; }
.prose ol li { position: relative; padding-left: 30px; counter-increment: n; }
.prose ol li::before {
  content: counter(n) '.'; position: absolute; left: 0; top: 0;
  font-family: var(--font-display); font-weight: 700; color: var(--zen-green-600);
}
.prose a { color: var(--zen-green-600); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--zen-green-700); }
.prose blockquote {
  border-left: 3px solid var(--zen-green); padding: 4px 0 4px 22px;
  font-size: 1.125rem; font-style: italic; color: var(--ink-2);
}
.prose img { border-radius: var(--r-md); border: 1px solid var(--line); box-shadow: var(--sh-md); margin-block: 1.6em; }
.prose hr { border: none; border-top: 1px solid var(--line); margin-block: 2.4em; }
.prose .callout { font-size: .9375rem; }

.article-head { border-bottom: 1px solid var(--line); padding-bottom: 28px; margin-bottom: 34px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; font-size: .875rem; color: var(--muted); margin-top: 16px; }
.article-meta .au { display: flex; align-items: center; gap: 9px; font-weight: 500; color: var(--ink-2); }
.article-meta .au span.av {
  width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-size: .6875rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--zen-green), var(--zen-sky));
}


.event-card {
  display: grid; grid-template-columns: 92px 1fr auto; gap: 20px; align-items: center;
  padding: 20px 24px; border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--surface); transition: all .28s var(--ease);
}
.event-card:hover { border-color: var(--zen-green-300); box-shadow: var(--sh-md); transform: translateY(-2px); }
.event-card .ev-date {
  text-align: center; padding: 10px 6px; border-radius: var(--r-md);
  background: var(--zen-green-50); border: 1px solid var(--zen-green-100);
}
.event-card .ev-date .d { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--zen-green-700); line-height: 1; }
.event-card .ev-date .m { font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--zen-green-600); margin-top: 3px; }
.event-card h4 { margin-bottom: 5px; }
.event-card .ev-meta { font-size: .8125rem; color: var(--muted); }
@media (max-width: 720px) {
  .event-card { grid-template-columns: 76px 1fr; }
  .event-card > :last-child { grid-column: 1 / -1; }
}


.ico {
  width: 1em; height: 1em;
  display: inline-block; vertical-align: -0.125em;
  flex: none;
  stroke: currentColor; fill: none;
  overflow: visible;
}
.ico-inline { width: 1.05em; height: 1.05em; vertical-align: -0.18em; margin-right: .28em; opacity: .9; }
.ico-emoji { font-style: normal; line-height: 1; }


.c-ico { font-size: 1.5rem; color: var(--zen-green-600); overflow: visible; }
.c-ico .ico { width: 24px; height: 24px; stroke-width: 1.7; }
.c-ico.sky   { color: var(--zen-sky-600); }
.c-ico.navy  { color: var(--zen-navy); }
.c-ico.amber { color: var(--amber-ink); }
.bg-dark .c-ico, .card-dark .c-ico { color: var(--zen-green-300); }


.c-ico .ico { transition: transform .45s var(--ease-out); }
.card-hover:hover .c-ico .ico { transform: scale(1.12) rotate(-6deg); }
.c-ico::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, currentColor, transparent 70%);
  opacity: 0; transition: opacity .4s var(--ease); pointer-events: none;
}
.c-ico { position: relative; }
.card-hover:hover .c-ico::after { opacity: .1; }

.fs-ico { color: var(--zen-green-600); font-size: 1.5rem; }
.fs-ico .ico { width: 26px; height: 26px; }
.bg-dark .fs-ico { color: var(--zen-green-300); }
.flow-step:hover .fs-ico .ico { animation: icoPop .55s var(--ease-out); }
@keyframes icoPop { 0% { transform: scale(1); } 45% { transform: scale(1.22) rotate(-8deg); } 100% { transform: scale(1); } }

.sm-ico { color: var(--zen-green-600); font-size: 1rem; }
.sm-ico .ico { width: 17px; height: 17px; }
.submenu a:hover .sm-ico { background: var(--zen-green-100); }

.pill .ico, .aw-chip .ico, .check-list .ico, .btn .ico-inline { opacity: .85; }
.eyebrow .ico-inline { margin-right: .2em; }
.f-links .ico-inline, .footer-bottom .ico-inline { opacity: .7; }


@keyframes drawStroke { from { stroke-dashoffset: 120; } to { stroke-dashoffset: 0; } }
.reveal.in .c-ico .ico > * {
  stroke-dasharray: 120; stroke-dashoffset: 0;
  animation: drawStroke .9s var(--ease-out) both;
}


.aurora { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.aurora i {
  position: absolute; display: block; border-radius: 50%;
  filter: blur(90px); opacity: .55;
  will-change: transform;
}
.aurora i:nth-child(1) {
  width: 46vw; height: 46vw; left: -10vw; top: -12vw;
  background: radial-gradient(circle, rgba(34,163,74,.30), transparent 68%);
  animation: drift1 26s ease-in-out infinite;
}
.aurora i:nth-child(2) {
  width: 40vw; height: 40vw; right: -12vw; top: 4vw;
  background: radial-gradient(circle, rgba(56,189,248,.26), transparent 68%);
  animation: drift2 32s ease-in-out infinite;
}
.aurora i:nth-child(3) {
  width: 34vw; height: 34vw; left: 38vw; top: 28vw;
  background: radial-gradient(circle, rgba(22,28,107,.18), transparent 70%);
  animation: drift3 38s ease-in-out infinite;
}
@keyframes drift1 { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(9vw,7vw,0) scale(1.14); } }
@keyframes drift2 { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(-8vw,10vw,0) scale(1.2); } }
@keyframes drift3 { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(6vw,-9vw,0) scale(.86); } }
@media (prefers-reduced-motion: reduce) { .aurora i { animation: none; } }


.hero-dark::before, .bg-dark::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(520px 320px at 18% 24%, rgba(34,163,74,.16), transparent 62%),
    radial-gradient(460px 300px at 82% 68%, rgba(56,189,248,.13), transparent 62%);
  animation: breathe 12s ease-in-out infinite;
}
.hero-dark > *, .bg-dark > * { position: relative; z-index: 1; }
@keyframes breathe { 0%,100% { opacity: .75; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }


.grid-lines::before { animation: gridDrift 24s linear infinite; }
@keyframes gridDrift { to { background-position: 56px 56px, 56px 56px; } }


.tilt-scene { perspective: 1400px; perspective-origin: 50% 40%; }
.tilt-3d {
  transform-style: preserve-3d;
  transition: transform .5s var(--ease-out);
  will-change: transform;
}
.tilt-3d > * { transform: translateZ(0); }


.app-window {
  transform-style: preserve-3d;
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease);
}
.hero-dark .app-window {
  animation: floatWindow 9s ease-in-out infinite;
}
@keyframes floatWindow {
  0%, 100% { transform: perspective(1500px) rotateX(2.2deg) rotateY(-4deg) translateY(0); }
  50%      { transform: perspective(1500px) rotateX(1.2deg) rotateY(-2deg) translateY(-12px); }
}
.tilt-scene .app-window { animation: none; }


.app-window::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.85), transparent);
  opacity: 0; pointer-events: none;
}
.hero-dark .app-window::after { opacity: .6; animation: edgeSweep 6s ease-in-out infinite; }
@keyframes edgeSweep { 0%,100% { transform: translateX(-100%); } 55%,100% { transform: translateX(100%); } }


.reveal .app-window,
.reveal.in .app-window { transition: transform .9s var(--ease-out), opacity .9s var(--ease-out); }
.reveal:not(.in) .app-window {
  transform: perspective(1600px) rotateX(14deg) scale(.94) translateY(26px);
  opacity: 0;
}
.reveal.in .app-window { opacity: 1; }


.app-window-wrap { position: relative; }
.app-window-wrap::after {
  content: ''; position: absolute; left: 8%; right: 8%; bottom: -26px; height: 40px;
  background: radial-gradient(ellipse at center, rgba(34,163,74,.28), transparent 70%);
  filter: blur(18px); pointer-events: none;
}


.card-hover { position: relative; }
.card-hover::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; z-index: 0;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 0%), rgba(34,163,74,.10), transparent 62%);
  opacity: 0; transition: opacity .35s var(--ease); pointer-events: none;
}
.card-hover:hover::before { opacity: 1; }
.card > * { position: relative; z-index: 1; }
.card-dark.card-hover::before { background: radial-gradient(320px circle at var(--mx,50%) var(--my,0%), rgba(56,189,248,.14), transparent 62%); }


.reveal { will-change: opacity, transform; }
.reveal-left  { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-scale { transform: scale(.94); }
.reveal-left.in, .reveal-right.in, .reveal-scale.in { transform: none; }
.reveal-d7 { transition-delay: .49s; } .reveal-d8 { transition-delay: .56s; }


.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(1) { transition-delay: .04s; }
.stagger.in > *:nth-child(2) { transition-delay: .10s; }
.stagger.in > *:nth-child(3) { transition-delay: .16s; }
.stagger.in > *:nth-child(4) { transition-delay: .22s; }
.stagger.in > *:nth-child(5) { transition-delay: .28s; }
.stagger.in > *:nth-child(6) { transition-delay: .34s; }
.stagger.in > *:nth-child(n+7) { transition-delay: .40s; }


.btn-primary, .btn-navy, .btn-white { overflow: hidden; }
.btn-primary::after, .btn-navy::after, .btn-white::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.34), transparent);
  transform: skewX(-18deg); pointer-events: none;
}
.btn-primary:hover::after, .btn-navy:hover::after, .btn-white:hover::after { animation: shine .8s var(--ease-out); }
@keyframes shine { to { left: 130%; } }

.btn-magnetic { transition: transform .28s var(--ease-out), box-shadow .28s var(--ease); }


.hero-cta .btn-primary { position: relative; }
.hero-cta .btn-primary::before {
  content: ''; position: absolute; inset: -3px; border-radius: inherit; z-index: -1;
  background: linear-gradient(135deg, var(--zen-green), var(--zen-sky), var(--zen-green));
  background-size: 250% 250%;
  filter: blur(10px); opacity: .55;
  animation: haloShift 5s linear infinite;
}
@keyframes haloShift { to { background-position: 250% 50%; } }


.aw-row { transition: border-color .25s, transform .25s var(--ease), background-color .25s; }
.aw-row:hover { background: var(--zen-green-50); }

.aw-kpi { position: relative; overflow: hidden; }
.aw-kpi::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(34,163,74,.09) 50%, transparent 60%);
  transform: translateX(-100%);
}
.reveal.in .aw-kpi::after { animation: kpiSweep 1.6s var(--ease-out) .3s; }
@keyframes kpiSweep { to { transform: translateX(100%); } }

.partner-tile, .gal-item, .quote-card, .plan, .event-card { will-change: transform; }
.partner-tile:hover .pt-n { color: var(--zen-green-700); }

.marquee-item img { transition: transform .3s var(--ease), filter .3s; filter: grayscale(1) opacity(.75); }
.marquee-item:hover img { transform: scale(1.15); filter: none; }

.stat .n { transition: transform .3s var(--ease); display: inline-block; }
.stat:hover .n { transform: translateY(-3px) scale(1.03); }

.pill { transition: transform .2s var(--ease), background-color .2s, border-color .2s, color .2s; }
.pill:hover { transform: translateY(-1px); }

.acc-item { transition: background-color .25s; }
.acc-item.open { background: linear-gradient(90deg, var(--zen-green-50), transparent 55%); }
.bg-dark .acc-item.open { background: linear-gradient(90deg, rgba(34,163,74,.08), transparent 55%); }


.aw-live::before { animation: livePulse 1.8s ease-in-out infinite; }
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,163,74,.55); }
  60%      { box-shadow: var(--ring-0); }
}


.aw-bar-item .fill { position: relative; overflow: hidden; }
.aw-bar-item .fill::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent);
  transform: translateX(-100%); animation: barShine 2.4s var(--ease-out) infinite;
}
@keyframes barShine { 0% { transform: translateX(-100%); } 55%, 100% { transform: translateX(220%); } }

.aw-chart .col { position: relative; }
.aw-chart .col:last-child { background: linear-gradient(180deg, #7EE8A2, var(--zen-green-600)); box-shadow: 0 0 14px rgba(34,163,74,.4); }


.link-arrow { position: relative; }
.link-arrow::before {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 100%;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .32s var(--ease);
}
.link-arrow:hover::before { transform: scaleX(1); transform-origin: left; }


.nav-links a.nl { position: relative; }
.nav-links a.nl.active::after {
  content: ''; position: absolute; left: 13px; right: 13px; bottom: 3px; height: 2px;
  border-radius: var(--r-pill); background: linear-gradient(90deg, var(--zen-green), var(--zen-sky));
}


.bg-dark .card-dark { backdrop-filter: blur(12px) saturate(120%); }


@media (prefers-reduced-motion: reduce) {
  .hero-dark .app-window, .hero-dark .app-window::after, .aurora i,
  .hero-dark::before, .bg-dark::before, .grid-lines::before,
  .aw-bar-item .fill::after, .hero-cta .btn-primary::before { animation: none !important; }
  .reveal.in .c-ico .ico > * { animation: none !important; }
}



.c-ico {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background:
    linear-gradient(150deg, rgba(34,163,74,.14), rgba(34,163,74,.04)) padding-box,
    linear-gradient(150deg, rgba(34,163,74,.42), rgba(34,163,74,.10)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--sh-inset);
}
.c-ico .ico { width: 26px; height: 26px; stroke-width: 1.65; }
.c-ico.sky {
  background:
    linear-gradient(150deg, rgba(56,189,248,.14), rgba(56,189,248,.04)) padding-box,
    linear-gradient(150deg, rgba(56,189,248,.45), rgba(56,189,248,.10)) border-box;
}
.c-ico.navy {
  background:
    linear-gradient(150deg, rgba(22,28,107,.11), rgba(22,28,107,.03)) padding-box,
    linear-gradient(150deg, rgba(22,28,107,.35), rgba(22,28,107,.08)) border-box;
}
.c-ico.amber {
  background:
    linear-gradient(150deg, rgba(245,165,36,.16), rgba(245,165,36,.04)) padding-box,
    linear-gradient(150deg, rgba(245,165,36,.5), rgba(245,165,36,.10)) border-box;
}
.bg-dark .c-ico, .card-dark .c-ico {
  background:
    linear-gradient(150deg, rgba(34,163,74,.20), rgba(255,255,255,.03)) padding-box,
    linear-gradient(150deg, rgba(34,163,74,.55), rgba(255,255,255,.08)) border-box;
  box-shadow: var(--sh-inset-d);
}


.flow-step .fs-ico {
  width: 66px; height: 66px; border-radius: var(--r-xl);
  background: linear-gradient(160deg, #fff, var(--surface-2));
  border: 1px solid var(--line);
}
.flow-step .fs-ico::before {
  content: ''; position: absolute; inset: -5px; border-radius: var(--r-xl);
  background: conic-gradient(from 180deg, rgba(34,163,74,.35), rgba(56,189,248,.28), rgba(34,163,74,.35));
  opacity: 0; transition: opacity .35s var(--ease); z-index: -1; filter: blur(6px);
}
.flow-step .fs-ico { position: relative; z-index: 1; }
.flow-step:hover .fs-ico::before { opacity: 1; }
.bg-dark .flow-step .fs-ico { background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.03)); border-color: var(--dark-line); }


.flow { position: relative; }
.flow::before {
  content: ''; position: absolute; top: 33px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line-strong) 0 7px, transparent 7px 15px);
  z-index: 0;
}
.flow.in::before, .reveal.in .flow::before { animation: dashRun 22s linear infinite; }
@keyframes dashRun { to { background-position: 300px 0; } }
.bg-dark .flow::before { background: repeating-linear-gradient(90deg, rgba(255,255,255,.16) 0 7px, transparent 7px 15px); }
@media (max-width: 780px) { .flow::before { display: none; } }


.hero-dark::after, .bg-dark::after, .cta-band::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: .30; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}
.cta-band > * { position: relative; z-index: 1; }


.text-grad {
  background-size: 220% 100%;
  animation: gradShift 7s linear infinite;
}
@keyframes gradShift { to { background-position: 220% 50%; } }


.eyebrow::before { animation: livePulse 2.6s ease-in-out infinite; }


.submenu li { opacity: 0; transform: translateX(-6px); transition: opacity .22s var(--ease), transform .22s var(--ease); }
li.has-menu:hover > .submenu li, li.has-menu:focus-within > .submenu li { opacity: 1; transform: none; }
.submenu li:nth-child(1) { transition-delay: .02s; } .submenu li:nth-child(2) { transition-delay: .05s; }
.submenu li:nth-child(3) { transition-delay: .08s; } .submenu li:nth-child(4) { transition-delay: .11s; }
.submenu li:nth-child(5) { transition-delay: .14s; } .submenu li:nth-child(6) { transition-delay: .17s; }
.submenu li:nth-child(n+7) { transition-delay: .20s; }


.plan.hot::after {
  content: ''; position: absolute; inset: -2px; border-radius: inherit; z-index: -1;
  background: linear-gradient(135deg, var(--zen-green), var(--zen-sky), var(--zen-green));
  background-size: 250% 250%; filter: blur(14px); opacity: .30;
  animation: haloShift 6s linear infinite;
}
.plan { isolation: isolate; }


.shot { position: relative; overflow: hidden; }
.shot::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.35) 50%, transparent 58%);
  transform: translateX(-120%);
}
.reveal.in .shot::after { animation: shotSheen 1.5s var(--ease-out) .35s; }
@keyframes shotSheen { to { transform: translateX(120%); } }


.aw-av { box-shadow: 0 0 0 2px var(--surface), 0 2px 6px rgba(10,20,36,.12); }

@media (prefers-reduced-motion: reduce) {
  .text-grad, .eyebrow::before, .plan.hot::after, .flow::before,
  .reveal.in .shot::after { animation: none !important; }
}


::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--surface-2); }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 6px; border: 3px solid var(--surface-2); }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

::selection { background: rgba(34,163,74,.22); color: var(--ink); }


@media print {
  header.nav, .topbar, footer.site-footer, .modal-backdrop, #scroll-progress { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}


:root {
  

  

  

  

  

  

  
  --ease-halo-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-halo-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-halo-soft: cubic-bezier(0.215, 0.61, 0.355, 1);
  --dur-fast: .24s;
  --dur-base: .34s;
  --dur-slow: .4s;
}


h1, h2, .plan h3, .cta-band h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
}
h1 { font-weight: 500; }
h2 { font-weight: 500; }
h1 em, h2 em, .text-grad { font-style: normal; }


h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; }


.bg-soft { background: var(--surface-2); }
.bg-mesh {
  background:
    radial-gradient(1000px 500px at 12% -8%, rgba(34,163,74,.06), transparent 62%),
    radial-gradient(900px 460px at 92% 4%, rgba(56,189,248,.05), transparent 60%),
    var(--surface);
}
.bg-cream { background: var(--surface-2); }
.bg-cream-deep { background: var(--surface-3); }


.card { border-radius: var(--r-lg); padding: clamp(24px, 2.6vw, 34px); }
.card-soft { background: var(--surface-2); }
.plan { border-radius: var(--r-xl); }
.app-window { border-radius: var(--r-lg); }
.shot { border-radius: var(--r-lg); }


.btn { border-radius: var(--r-sm); }
.btn-lg { border-radius: var(--r-md); }


.reveal {
  transition:
    opacity .7s var(--ease-halo-out),
    transform .7s var(--ease-halo-out);
}
.btn, .card-hover, .pill, .link-arrow, .acc-q, .aw-row, .partner-tile {
  transition-timing-function: var(--ease-halo-out) !important;
}
.submenu { transition-duration: var(--dur-fast); transition-timing-function: var(--ease-halo-out); }
.mobile-menu { transition: transform var(--dur-slow) var(--ease-halo-out); }
.acc-a { transition: max-height var(--dur-slow) var(--ease-halo-soft); }


.line-reveal { display: block; overflow: hidden; }
.line-reveal > span {
  display: block;
  transform: translateY(110%);
  transition: transform .82s var(--ease-halo-out);
}
.reveal.in .line-reveal > span,
.line-reveal.in > span { transform: translateY(0); }
.line-reveal:nth-child(2) > span { transition-delay: .08s; }
.line-reveal:nth-child(3) > span { transition-delay: .16s; }


.shape-band {
  position: absolute; left: 0; right: 0; width: 100%;
  pointer-events: none; z-index: 0;
  height: clamp(180px, 26vw, 380px);
}
.shape-band svg { width: 100%; height: 100%; display: block; }
.shape-band path { transition: none; }
.shape-band.top    { top: -1px; }
.shape-band.bottom { bottom: -1px; }
section > .container { position: relative; z-index: 1; }


.stat .n, .aw-kpi .v { transition: transform var(--dur-base) var(--ease-halo-out); }


[data-parallax] { will-change: transform; }


.marquee-track { animation-timing-function: linear; }


.hs-form-wrap { margin-top: 4px; }
.hs-form-wrap .hs-form-frame { min-height: 120px; }

.hs-form-wrap fieldset { max-width: none !important; border: none; padding: 0; margin: 0; }
.hs-form-wrap .hs-form-field { margin-bottom: 14px; }
.hs-form-wrap label {
  display: block; font-family: var(--font-display);
  font-size: .8125rem; font-weight: 500; color: var(--ink-2); margin-bottom: 6px;
}
.hs-form-wrap .hs-field-desc { font-size: .75rem; color: var(--muted); margin-bottom: 6px; }
.hs-form-wrap input[type=text],
.hs-form-wrap input[type=email],
.hs-form-wrap input[type=tel],
.hs-form-wrap input[type=number],
.hs-form-wrap select,
.hs-form-wrap textarea {
  width: 100% !important; box-sizing: border-box;
  padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--surface); font-family: var(--font-body);
  font-size: .9375rem; color: var(--ink);
  transition: border-color .2s var(--ease-halo-out), box-shadow .2s var(--ease-halo-out);
}
.hs-form-wrap input:focus, .hs-form-wrap select:focus, .hs-form-wrap textarea:focus {
  outline: none; border-color: var(--zen-green); box-shadow: var(--ring);
}
.hs-form-wrap textarea { min-height: 88px; resize: vertical; }
.hs-form-wrap .hs-button,
.hs-form-wrap input[type=submit] {
  width: 100%; cursor: pointer;
  font-family: var(--font-display); font-size: .9375rem; font-weight: 700;
  padding: 14px 24px; border: none; border-radius: var(--r-sm); color: #fff;
  background: linear-gradient(135deg, var(--zen-green), var(--zen-green-600));
  box-shadow: var(--sh-brand);
  transition: transform .2s var(--ease-halo-out), box-shadow .25s var(--ease-halo-out);
}
.hs-form-wrap .hs-button:hover { transform: translateY(-2px); box-shadow: var(--sh-brand); }
.hs-form-wrap .hs-error-msg, .hs-form-wrap .hs-error-msgs label {
  color: var(--red-ink); font-size: .75rem; font-weight: 500; margin-top: 4px;
}
.hs-form-wrap ul.hs-error-msgs { list-style: none; padding: 0; }
.hs-form-wrap .legal-consent-container,
.hs-form-wrap .hs-richtext { font-size: .75rem; color: var(--muted); line-height: 1.55; }
.hs-form-wrap .hs-form-booleancheckbox-display { display: flex; gap: 8px; align-items: flex-start; }
.hs-form-wrap .submitted-message {
  padding: 18px; border-radius: var(--r-sm);
  background: var(--zen-green-50); border: 1px solid var(--zen-green-100);
  color: var(--zen-green-700); font-size: .9375rem; text-align: center;
}
.modal-alt { margin-top: 14px; font-size: .75rem; color: var(--muted); text-align: center; }
.modal-alt a { color: var(--zen-green-600); font-weight: 500; }


.modal { max-width: 520px; }

@media (prefers-reduced-motion: reduce) {
  .line-reveal > span { transform: none !important; }
}


.section.has-shape { overflow: hidden; }
.section.has-shape > .container { position: relative; z-index: 1; }


.text-grad {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-size: 100% 100%;
  animation: none;
}
.line-reveal > span { -webkit-box-decoration-break: clone; box-decoration-break: clone; }


:root {
  
}

body { line-height: 1.5; }
p { max-width: 68ch; }
.lead { line-height: 1.45; max-width: 60ch; }
.card p, .quote-card blockquote { line-height: 1.7; }
.sec-head { margin-bottom: clamp(48px, 5.5vw, 76px); }
.sec-head h2 { margin-bottom: 20px; line-height: 1.10; }
.sec-head.center .lead { margin-inline: auto; }
.eyebrow { margin-bottom: 26px; letter-spacing: .14em; }

.hero h1 { margin-bottom: 26px; line-height: 1.05; }
.hero .lead { margin-bottom: 38px; }
.hero-cta { gap: 14px; margin-bottom: 32px; }
.hero-tags { gap: 10px; margin-bottom: 32px; }

.card { gap: 14px; }
.card h3, .card h4 { margin-bottom: 4px; line-height: 1.3; }
.check-list { gap: 14px; }
.check-list li { line-height: 1.65; }
.grid { gap: clamp(18px, 2.2vw, 28px); }
.tl-item { padding: 28px 0; }
.tl-body p { line-height: 1.7; }
.flow-step p { line-height: 1.7; max-width: 34ch; margin-inline: auto; }
.plan { padding: clamp(30px, 3.2vw, 40px); }
.plan .check-list { gap: 13px; }
.cta-band { padding: clamp(56px, 7vw, 96px) clamp(24px, 4vw, 72px); }
.cta-band h2 { margin-bottom: 20px; line-height: 1.14; }
.prose { line-height: 1.82; }
.prose > * + * { margin-top: 1.3em; }
.stat .l { line-height: 1.5; max-width: 26ch; margin-inline: auto; }
.footer-grid { gap: clamp(34px, 4.5vw, 64px); }
footer .f-links { gap: 13px; }


.f-social a svg { display: block; }
.f-social a { transition: all .24s var(--ease-halo-out); }


:root {
  --ease-custom:       cubic-bezier(.215, .61, .355, 1);
  --ease-bounce-soft:  cubic-bezier(.4, 1.65, .3, 1);
  --dur-slowest: 1.4s;
  --dur-slower:  .9s;
  --stagger-word: 40ms;
}

@keyframes split-clip-reveal {
  0%  { transform: translateY(110%); clip-path: inset(-100% 0 110%); opacity: 0; }
  to  { transform: translateY(0);    clip-path: inset(-10%);          opacity: 1; }
}
@keyframes fade-reveal {
  0%  { transform: translateY(120%); opacity: 0; filter: blur(.2rem); }
  to  { transform: translateY(0);    opacity: 1; filter: blur(0); }
}


.sw { display: inline-block; overflow: hidden; vertical-align: bottom; }
.sw > span {
  display: inline-block;
  transform: translateY(110%);
  clip-path: inset(-100% 0 110%);
  opacity: 0;
  will-change: transform, clip-path, opacity;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
[data-lines].in .sw > span {
  animation: split-clip-reveal var(--dur-slowest) var(--ease-custom) both;
  animation-delay: calc(var(--wi, 0) * var(--stagger-word));
}


.line-reveal > span { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .sw > span { transform: none !important; clip-path: none !important; opacity: 1 !important; animation: none !important; }
}


.orbit-w {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  aspect-ratio: 1430 / 640;
  opacity: 0;
  transition: opacity .8s var(--ease-custom);
}
.orbit-w.orbit-ready { opacity: 1; }
.orbit-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.orbit-svg path { fill: none; stroke: var(--line-strong); stroke-width: 1.2; stroke-dasharray: 5 8; opacity: .75; }
.bg-dark .orbit-svg path { stroke: rgba(255,255,255,.18); }

.orbit-item {
  position: absolute; top: 0; left: 0;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--sh-md);
  transition: box-shadow .3s var(--ease-custom), border-color .3s;
  will-change: transform;
}
.orbit-item img { width: 28px; height: 28px; object-fit: contain; }
.orbit-item:hover { border-color: var(--zen-green-300); box-shadow: var(--sh-brand); }
.bg-dark .orbit-item { background: rgba(255,255,255,.07); border-color: var(--dark-line); backdrop-filter: blur(8px); }

.orbit-core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  text-align: center; z-index: 2;
}
.orbit-core img { width: 96px; margin-inline: auto; }
.orbit-core .oc-t {
  margin-top: 14px; font-family: var(--font-display);
  font-size: .8125rem; font-weight: 700; color: var(--muted);
}
.bg-dark .orbit-core .oc-t { color: var(--on-dark-muted); }
@media (max-width: 760px) { .orbit-w { display: none; } }


.carousel { position: relative; }
.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(84vw, 360px);
  gap: clamp(16px, 2vw, 26px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-block: 6px 22px;
  scrollbar-width: none;
  cursor: grab;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.arrastrando { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.carousel-track > * { scroll-snap-align: start; }
@media (min-width: 780px)  { .carousel-track { grid-auto-columns: calc((100% - 26px) / 2); } }
@media (min-width: 1100px) { .carousel-track { grid-auto-columns: calc((100% - 52px) / 3); } }

.carousel-nav { display: flex; align-items: center; gap: 10px; }
.carousel-nav button {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line-strong);
  color: var(--ink); cursor: pointer;
  transition: all .26s var(--ease-halo-out);
}
.carousel-nav button:hover:not(:disabled) {
  background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px);
}
.carousel-nav button:disabled { opacity: .3; cursor: default; }
.carousel-nav button svg { width: 18px; height: 18px; }
.bg-dark .carousel-nav button { background: rgba(255,255,255,.07); border-color: var(--dark-line); color: #fff; }
.bg-dark .carousel-nav button:hover:not(:disabled) { background: #fff; color: var(--ink); }

.carousel-dots { display: flex; gap: 7px; margin-left: auto; }
.carousel-dots button {
  width: 8px; height: 8px; border-radius: 50%; padding: 0;
  background: var(--line-strong); border: none; cursor: pointer;
  transition: all .26s var(--ease-halo-out);
}
.carousel-dots button.on { width: 26px; border-radius: var(--r-pill); background: var(--zen-green); }
.bg-dark .carousel-dots button { background: rgba(255,255,255,.24); }

.carousel-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 30px;
}


.plan-price { position: relative; }
.precio-velado { cursor: pointer; }
.precio-velado .amt,
.precio-velado .per { filter: blur(11px); user-select: none; transition: filter .45s var(--ease-custom); }
.precio-velado::after {
  content: "Ver precio";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: .8125rem; font-weight: 700;
  color: var(--zen-green-700);
  background: rgba(255,255,255,.35);
  border-radius: var(--r-sm);
  transition: color .3s var(--ease-custom);
}
.precio-velado:hover::after { color: var(--zen-green); }
.precio-velado:focus-visible { outline: 2px solid var(--zen-green); outline-offset: 4px; border-radius: var(--r-sm); }


.ev-bento { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr)); gap: 16px; }
.ev-card {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r-xl);
  transition: transform .3s var(--ease-bounce-soft), border-color .25s, box-shadow .25s;
}
.ev-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 163, 74, .45);
  box-shadow: var(--sh-xl);
}
.ev-photo { position: relative; height: 210px; flex: none; overflow: hidden; }
.ev-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.52) saturate(.72);
  transition: transform .65s var(--ease-custom), filter .45s;
}
.ev-card:hover .ev-photo img { transform: scale(1.07); filter: brightness(.64) saturate(.9); }
.ev-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7, 13, 27, .97) 0%, rgba(7, 13, 27, .3) 55%, transparent 100%);
}
.ev-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; z-index: 2; }
.ev-bar.g { background: linear-gradient(90deg, var(--zen-green), #50FFCC); }
.ev-bar.b { background: linear-gradient(90deg, var(--zen-sky), #90C4FF); }
.ev-bar.a { background: linear-gradient(90deg, var(--amber), #FFD79A); }
.ev-bar.d { background: linear-gradient(90deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .05)); }
.ev-meta-top {
  position: absolute; inset: 16px 18px auto; z-index: 2;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
}
.ev-flag { font-size: 30px; line-height: 1; filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .6)); }
.ev-estado {
  font-family: var(--font-display); font-size: .625rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--r-sm); backdrop-filter: blur(8px); white-space: nowrap;
}
.ev-estado.hot { background: rgba(245, 165, 36, .2);   color: #FBBF24; border: 1px solid rgba(245, 165, 36, .4); }
.ev-estado.ok  { background: rgba(34, 163, 74, .16);   color: var(--zen-green-300); border: 1px solid rgba(34, 163, 74, .4); }
.ev-estado.tbc { background: rgba(255, 255, 255, .1);  color: #C9D4E3; border: 1px solid rgba(255, 255, 255, .2); }
.ev-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.ev-body h3 { color: #fff; font-size: 1.125rem; line-height: 1.32; }
.ev-when { font-size: .8125rem; color: var(--zen-green-300); font-weight: 500; }
.ev-body p { color: var(--on-dark-muted); font-size: .9375rem; }
.ev-extra { font-size: .8125rem; color: var(--on-dark-soft); display: grid; gap: 5px; }
.ev-body .btn { margin-top: auto; align-self: flex-start; }


.ev-past { height: 100%; }
.ev-past .pc-img { aspect-ratio: 16 / 10; }
.ev-past .pc-body { gap: 12px; }


.text-grad .sw > span {
  background-image: linear-gradient(100deg, var(--zen-green) 0%, #3FD07A 40%, var(--zen-sky) 85%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}




.sec-domo {
  --domo: calc(26px + (1 - var(--p, 0)) * 86px);
  position: relative;
  z-index: 1;
  margin-top: -112px;
  padding-top: calc(var(--section-y) + 112px);
  border-radius: 50% 50% 0 0 / var(--domo) var(--domo) 0 0;
}
.hero + .sec-domo { margin-top: 0; padding-top: var(--section-y); }


[data-esc="crecer"] {
  scale: calc(0.78 + 0.22 * var(--p, 1));
  opacity: calc(0.35 + 0.65 * var(--p, 1));
  transform-origin: 50% 60%;
  will-change: scale, opacity;
}


[data-esc="deriva"] {
  scale: 1.12;
  translate: 0 calc(var(--q, 0) * -16px);
  will-change: translate;
}


[data-esc="satelite"] {
  translate: calc(var(--sat, 1) * (1 - var(--p, 1)) * -34px) calc((1 - var(--p, 1)) * 26px);
  opacity: var(--p, 1);
  will-change: translate, opacity;
}


[data-esc="cabecera"] {
  translate: 0 calc(var(--q, 0) * -20px);
  will-change: translate;
}


[data-esc="contra"] {
  translate: 0 calc(var(--q, 0) * 12px);
  will-change: translate;
}

@media (prefers-reduced-motion: reduce) {
  [data-esc="cabecera"], [data-esc="contra"] { translate: none !important; }
}


.reveal.rev-auto { transition-delay: var(--rd, 0s); }





@media (prefers-reduced-motion: reduce) {
  .sec-domo { --domo: 26px; }
  [data-esc="crecer"], [data-esc="deriva"],
  [data-esc="satelite"], .reveal.rev-fan {
    scale: 1; translate: 0; rotate: none; opacity: 1;
  }
  [data-esc="deriva"] { scale: 1.12; }
}


.reveal {
  transition: opacity .9s var(--ease-custom), transform .9s var(--ease-custom),
              rotate .95s var(--ease-custom), translate .95s var(--ease-custom);
}
.reveal:not(.reveal-left):not(.reveal-right):not(.reveal-scale):not(.rev-fan) {
  
  transform: translateY(35px);
}
.reveal.in:not(.reveal-left):not(.reveal-right):not(.reveal-scale):not(.rev-fan) {
  transform: none;
}




h1 { font-size: clamp(2.5rem, 1.35rem + 2.4vw, 3.5rem); letter-spacing: -.048em; }
h2 { font-size: clamp(2rem, 1.2rem + 1.55vw, 2.5rem); letter-spacing: -.04em; }
h3 { font-size: clamp(1.15rem, 1.05rem + .45vw, 1.5rem); }
h4 { font-size: clamp(1rem, .96rem + .22vw, 1.1875rem); }


body { font-size: clamp(1rem, .97rem + .14vw, 1.0625rem); }
p    { max-width: 68ch; }
.lead { font-size: clamp(1.0625rem, 1.02rem + .22vw, 1.1875rem); }


.stat .n        { font-size: clamp(1.75rem, 1.3rem + 1.5vw, 2.75rem); }
.plan-price .amt { font-size: clamp(1.75rem, 1.45rem + 1vw, 2.375rem); }
.cta-band h2    { font-size: clamp(1.625rem, 1.25rem + 1.35vw, 2.375rem); }


.sec-head { margin-bottom: clamp(36px, 4vw, 64px); }


[data-esc="crecer"] {
  scale: calc(0.55 + 0.45 * var(--p, 1));
  opacity: calc(0.25 + 0.75 * var(--p, 1));
}


.card p,
.check-list li,
.tl-body p,
.ev-body p,
.acc-a > div,
.prose .callout { font-size: 1rem; }

.card p        { line-height: 1.58; }
.check-list li { line-height: 1.56; }
.acc-a > div   { line-height: 1.6; max-width: 68ch; }



.car3d [data-carousel-track] { perspective: 1400px; perspective-origin: 50% 45%; }

.car3d [data-carousel-track] > * {
  transform: rotateY(calc(var(--d, 0) * -13deg))
             translateZ(calc(var(--dabs, 0) * -120px))
             scale(calc(1 - var(--dabs, 0) * 0.07));
  transform-origin: 50% 50%;
  transition: opacity .4s var(--ease-custom);
  opacity: calc(1 - var(--dabs, 0) * 0.16);
  will-change: transform, opacity;
}

@media (max-width: 900px) {
  .car3d [data-carousel-track] > * { transform: none; opacity: 1; }
}


.card, .partner-tile, .plan, .ev-card, .post-card {
  transition: transform .42s var(--ease-custom),
              box-shadow .42s var(--ease-custom),
              border-color .3s ease;
}
.card:hover, .partner-tile:hover, .post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--line-strong);
}


.c-ico, .fs-ico, .pt-ico {
  transition: transform .5s var(--ease-bounce-soft), background-color .3s ease;
}
.card:hover .c-ico, .card:hover .fs-ico, .partner-tile:hover .pt-ico {
  transform: translateY(-3px) scale(1.08);
}


.btn { transition: transform .2s var(--ease-custom), box-shadow .28s var(--ease-custom), background-color .22s ease; }
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }


.link-arrow { transition: color .24s ease; }
.link-arrow::after,
.link-arrow > svg { transition: transform .32s var(--ease-custom); }
.link-arrow:hover::after,
.link-arrow:hover > svg { transform: translateX(5px); }

@media (prefers-reduced-motion: reduce) {
  .car3d [data-carousel-track] > * { transform: none; filter: none; }
  .card:hover, .partner-tile:hover, .post-card:hover,
  .btn:hover, .btn:active { transform: none; }
}




@keyframes zen-fade-reveal {
  0%  { transform: translateY(120%); opacity: 0; filter: blur(.2rem) }
  to  { transform: translate(0, 0);  opacity: 1; filter: blur(0rem) }
}





[data-esc="crecer"].crecer-sangra {
  --sangre: calc(var(--p, 1) * 5vw);
  margin-inline: calc(var(--sangre) * -1);
  max-width: none;
}
@media (max-width: 900px) {
  [data-esc="crecer"].crecer-sangra { --sangre: 0px; margin-inline: 0; }
}


@keyframes zen-subir {
  0% { transform: translateY(70px); opacity: 0 }
  to { transform: translateY(0);   opacity: 1 }
}
.car3d [data-carousel-track] > * { animation: zen-subir .9s var(--ease-custom) both; }
.car3d [data-carousel-track] > *:nth-child(2) { animation-delay: .08s }
.car3d [data-carousel-track] > *:nth-child(3) { animation-delay: .16s }
.car3d [data-carousel-track] > *:nth-child(4) { animation-delay: .24s }
.car3d [data-carousel-track] > *:nth-child(n+5) { animation-delay: .3s }


.circulos {
  
  position: absolute; right: 6%; top: 4%;
  width: clamp(200px, 24vw, 380px); aspect-ratio: 1;
  pointer-events: none; z-index: 0;
}
.circulos .ci {
  position: absolute; border-radius: 999px;
  background:
    radial-gradient(circle at 30% 26%, rgba(56,189,248,.55), transparent 58%),
    radial-gradient(circle at 68% 74%, rgba(34,163,74,.5), transparent 62%);
  filter: blur(26px);
  will-change: transform, opacity;
}

.circulos .c1 { width:52%; height:52%; left:0;    top:0 }
.circulos .c2 { width:46%; height:46%; right:0;  top:8% }
.circulos .c3 { width:44%; height:44%; left:12%; bottom:6% }
.circulos .c4 { width:38%; height:38%; right:8%; bottom:0 }
.sec-domo { position: relative; overflow: hidden; }
.sec-domo > .container { position: relative; z-index: 1; }


.con-dispersos { position: relative; }
.dispersos { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.di {
  position: absolute; width: 46px; height: 46px; border-radius: var(--r-md);
  display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  animation: zen-flotar 7s ease-in-out infinite alternate;
  animation-delay: var(--r, 0s);
  opacity: .82;
}
.di img { width: 24px; height: 24px; object-fit: contain }
.bg-dark .di { background: rgba(255,255,255,.07); border-color: var(--dark-line); backdrop-filter: blur(8px) }
@keyframes zen-flotar {
  from { transform: translate3d(0, calc(var(--amp, 8px) * -1), 0) }
  to   { transform: translate3d(0, var(--amp, 8px), 0) }
}
@media (max-width: 900px) { .dispersos { display: none } }




@media (prefers-reduced-motion: reduce) {
  .car3d [data-carousel-track] > * { animation: none; opacity: 1; transform: none; filter: none }
  .reveal.rev-auto { filter: none }
  .di { animation: none }
  [data-esc="crecer"].crecer-sangra { --sangre: 0px; margin-inline: 0 }
}




.split:has(.grid) {
  
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 3.4vw, 52px);
  
  align-items: center;
}
.split:has(.grid) > *:first-child { padding-top: clamp(0px, 2vw, 28px) }

.split:has(> *:first-child .grid) { grid-template-columns: 1.2fr .8fr; }
.split:has(> *:first-child .grid) > *:first-child { padding-top: 0 }

.split:has(> *:last-child .grid) { grid-template-columns: .8fr 1.2fr; }


@media (max-width: 980px) {
  .split:has(.grid),
  .split:has(> *:first-child .grid),
  .split:has(> *:last-child .grid) {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .split:has(.grid) > *:first-child,
  .split:has(> *:first-child .grid) > *:first-child { padding-top: 0; }
}


@media (min-width: 900px) {
  .split:has(> *:first-child .grid) > *:last-child {
    position: sticky;
    top: 96px;
    align-self: start;
  }
}
@media (max-width: 900px) {
  .split:has(.grid) { grid-template-columns: 1fr; }
  .split:has(.grid) > *:first-child { padding-top: 0 }
}

.split .grid.g-2 .card p { max-width: 34ch }


:root {
  
  --dur-nav: .32s;
  --dur-carrusel: .6s;
}
.marquee-track { animation-duration: var(--dur-marquee, 38s) }
.nav .submenu, .nav .mega { transition-duration: var(--dur-nav) }
.car3d [data-carousel-track] > * {
  transition: opacity var(--dur-carrusel) var(--ease-custom);
}




[data-precio-oculto] .amt,
[data-precio-oculto] .per {
  filter: blur(11px);
  user-select: none;
  pointer-events: none;
}
[data-precio-oculto] { position: relative; }
[data-precio-oculto]::after {
  content: "Consultar precio";
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-body);
  font-size: .875rem; font-weight: 500; letter-spacing: -.01em;
  color: var(--zen-green-600);
}
.bg-dark [data-precio-oculto]::after { color: var(--zen-green-300); }

[data-precio-oculto] .amt, [data-precio-oculto] .per { speak: none; }


html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

[data-carousel-track], .marquee, .cmp-table-wrap { }



:root { --ciclo-pulso: 5.333s; }


@keyframes zen-pulso-giro {
  0%,   3%   { transform: rotate(0deg) }
  35%,  63%  { transform: rotate(180deg) }
  95%, 100%  { transform: rotate(360deg) }
}
.pulso-giro {
  animation: zen-pulso-giro var(--ciclo-pulso) var(--ease-custom) infinite;
}


@keyframes zen-pulso-latir {
  0%,   3%   { opacity: .55; scale: .97 }
  19%        { opacity: 1;   scale: 1.03 }
  35%,  63%  { opacity: .78; scale: 1 }
  79%        { opacity: 1;   scale: 1.03 }
  95%, 100%  { opacity: .55; scale: .97 }
}
.pulso-latir {
  animation: zen-pulso-latir var(--ciclo-pulso) var(--ease-custom) infinite;
}




@media (prefers-reduced-motion: reduce) {
  .pulso-giro, .pulso-latir, .circulos .ci { animation: none }
}


.hero .hero-grid > div,
.hero h1,
.hero .lead,
.hero .eyebrow,
.hero .hero-cta,
.hero .hero-meta {
  opacity: 1;
}
.hero .hero-grid > div.reveal:not(.in) { opacity: 1; transform: none; }






.hero .reveal:not(.title-phase-1):not(.title-phase-2),
.hero .rev-auto:not(.title-phase-1):not(.title-phase-2) {
  opacity: 1;
  filter: none;
}



@media (min-width: 1024px) {
  .hero-centro .hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: clamp(28px, 3.4vw, 48px);
  }
  .hero-centro .hero-grid > div { width: 100%; }

  
  .hero-centro .hero-grid > div:first-child {
    position: relative;
    text-align: center;
    max-width: 850px;
    margin-inline: auto;
  }
  .hero-centro .title-phase-1 { margin-bottom: 18px; }
  .hero-centro .title-phase-2 {
    max-width: 68ch;
    margin-inline: auto;
    margin-bottom: 26px;
  }
  .hero-centro .hero-cta,
  .hero-centro .hero-tags,
  .hero-centro .hero-meta { justify-content: center; }
  .hero-centro .eyebrow { margin-inline: auto; }

  
  .hero-centro .hero-visual,
  .hero-centro .hero-grid > div:last-child {
    max-width: 980px;
    margin-inline: auto;
  }
  .hero-centro .app-window,
  .hero-centro .shot { transform-origin: center center; }
}




@media (prefers-reduced-motion: reduce) {
  .hero-centro .title-phase-2 { opacity: 1 !important; transform: none !important; }

}



.hero .lead,
.hero-centro .title-phase-2 {
  font-size: 18px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 580px;
  margin: 16px auto 0 auto;
}
.hero-dark .lead,
.hero-dark .title-phase-2 { color: var(--on-dark-muted); }


.grid > .card, .grid > article, .plans > .plan, .ev-bento > .ev-card,
.cards-grid > .card-item {
  transform-style: flat;
  rotate: none;
}



.hero-titles-container { position: relative; width: 100%; }
.hero-phase-1-group { position: relative; z-index: 2; }
.hero-col .lead.title-phase-2 { position: relative; }

@media (min-width: 1024px) {
  .hero-centro .hero-titles-container {
    max-width: 820px;
    margin: 0 auto 32px auto;
    min-height: 160px;
    text-align: center;
  }

  
  .hero-2f .title-phase-2 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 20px);
    width: 100%;
    max-width: 580px;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.45;
    text-align: center;
  }
  .hero-2f.hero-light .title-phase-2 { color: var(--muted); }
  .hero-2f.hero-dark  .title-phase-2 { color: var(--on-dark-muted); }
}





@media (prefers-reduced-motion: reduce) {
  .hero-2f .title-phase-2 {
    position: relative; opacity: 1; transform: none;
    left: auto; pointer-events: auto;
  }
}



.cf-on {
  --cf-card: clamp(240px, 30vw, 420px);
  
  overflow-x: clip;
}

@media (max-width: 520px) {
  .cf-on { --cf-card: min(240px, 74vw); }
}

.cf-on [data-carousel-track] {
  display: block;              
  position: relative;
  height: calc(var(--cf-card) * 0.72);
  overflow: visible;
  grid-auto-flow: unset;
  grid-auto-columns: unset;
  scroll-snap-type: none;
  transform-style: preserve-3d;
  cursor: grab;
  outline: none;
  touch-action: pan-y;         
  padding: 0;
}
.cf-on.cf-drag [data-carousel-track] { cursor: grabbing; }
.cf-on [data-carousel-track]:focus-visible { outline: 2px solid var(--zen-green); outline-offset: 6px; }

.cf-on [data-carousel-track] > * {
  position: absolute;
  left: 50%;
  top: 0;
  width: var(--cf-card);
  height: 100%;
  margin: 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.cf-on .ev-past .pc-img { aspect-ratio: auto; height: 62%; }
.cf-on .ev-past .pc-body { padding: 14px 16px 16px; }
.cf-on .ev-past .pc-body ul,
.cf-on .ev-past .pc-body .pc-meta { display: none; }
.cf-on .ev-past h3 { font-size: 1.0625rem; }
.cf-on .ev-past p { font-size: .875rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

@media (max-width: 900px) {
  .cf-on { --cf-card: clamp(200px, 62vw, 300px); }
  .cf-on [data-carousel-track] { height: calc(var(--cf-card) * 0.95); }
}

@media (prefers-reduced-motion: reduce) {
  .cf-on [data-carousel-track] { display: grid; height: auto; perspective: none; }
  .cf-on [data-carousel-track] > * { position: relative; left: auto; width: auto; height: auto; transform: none !important; opacity: 1 !important; }
}



[data-horiz] { overflow: hidden; }
[data-horiz-fila] {
  display: flex;
  gap: clamp(16px, 2vw, 26px);
  align-items: stretch;
}
[data-horiz-fila] > * { flex: 0 0 auto; width: clamp(280px, 26vw, 380px); }


[data-horiz]:not(.horiz-on) [data-horiz-fila] {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}
[data-horiz]:not(.horiz-on) [data-horiz-fila] > * { scroll-snap-align: start; }

.horiz-on { display: flex; align-items: center; min-height: 100vh; }
.horiz-on [data-horiz-fila] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .horiz-on { min-height: 0; }
  .horiz-on [data-horiz-fila] { transform: none !important; overflow-x: auto; }
}




[data-precio-oculto] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  text-align: center;
}
[data-precio-oculto] .amt,
[data-precio-oculto] .per {
  filter: blur(14px);
  opacity: .3;
  user-select: none;
  pointer-events: none;
}
[data-precio-oculto]::after {
  content: "Consultar precio";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--zen-green-600);
}
.bg-dark [data-precio-oculto]::after { color: var(--zen-green-300); }


.ev-capa {
  position: fixed; inset: 0; z-index: 900;
  display: grid; place-items: center;
  padding: clamp(16px, 4vw, 48px);
  opacity: 0; visibility: hidden;
  transition: opacity .34s var(--ease-custom), visibility .34s;
}
.ev-capa.abierta { opacity: 1; visibility: visible; }
.ev-capa-fondo { position: absolute; inset: 0; background: rgba(6,12,22,.72); backdrop-filter: blur(6px); }
.ev-capa-caja {
  position: relative; z-index: 1;
  width: min(720px, 100%);
  max-height: 88vh; overflow-y: auto;
  background: var(--surface); border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  transform: translateY(18px) scale(.97);
  transition: transform .4s var(--ease-custom);
}
.ev-capa.abierta .ev-capa-caja { transform: none; }
.ev-capa-x {
  position: absolute; top: 12px; right: 14px; z-index: 2;
  width: 38px; height: 38px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.9);
  font-size: 1.5rem; line-height: 1; color: var(--ink); cursor: pointer;
}
.ev-capa-x:hover { background: #fff; border-color: var(--line-strong); }


.ev-ficha { border: 0; box-shadow: none; }
.ev-ficha .pc-img { aspect-ratio: 16/9; height: auto; }
.ev-ficha .pc-img img { transform: none !important; scale: 1 !important; }
.ev-ficha .pc-body { padding: 22px 26px 28px; }
.ev-ficha .pc-body ul,
.ev-ficha .pc-body .pc-meta { display: block; }
.ev-ficha .pc-body p {
  display: block; -webkit-line-clamp: unset; overflow: visible;
  font-size: 1rem; line-height: 1.6;
}
.ev-ficha h3 { font-size: 1.375rem; margin-bottom: 6px; }

@media (prefers-reduced-motion: reduce) {
  .ev-capa, .ev-capa-caja { transition: none; }
}



@supports (animation-timeline: view()) {
  @media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {

    
    @keyframes zen-hundir {
      to { transform: scale(.93) translateY(-40px); opacity: .45; filter: blur(2px); }
    }
    .section:not(.hero):not(.sec-domo) {
      animation: zen-hundir linear both;
      animation-timeline: view();
      animation-range: exit -10% exit 90%;
      transform-origin: 50% 0%;
    }

    
    @keyframes zen-emerger {
      from { transform: scale(.96) translateY(48px); opacity: .55; }
      to   { transform: none; opacity: 1; }
    }
    .section.bg-soft, .section.bg-mesh, .sec-domo {
      animation: zen-emerger linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 85%;
      transform-origin: 50% 100%;
    }

    
    @keyframes zen-domo-plano {
      from { border-radius: 50% 50% 0 0 / 112px 112px 0 0 }
      to   { border-radius: 50% 50% 0 0 / 26px 26px 0 0 }
    }
    .sec-domo {
      animation: zen-emerger linear both, zen-domo-plano linear both;
      animation-timeline: view(), view();
      animation-range: entry 0% entry 85%, entry 0% cover 30%;
    }

    
    @keyframes zen-derivar { from { translate: 0 22px } to { translate: 0 -22px } }
    .pc-img img, .ev-photo img, .shot img {
      animation: zen-derivar linear both;
      animation-timeline: view();
      animation-range: cover 0% cover 100%;
      scale: 1.12;
    }

    
    @keyframes zen-crecer-vista {
      from { scale: .84 }
      to   { scale: 1 }
    }
    .app-window:not(.hero .app-window) {
      animation: zen-crecer-vista linear both;
      animation-timeline: view();
      animation-range: entry 10% cover 45%;
    }

    
    @keyframes zen-progreso { from { transform: scaleX(0) } to { transform: scaleX(1) } }
    #scroll-progress {
      width: 100% !important;
      transform-origin: 0 50%;
      animation: zen-progreso linear both;
      animation-timeline: scroll(root block);
    }
  }
}


@supports (animation-timeline: view()) {
  @media (min-width: 1024px) {
    [data-esc="deriva"] { translate: none !important; }
  }
}




.stat .n, .plan-price .amt, [data-count] { letter-spacing: -.045em; }

h1 em, h2 em { letter-spacing: inherit; }


.eyebrow, .logo-strip-label, .aw-chip { letter-spacing: .07em; }


.card, .plan, .partner-tile, .post-card, .ev-card, .shot, .app-window {
  border-width: 1px;
}



.c-ico,
.c-ico.sky,
.c-ico.navy,
.c-ico.amber,
.c-ico.violet {
  background:
    linear-gradient(150deg, rgba(34,163,74,.13), rgba(34,163,74,.035)) padding-box,
    linear-gradient(150deg, rgba(34,163,74,.42), rgba(34,163,74,.08)) border-box;
  border: 1px solid transparent;
  box-shadow: var(--sh-inset);
  color: var(--zen-green-600);
}
.c-ico .ico { color: var(--zen-green-600); }


.card-hover:hover .c-ico,
.card:hover .c-ico {
  background:
    linear-gradient(150deg, rgba(34,163,74,.2), rgba(34,163,74,.06)) padding-box,
    linear-gradient(150deg, rgba(34,163,74,.6), rgba(34,163,74,.14)) border-box;
  transform: translateY(-3px) scale(1.06);
}

.bg-dark .c-ico,
.bg-dark .c-ico.sky,
.bg-dark .c-ico.navy,
.bg-dark .c-ico.amber {
  background:
    linear-gradient(150deg, rgba(34,163,74,.2), rgba(34,163,74,.06)) padding-box,
    linear-gradient(150deg, rgba(111,208,140,.42), rgba(111,208,140,.10)) border-box;
  box-shadow: var(--sh-inset-d);
  color: var(--zen-green-300);
}
.bg-dark .c-ico .ico { color: var(--zen-green-300); }


.pill-sky,
.pill-navy,
.pill-violet {
  color: var(--ink-2);
  background: var(--surface-3);
  border-color: var(--line);
}


.aw-chip.chip-amber { color: var(--amber-ink); background: var(--amber-soft); border-color: var(--amber-bg); }
.aw-chip.chip-red   { color: var(--red-ink);   background: var(--red-soft); border-color: var(--red-bg); }


.sw {
  padding-bottom: .18em;
  margin-bottom: -.18em;
  padding-top: .08em;
  margin-top: -.08em;
}


.text-grad,
.text-grad .sw > span {
  padding-bottom: .12em;
  margin-bottom: -.12em;
}



.aurora3d {
  position: absolute;
  top: 46%; left: 50%;
  width: clamp(460px, 52vw, 880px);
  aspect-ratio: 1;
  translate: -50% -50%;
  pointer-events: none;
  z-index: 0;
  perspective: 1400px;
  perspective-origin: 50% 42%;
}
.hero-centro > .container { position: relative; z-index: 1; }

.aurora3d-in {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}


.aurora3d .luz {
  position: absolute; inset: 8%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 28%, rgba(56,189,248,.58), transparent 56%),
    radial-gradient(circle at 70% 60%, rgba(34,163,74,.52), transparent 58%),
    radial-gradient(circle at 48% 86%, rgba(111,208,140,.40), transparent 56%);
  filter: blur(30px);
}


.aurora3d .halo {
  position: absolute; inset: 14%;
  border-radius: 999px;
  border: 1.5px solid rgba(111,208,140,.42);
  box-shadow: inset 0 0 70px rgba(56,189,248,.22), 0 0 40px rgba(34,163,74,.14);
  transform: rotateX(72deg);
}
.aurora3d .halo.h2 { inset: 26%; transform: rotateX(72deg) rotateZ(48deg); opacity: .75 }
.aurora3d .halo.h3 { inset: 4%; transform: rotateX(72deg) rotateZ(-40deg); opacity: .5 }


@media (min-width: 1024px) {
  .aurora3d-in {
    transform:
      rotateY(calc(-34deg + var(--p, .5) * 68deg))
      rotateX(calc(6deg - var(--p, .5) * 12deg))
      scale(calc(.72 + var(--p, .5) * .48));
    opacity: calc(.22 + var(--p, .5) * .78);
  }
}


@supports not (animation-timeline: view()) {
  .aurora3d-in { transform: rotateY(-8deg) scale(.95); opacity: .7 }
}

@media (max-width: 1023px) { .aurora3d { display: none } }
@media (prefers-reduced-motion: reduce) {
  .aurora3d-in { animation: none; transform: none; opacity: .5 }
}



.arriba {
  position: fixed; right: 22px; bottom: 22px; z-index: 300;
  width: 46px; height: 46px; border-radius: var(--r-pill);
  display: grid; place-items: center;
  border: 1px solid var(--line);
  background: var(--surface); color: var(--ink);
  box-shadow: var(--sh-md); cursor: pointer;
  opacity: 0; visibility: hidden; translate: 0 12px;
  transition: opacity .3s var(--ease-custom), translate .3s var(--ease-custom), visibility .3s;
}
.arriba.visible { opacity: 1; visibility: visible; translate: 0; }
.arriba:hover { background: var(--zen-green-600); border-color: var(--zen-green-600); color: #fff; }
.arriba svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2;
              stroke-linecap: round; stroke-linejoin: round; }


.esqueleto { display: grid; gap: 14px; padding: 4px 0; }
.esqueleto span { display: block; border-radius: var(--r-xs); background: var(--surface-3); }
.esqueleto .es-l   { height: 11px; width: 34%; }
.esqueleto .es-c   { height: 44px; }
.esqueleto .es-btn { height: 46px; border-radius: var(--r-pill); background: var(--zen-green-50); }
.esqueleto span { animation: es-latir 1.4s ease-in-out infinite; }
.esqueleto span:nth-child(even) { animation-delay: .18s }
@keyframes es-latir { 0%,100% { opacity: .55 } 50% { opacity: 1 } }
@media (prefers-reduced-motion: reduce) { .esqueleto span { animation: none } }


body:not(.es-home) .aurora3d { opacity: .55; }
body:not(.es-home) .aurora3d .luz { filter: blur(40px); }



.hero-claro {
  background: linear-gradient(168deg, var(--surface) 0%, var(--zen-green-50) 46%, #E3F3EA 100%);
  position: relative;
  overflow: hidden;
}
.hero-claro h1 { color: var(--ink); }
.hero-claro .lead { color: var(--body); }
.hero-claro .eyebrow {
  color: var(--zen-green-700);
  background: rgba(34,163,74,.10);
  border-color: rgba(34,163,74,.24);
}
.hero-claro .hero-meta { color: var(--muted); }
.hero-claro .hero-meta .dot { background: var(--zen-green); }


.hero-claro .anillo-esm {
  position: absolute; left: 50%; top: 42%;
  width: clamp(520px, 58vw, 940px); aspect-ratio: 1;
  translate: -50% -50%;
  z-index: 0; pointer-events: none;
}
.hero-claro .anillo-esm span {
  position: absolute; inset: 0; border-radius: var(--r-pill);
  background: linear-gradient(158deg, rgba(255,255,255,.96), rgba(214,242,223,.60) 52%, rgba(255,255,255,.88));
  -webkit-mask: radial-gradient(circle, transparent 38%, #000 40%, #000 68%, transparent 70%);
  mask: radial-gradient(circle, transparent 38%, #000 40%, #000 68%, transparent 70%);
  box-shadow: inset 0 0 60px rgba(34,163,74,.10);
}
.hero-claro .anillo-esm .br {
  background:
    radial-gradient(ellipse 42% 15% at 38% 18%, rgba(255,255,255,1), transparent 60%),
    radial-gradient(ellipse 24% 9% at 70% 80%, rgba(255,255,255,.75), transparent 62%);
  filter: blur(5px);
  box-shadow: none;
}


@media (min-width: 1024px) {
  .hero-claro h1 { font-size: clamp(2.6rem, 1.9rem + 2.6vw, 4rem); letter-spacing: -.052em; }
}


@media (max-width: 900px) { .hero-claro .anillo-esm { display: none } }
@media (prefers-reduced-motion: reduce) { .hero-claro .anillo-esm { opacity: .7 } }




@media (min-width: 1024px) {
  .hero-2f .title-phase-2 {
    font-size: clamp(1.5rem, 1.1rem + 1.3vw, 2.125rem);
    line-height: 1.24;
    letter-spacing: -.03em;
    font-weight: 500;
    font-family: var(--font-display);
    color: var(--on-dark);
    max-width: 22ch;
  }
  .hero-dark.hero-2f .title-phase-2 { color: #fff; }
}



.hero .capas {
  position: absolute; left: 50%; top: 48%;
  width: min(1180px, 92vw); height: min(680px, 70vh);
  translate: -50% -50%;
  perspective: 1500px; perspective-origin: 50% 38%;
  z-index: 0; pointer-events: none;
}
.hero .capas > span {
  position: absolute; left: 50%; top: 50%;
  width: 620px; height: 360px;
  margin: -180px 0 0 -310px;
  border-radius: var(--r-xl);
  border: 1px solid rgba(111,208,140,.22);
  background: linear-gradient(155deg, rgba(34,163,74,.10), rgba(56,189,248,.05) 60%, transparent);
  box-shadow: 0 30px 80px rgba(3,10,22,.55);
  backdrop-filter: blur(2px);
}


.hero .capas .c1 { transform: rotateX(58deg) rotateZ(-16deg) translateZ(120px); opacity: .90 }
.hero .capas .c2 { transform: rotateX(58deg) rotateZ(-16deg) translateZ(40px);  opacity: .62 }
.hero .capas .c3 { transform: rotateX(58deg) rotateZ(-16deg) translateZ(-40px); opacity: .40 }
.hero .capas .c4 { transform: rotateX(58deg) rotateZ(-16deg) translateZ(-120px); opacity: .24 }


.hero .capas .cp-rejilla {
  width: 1100px; height: 620px; margin: -310px 0 0 -550px;
  border: 0; background:
    repeating-linear-gradient(90deg, rgba(111,208,140,.10) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg,  rgba(111,208,140,.10) 0 1px, transparent 1px 64px);
  transform: rotateX(58deg) rotateZ(-16deg) translateZ(-190px);
  -webkit-mask: radial-gradient(ellipse 60% 60% at 50% 50%, #000, transparent 78%);
  mask: radial-gradient(ellipse 60% 60% at 50% 50%, #000, transparent 78%);
  box-shadow: none; backdrop-filter: none; opacity: .5;
}


@media (min-width: 1024px) {
  .hero .capas {
    perspective-origin: 50% calc(38% - var(--p, .5) * 10%);
    opacity: calc(.45 + var(--p, .5) * .55);
  }
  .hero .capas > span { rotate: z calc(var(--p, .5) * 4deg - 2deg); }
}
@media (max-width: 1023px) { .hero .capas { display: none } }
@media (prefers-reduced-motion: reduce) {
  .hero .capas { opacity: .6 }
  .hero .capas > span { rotate: none }
}




.hero-meta .dot { display: none; }
.hero-meta > span + span::before {
  content: '·';
  margin-inline-end: 22px;
  opacity: .4;
}


.hero-dark .eyebrow,
.hero-claro .eyebrow,
.bg-dark .eyebrow { color: var(--zen-green-300); }
.hero-dark .eyebrow::before,
.hero-dark .eyebrow::after { box-shadow: none; }




.hero .capas {
  -webkit-mask: radial-gradient(ellipse 46% 42% at 50% 46%, transparent 30%, #000 76%);
  mask: radial-gradient(ellipse 46% 42% at 50% 46%, transparent 30%, #000 76%);
}
.hero .capas > span { opacity: .55 }
.hero .capas .c1 { opacity: .58 } .hero .capas .c2 { opacity: .40 }
.hero .capas .c3 { opacity: .26 } .hero .capas .c4 { opacity: .16 }


.hero-dark .lead,
.hero-dark .title-phase-2 {
  color: #C7D4E6;
  text-shadow: 0 1px 24px rgba(4, 10, 20, .85);
}
@media (min-width: 1024px) {
  .hero-dark.hero-2f .title-phase-2 { color: #E8F0FA; }
}


.eyebrow {
  text-transform: none;
  letter-spacing: 0;
  font-size: .8125rem;
  font-weight: 500;
  font-family: var(--font-body);
  gap: 10px;
}
.eyebrow::before, .eyebrow::after { width: 18px; opacity: .45; }


.marca-tit {
  
  
  height: var(--tit-h, .88em);
  
  max-height: var(--tit-max, none);
  
  width: auto;
  display: inline-block;
  
  vertical-align: baseline;
  
  
  transform: translateY(var(--tit-dy, .41em));
  margin-inline: .14em;
}


.brand-tag-wm {
  display: inline-flex; flex-direction: column;
  align-items: flex-start; gap: 7px;
}
.hero-centro .brand-tag-wm { align-items: center; }
.marca-wm { height: 28px; width: auto; display: block; }

.brand-tag-sub {
  font-size: .75rem; letter-spacing: .06em; text-transform: uppercase;
  color: #8A9AB2;
  padding: 0; border: 0;
}


.hero-titles-container { min-height: 0 !important; }
.hero .lead,
.hero-centro .title-phase-2,
.hero-2f .title-phase-2 {
  position: static !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
  margin: 0 auto 30px auto !important;
  max-width: 62ch;
}
@media (min-width: 1024px) {
  .hero-centro .hero-titles-container { min-height: 0; margin-bottom: 20px; }
  .hero .lead {
    font-size: clamp(1.125rem, 1rem + .42vw, 1.375rem);
    line-height: 1.42;
  }
}


.eyebrow::before, .eyebrow::after { content: none !important; }
.eyebrow {
  gap: 0;
  font-size: .9375rem;
  font-weight: 500;
}
@media (min-width: 1024px) { .eyebrow { font-size: 1rem; } }




.card, .grid > article, .cards-grid > .card-item {
  transition:
    transform .42s var(--ease-out),
    box-shadow .42s var(--ease-out),
    border-color .3s ease,
    background-color .3s ease;
}
.card:hover, .grid > article:hover, .cards-grid > .card-item:hover {
  border-color: var(--zen-green-300);
}
.bg-dark .card:hover, .bg-dark .grid > article:hover {
  border-color: rgba(111, 208, 140, .42);
  background-color: rgba(34, 163, 74, .06);
}


.card .ico, .card .card-ico, .grid > article .ico {
  transition: transform .42s var(--ease-out), color .3s ease;
}
.card:hover .ico, .card:hover .card-ico, .grid > article:hover .ico {
  transform: scale(1.12) rotate(-4deg);
}


.card a::after, .card-link::after, .link-arrow::after {
  transition: transform .34s var(--ease-out);
}
.card:hover a::after, .card-link:hover::after, .link-arrow:hover::after {
  transform: translateX(5px);
}


.link-sub, .prose a, .footer-col a {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size .34s var(--ease-out), color .2s ease;
}
.link-sub:hover, .prose a:hover, .footer-col a:hover { background-size: 100% 1px; }


.btn { transition: transform .2s var(--ease-out), box-shadow .2s ease, background-color .2s ease, border-color .2s ease; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(27, 139, 62, .34); }
.btn-outline-light:hover, .btn-ghost:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }


.logo-strip img, .marquee img {
  filter: grayscale(1);
  opacity: .62;
  transition: filter .34s ease, opacity .34s ease, transform .34s var(--ease-out);
}
.logo-strip img:hover, .marquee img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.06);
}


.tbl tbody tr, .list-row {
  transition: background-color .24s ease;
}
.tbl tbody tr:hover, .list-row:hover { background-color: var(--zen-green-50); }
.bg-dark .tbl tbody tr:hover { background-color: rgba(34, 163, 74, .08); }

@media (prefers-reduced-motion: reduce) {
  .card:hover, .grid > article:hover, .btn:hover,
  .logo-strip img:hover, .marquee img:hover { transform: none; }
}


.tira-partners {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 10px 22px;
  margin-bottom: 26px;
}
.tira-label {
  font-size: .8125rem; color: var(--muted);
  letter-spacing: .01em; white-space: nowrap;
}
.hero-dark .tira-label { color: var(--on-dark-soft); }
.tira-logos {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 10px 26px; list-style: none; margin: 0; padding: 0;
}
.tira-logos li { display: flex; }
.tira-logos img {
  height: 22px; width: auto; display: block;
  object-fit: contain;
  
  opacity: .82;
  transition: opacity .34s ease, transform .34s var(--ease-out);
}

.hero-dark .tira-logos img { opacity: .82; }

.tira-logos img:hover {
  opacity: 1;
  transform: translateY(calc(var(--tira-dy, 0px) - 2px)) scale(1.05);
}
@media (max-width: 640px) { .tira-partners { gap: 8px 16px; } }
@media (prefers-reduced-motion: reduce) { .tira-logos img:hover { transform: none; } }


@media (max-width: 900px) {
  .btn, .btn-lg, .tb-cta {
    min-height: 44px;
    padding-block: 11px;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .brand { min-height: 44px; }
  .burger, .tb-close, .modal-close, .mm-toggle {
    min-width: 44px; min-height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
  }
  
  .footer-col a, .fb-links a, .mm-sub a, .link-arrow, .link-sub {
    display: inline-flex; align-items: center;
    min-height: 44px;
  }
  .footer-col a, .mm-sub a { width: 100%; }
  
  .hero-meta, .pill, .tira-partners { min-height: 0; }
}


.sr-only:focus {
  position: fixed; top: 12px; left: 12px; z-index: 1000;
  width: auto; height: auto; min-height: 44px;
  margin: 0; padding: 12px 18px;
  clip: auto; clip-path: none; overflow: visible; white-space: nowrap;
  background: var(--zen-green-700); color: var(--surface);
  border-radius: var(--r-sm); font-weight: 700;
}


@media (min-width: 900px) {
  .cards-grid.g-3 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
  }
  .cards-grid.g-3 > * {
    flex: 0 1 calc((100% - 2 * var(--gap-rejilla, 28px)) / 3);
    max-width: calc((100% - 2 * var(--gap-rejilla, 28px)) / 3);
    min-width: 280px;
  }
}


.hs-slot { display: none; }
.hs-slot.on { display: block; }



.sw-media {
  overflow: visible;
  padding-bottom: .5em; margin-bottom: -.5em;
  padding-top: 0; margin-top: 0;
  vertical-align: baseline;
}
.sw-media > span { display: inline-flex; align-items: baseline; }

.sw-media > span {
  transform: translateY(30%);
  clip-path: none;
  opacity: 0;
}
[data-lines].in .sw-media > span {
  animation: media-reveal var(--dur-slowest) var(--ease-custom) both;
  animation-delay: calc(var(--wi, 0) * var(--stagger-word));
}
@keyframes media-reveal {
  0%  { transform: translateY(30%); opacity: 0; }
  to  { transform: translateY(0);   opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .sw-media > span { transform: none !important; opacity: 1 !important; animation: none !important; }
}


.brand-clobi {
  display: inline-flex; align-items: baseline; gap: 8px;
  text-decoration: none;
}
.brand-clobi span {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700; letter-spacing: -.04em;
  color: #0A3E8C;
}
.brand-clobi small {
  font-size: .6875rem; font-weight: 500; letter-spacing: .04em;
  color: var(--muted); text-transform: uppercase;
}
.bg-dark .brand-clobi span, .hero-dark .brand-clobi span { color: #7FB2FF; }


body.sitio-clobi {
  --zen-green: #0A3E8C;
  --zen-green-600: #0A3E8C;
  --zen-green-700: #072C64;
  --zen-green-300: #7FB2FF;
  --zen-green-50: #EEF4FF;
  --zen-green-100: #D6E4FF;
}
body.sitio-clobi .btn-primary {
  background: linear-gradient(135deg, #0A3E8C, #1257BE);
  border-color: #0A3E8C;
}
body.sitio-clobi .btn-primary:hover { box-shadow: 0 10px 26px rgba(10, 62, 140, .34); }
body.sitio-clobi .text-grad {
  background: linear-gradient(100deg, #1257BE, #7FB2FF);
  -webkit-background-clip: text; background-clip: text;
}


.tira-con-titulo { flex-direction: column; gap: 14px; }
.tira-con-titulo .tira-label {
  font-family: var(--font-display);
  font-size: clamp(.9375rem, .88rem + .2vw, 1.0625rem);
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink-2);
}
.hero-dark .tira-con-titulo .tira-label { color: #C7D4E6; }



.hero-dark .tira-logos img { opacity: .82; }
.hero-dark .tira-logos img:hover { opacity: 1; }
.tira-logos img { height: 24px; }
@media (max-width: 640px) { .tira-logos img { height: 19px; } }



.tira-logos img {
  height: calc(var(--tira-h, 24px) * var(--k, 1));
  width: auto;
  transform: translateY(var(--tira-dy, 0px));
  object-fit: contain;
}
@media (max-width: 640px) {
  .tira-logos img { height: calc(var(--tira-h, 24px) * var(--k, 1) * .79); }
}

.tira-con-titulo .tira-logos { gap: 8px; }
.tira-logos li {
  padding: 9px 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, .07);
  background: rgba(255, 255, 255, .035);
  transition: background-color .3s ease, border-color .3s ease, transform .3s var(--ease-out);
}
.tira-logos li:hover {
  background: rgba(255, 255, 255, .085);
  border-color: rgba(111, 208, 140, .32);
  transform: translateY(-2px);
}
.hero-light .tira-logos li, .hero-claro .tira-logos li {
  border-color: var(--line);
  background: var(--surface-2);
}
@media (prefers-reduced-motion: reduce) { .tira-logos li:hover { transform: none } }


.topbar { display: grid; grid-template-columns: 1fr auto; align-items: center; }
.tb-slide {
  grid-area: 1 / 1 / 2 / 3;
  opacity: 0; pointer-events: none;
  transition: opacity .5s var(--ease-out);
}

.tb-slide:first-of-type { opacity: 1; pointer-events: auto; }

.topbar.tb-rota .tb-slide { opacity: 0; pointer-events: none; }
.topbar.tb-rota .tb-slide.on { opacity: 1; pointer-events: auto; }
.tb-close { grid-area: 1 / 2 / 2 / 3; position: relative; z-index: 2; justify-self: end; }
@media (prefers-reduced-motion: reduce) { .tb-slide { transition: none } }


.sol-cab { display: flex; align-items: center; gap: 10px; }
.sol-ico {
  width: 44px; height: 44px; flex: none;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line);
  font-size: 1.25rem;
}
.sol-ico img { width: 30px; height: 30px; object-fit: contain; display: block; }
.sol-txt { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sol-n {
  font-family: var(--font-display);
  font-size: 1.0625rem; font-weight: 700;
  color: var(--ink); letter-spacing: -.02em;
  line-height: 1.2;
}
.sol-c {
  font-size: .75rem; font-weight: 500;
  color: var(--zen-green-600);
  line-height: 1.3;
}



@media (prefers-reduced-motion: no-preference) {
  .hero .tira-partners,
  .hero .lead,
  .hero .hero-cta,
  .hero-visual-col {
    animation: hero-entra .9s var(--ease-custom) both;
  }
  .hero .tira-partners { animation-delay: .05s; }
  .hero .lead          { animation-delay: .45s; }
  .hero .hero-cta      { animation-delay: .58s; }
  .hero-visual-col     { animation-delay: .70s; }

  
  .hero .tira-logos li { animation: hero-entra .7s var(--ease-custom) both; }
  .hero .tira-logos li:nth-child(1) { animation-delay: .10s }
  .hero .tira-logos li:nth-child(2) { animation-delay: .16s }
  .hero .tira-logos li:nth-child(3) { animation-delay: .22s }
  .hero .tira-logos li:nth-child(4) { animation-delay: .28s }
  .hero .tira-logos li:nth-child(5) { animation-delay: .34s }
}

@keyframes hero-entra {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}


.bg-dark .sol-ico img,
.card-dark .sol-ico img,
.bg-dark .c-ico img {
  filter: brightness(0) invert(1);
  opacity: .92;
}

.sol-ico { background: var(--surface-2); border-color: var(--line); }
.bg-dark .sol-ico, .card-dark .sol-ico {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .14);
}


.hero .hero3d {
  position: absolute;
  
  left: 88%;
  top: 19%;
  
  width: min(330px, 26vw);
  translate: -50% -50%;
  z-index: 0; pointer-events: none;
  opacity: .40;
  
  mix-blend-mode: screen;
}
.hero .hero3d img { width: 100%; height: auto; display: block; }
.hero .hero-phase-1-group, .hero .lead, .hero .hero-cta, .hero .hero-meta { position: relative; z-index: 2; }

@media (min-width: 1024px) {
  .hero .hero3d {
    width: min(380px, 27vw);
    
    opacity: calc(.30 + var(--p, .5) * .16);
  }
  .hero .hero3d img {
    scale: calc(.94 + var(--p, .5) * .14);
    translate: 0 calc(var(--p, .5) * 40px);
    
    transform: perspective(760px) rotateY(calc(-14deg + var(--p, .5) * 28deg));
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .hero .hero3d { width: min(252px, 23vw); top: 13%; }
}

@media (max-width: 1023px) { .hero .hero3d { display: none } }
@media (prefers-reduced-motion: reduce) {
  .hero .hero3d { rotate: none; scale: 1; }
  .hero .hero3d img { animation: none !important; }
}


.ev-galeria {
  display: flex; gap: 8px; height: auto !important;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; scrollbar-width: none;
  border-radius: var(--r-md);
}
.ev-galeria::-webkit-scrollbar { display: none; }
.ev-galeria img {
  flex: 0 0 100%; width: 100%; height: auto;
  object-fit: cover; aspect-ratio: 16 / 9;
  border-radius: var(--r-md); scroll-snap-align: center;
}
.ev-galeria-marco { position: relative; }
.ev-gal-ant, .ev-gal-sig {
  position: absolute; top: 50%; translate: 0 -50%;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(6, 12, 22, .55); border: 1px solid rgba(255, 255, 255, .25);
  color: #fff; font-size: 1.4rem; line-height: 1;
  display: grid; place-items: center; cursor: pointer;
  transition: background-color .2s ease;
}
.ev-gal-ant:hover, .ev-gal-sig:hover { background: rgba(6, 12, 22, .8); }
.ev-gal-ant { left: 10px; } .ev-gal-sig { right: 10px; }
.ev-gal-cuenta {
  position: absolute; right: 10px; bottom: 10px;
  background: rgba(6, 12, 22, .6); color: #fff;
  font-size: .6875rem; font-weight: 700;
  padding: 4px 10px; border-radius: var(--r-pill);
}
@media (prefers-reduced-motion: reduce) {
  .ev-galeria { scroll-behavior: auto; }
}


.pc-img { position: relative; }
.pc-n {
  position: absolute; right: 10px; bottom: 10px;
  font-size: .6875rem; font-weight: 700;
  padding: 4px 10px; border-radius: var(--r-pill);
  background: rgba(4, 10, 20, .72); color: #fff;
  backdrop-filter: blur(6px);
}




@media (min-width: 1280px) {
  :root { --container: 1360px; --gutter: 40px; }
}
@media (min-width: 1600px) {
  :root { --container: 1440px; --gutter: 56px; }
}

.container-narrow, .prose { max-width: var(--container-narrow); }


.orbit-item img { width: 60%; height: 60%; object-fit: contain; }
.orbit-item { overflow: hidden; }




@media (prefers-reduced-motion: no-preference) {
  .hero .hero3d { animation: nube-flota 9s ease-in-out infinite; }
  .hero .hero3d img { animation: nube-mece 46s ease-in-out infinite; }
  .hero .hero3d.viva, .hero .hero3d.viva img { animation: none; }
  
  .hero .hero3d.viva {
    transform: translate(calc(var(--bx, 0px) + var(--vx, 0px)), calc(var(--by, 0px) + var(--vy, 0px))) scale(var(--vs, 1));
  }
  .hero .hero3d.viva img { rotate: var(--vg, 0deg); }
}


@keyframes nube-flota {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(18px, -16px) scale(1.02); }
  50%      { transform: translate(0, -30px) scale(1.045); }
  75%      { transform: translate(-18px, -16px) scale(1.02); }
}
@keyframes nube-mece {
  0%, 100% { rotate: 0deg; }
  25%      { rotate: 2.1deg; }
  75%      { rotate: -2.1deg; }
}


.ui-shot {
  display: block; width: 100%;
  
  aspect-ratio: clamp(1.2, var(--prop, 1.6), 2.4);
  object-fit: contain; object-position: center;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}
.aw-body:has(.ui-shot) { padding: 0; }


@media (prefers-reduced-motion: no-preference) {
  .app-window .ui-shot {
    transition: transform 1.1s var(--ease-out), opacity .8s ease;
    transform: scale(1.05);
    opacity: 0;
  }
  .reveal.in .ui-shot, .in .ui-shot, .hero .ui-shot { transform: none; opacity: 1; }
}


.int-logo {
  height: 18px; width: auto; flex: none;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .55;
  transition: filter .3s ease, opacity .3s ease;
}
.marquee-item:hover .int-logo { filter: none; opacity: 1; }
.bg-dark .int-logo, .hero-dark .int-logo {
  filter: grayscale(1) brightness(2.2);
  opacity: .6;
}
.bg-dark .marquee-item:hover .int-logo,
.hero-dark .marquee-item:hover .int-logo { filter: none; opacity: 1; }


.hero-dark { position: relative; isolation: isolate; }
.hero-dark::before,
.hero-dark::after {
  content: '';
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  
  filter: blur(28px);
}


.hero-dark::before {
  width: 52vw; height: 52vw;
  max-width: 720px; max-height: 720px;
  top: -16%; left: -12%;
  background: radial-gradient(circle,
    rgba(52, 211, 108, .62) 0%,
    rgba(34, 163, 74, .38) 26%,
    rgba(22, 120, 55, .16) 48%,
    transparent 72%);
}

.hero-dark::after {
  width: 60vw; height: 60vw;
  max-width: 840px; max-height: 840px;
  bottom: -22%; right: -14%;
  background: radial-gradient(circle,
    rgba(96, 208, 255, .52) 0%,
    rgba(56, 189, 248, .32) 28%,
    rgba(30, 120, 170, .14) 50%,
    transparent 74%);
}


@media (prefers-reduced-motion: no-preference) {
  .hero-dark::before { animation: luz-respira 14s ease-in-out infinite; }
  .hero-dark::after  { animation: luz-respira 18s ease-in-out infinite reverse; }
}
@keyframes luz-respira {
  0%, 100% { opacity: .75; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.12); }
}


@media (max-width: 767px) {
  .hero-dark::before, .hero-dark::after { filter: blur(20px); opacity: .75; }
}


.sol-ico img, .c-ico img { width: 32px; height: 32px; object-fit: contain; }


.sol-ico img[src*="hubspot"] { border-radius: 7px; }



.hero-tags .pill,
.tag-row .pill {
  position: relative;
  padding: 7px 14px;
  background: var(--surface-2);
  border-color: var(--line);
  backdrop-filter: none;
  color: var(--ink-2);
  transition:
    transform .32s var(--ease-out),
    background-color .32s ease,
    border-color .32s ease,
    box-shadow .32s ease;
}


.hero-dark .hero-tags .pill,
.hero-dark .tag-row .pill,
.bg-dark .hero-tags .pill,
.bg-dark .tag-row .pill {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .12);
  backdrop-filter: blur(6px);
  color: #D6E0EE;
}


.hero-dark .app-window .pill,
.hero-dark .aw-body .pill,
.hero-dark .shot .pill,
.hero-dark .card .pill,
.bg-dark .app-window .pill,
.bg-dark .aw-body .pill,
.bg-dark .shot .pill,
.bg-dark .card .pill {
  background: var(--surface-2);
  border-color: var(--line);
  backdrop-filter: none;
  color: var(--ink-2);
}

.hero-light .hero-tags .pill, .hero-claro .hero-tags .pill,
.bg-soft .tag-row .pill,
.card .tag-row .pill,
.app-window .tag-row .pill,
.aw-body .tag-row .pill,
.shot .tag-row .pill {
  background: var(--surface-2);
  border-color: var(--line);
  backdrop-filter: none;
  color: var(--ink-2);
}

.app-window .tag-row .pill.pill-green,
.aw-body .tag-row .pill.pill-green,
.card .tag-row .pill.pill-green {
  color: var(--zen-green-700);
  background: var(--zen-green-50);
  border-color: var(--zen-green-100);
}
.hero-tags .pill:hover,
.tag-row .pill:hover {
  transform: translateY(-3px);
  background: rgba(34, 163, 74, .12);
  border-color: rgba(111, 208, 140, .42);
  box-shadow: 0 8px 22px rgba(4, 10, 20, .28);
}


@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .hero-tags .pill, .tag-row .pill {
      animation: pastilla-entra linear both;
      animation-timeline: view();
      animation-range: entry 5% cover 26%;
    }
    .hero-tags .pill:nth-child(2), .tag-row .pill:nth-child(2) { animation-range: entry 8% cover 30%; }
    .hero-tags .pill:nth-child(3), .tag-row .pill:nth-child(3) { animation-range: entry 11% cover 34%; }
    .hero-tags .pill:nth-child(4), .tag-row .pill:nth-child(4) { animation-range: entry 14% cover 38%; }
  }
}
@keyframes pastilla-entra {
  from { opacity: 0; transform: translateY(12px) scale(.96); }
  to   { opacity: 1; transform: none; }
}


.card, .grid > article {
  position: relative;
  isolation: isolate;
}

.card::before, .grid > article::before {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  transition: opacity .35s ease;
  background: radial-gradient(
    340px circle at var(--mx, 50%) var(--my, 50%),
    rgba(34, 163, 74, .14),
    transparent 62%
  );
}
.card:hover::before, .grid > article:hover::before { opacity: 1; }
.bg-dark .card::before, .card-dark::before {
  background: radial-gradient(
    340px circle at var(--mx, 50%) var(--my, 50%),
    rgba(111, 208, 140, .18),
    transparent 62%
  );
}


@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    
    .grid > .card:not(.reveal), .grid > article:not(.reveal),
    .cards-grid > .card-item:not(.reveal) {
      animation: tarjeta-entra linear both;
      animation-timeline: view();
      animation-range: entry 2% cover 22%;
    }
    .grid > :nth-child(3n+2):not(.reveal) { animation-range: entry 5% cover 26%; }
    .grid > :nth-child(3n+3):not(.reveal) { animation-range: entry 8% cover 30%; }
  }
}
@keyframes tarjeta-entra {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}


.marca-lockup {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  gap: 10px 12px;
  padding: 9px 16px 9px 14px;
  margin-bottom: 22px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  transition: background-color .3s ease, border-color .3s ease;
}
.marca-lockup:hover {
  background: rgba(255, 255, 255, .085);
  border-color: rgba(111, 208, 140, .34);
}
.hero-centro .marca-lockup { margin-inline: auto; }
.hero-light .marca-lockup, .hero-claro .marca-lockup {
  background: var(--surface-2);
  border-color: var(--line);
  backdrop-filter: none;
}


.marca-lockup .marca-wm {
  
  height: var(--wm-h, 22px); width: auto; display: block;
  transform: translateY(var(--wm-dy, 0px));
  filter: none;
}


.marca-lockup-ico { display: flex; flex: none; }
.marca-lockup-ico img { width: 22px; height: 22px; object-fit: contain; display: block; }
.marca-lockup-n {
  font-family: var(--font-display);
  font-size: .9375rem; font-weight: 700; letter-spacing: -.02em;
  color: #fff;
}
.hero-light .marca-lockup-n, .hero-claro .marca-lockup-n { color: var(--ink); }


.marca-lockup-sep {
  width: 1px; height: 16px; flex: none;
  background: rgba(255, 255, 255, .2);
}
.hero-light .marca-lockup-sep, .hero-claro .marca-lockup-sep { background: var(--line); }
.marca-lockup-sub {
  font-size: .75rem; font-weight: 500;
  letter-spacing: .04em; text-transform: uppercase;
  color: #8A9AB2;
  white-space: nowrap;
}


.marca-lockup-cred {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--zen-green-300);
  white-space: nowrap;
}
.hero-light .marca-lockup-cred, .hero-claro .marca-lockup-cred { color: var(--zen-green-700); }


@media (max-width: 560px) {
  .marca-lockup { padding: 8px 14px; gap: 8px 10px; }
  .marca-lockup-sep { display: none; }
  
  .marca-lockup .marca-wm { height: calc(var(--wm-h, 22px) * .864); }
  .marca-lockup-sub, .marca-lockup-cred { font-size: .6875rem; }
}


.bg-dark, .cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.bg-dark::after, .cta-band::after {
  content: '';
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(30px);
  width: 58vw; height: 58vw;
  max-width: 800px; max-height: 800px;
  top: -24%; right: -16%;
  background: radial-gradient(circle,
    rgba(52, 211, 108, .48) 0%,
    rgba(34, 163, 74, .28) 28%,
    rgba(22, 120, 55, .12) 50%,
    transparent 74%);
}

.section.bg-dark:nth-of-type(even)::after {
  right: auto; left: -16%;
  background: radial-gradient(circle,
    rgba(96, 208, 255, .44) 0%,
    rgba(56, 189, 248, .26) 28%,
    rgba(30, 120, 170, .11) 50%,
    transparent 74%);
}
.cta-band::after {
  top: auto; bottom: -30%;
  background: radial-gradient(circle,
    rgba(140, 240, 175, .44) 0%,
    rgba(111, 208, 140, .26) 28%,
    rgba(60, 150, 95, .11) 50%,
    transparent 74%);
}

@media (prefers-reduced-motion: no-preference) {
  .bg-dark::after, .cta-band::after { animation: luz-respira 16s ease-in-out infinite; }
}
@media (max-width: 767px) {
  .bg-dark::after, .cta-band::after { filter: blur(22px); opacity: .8; }
}


img[src*="/assets/img/logo-"],
img[src*="/assets/img/marca-"],
img[src*="/assets/img/brand-"],
img[src*="/assets/img/int-"] {
  object-fit: contain;
}


.marquee-item .int-logo,
.marquee-item img.int-logo {
  height: 20px;
  width: auto;
  max-width: 60px;
  object-fit: contain;
  border-radius: 0;
  flex: none;
}


.marca-lead {
  height: var(--lead-h, 1em);
  max-height: var(--lead-max, none);
  width: auto;
  display: inline-block;
  vertical-align: baseline;
  transform: translateY(var(--lead-dy, .12em));
  margin-inline: .1em;
}


.hero .hero3d-b {
  
  left: 11%;
  top: 44%;
  width: min(240px, 19vw);
  opacity: .26;
}
@media (min-width: 1024px) {
  .hero .hero3d-b {
    width: min(300px, 22vw);
    opacity: calc(.20 + var(--p, .5) * .14);
  }
  .hero .hero3d-b img {
    
    scale: calc(-1 * (.94 + var(--p, .5) * .12)) calc(.94 + var(--p, .5) * .12);
    translate: 0 calc(var(--p, .5) * -28px);
    transform: perspective(760px) rotateY(calc(10deg - var(--p, .5) * 22deg));
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .hero .hero3d-b { width: min(190px, 17vw); top: 41%; left: 9%; }
}
@media (max-width: 1023px) { .hero .hero3d-b { display: none } }

@media (prefers-reduced-motion: no-preference) {
  .hero .hero3d-b { animation: nube-flota-b 13s ease-in-out infinite; }
  .hero .hero3d-b img { animation: nube-mece 38s ease-in-out infinite reverse; }
  .hero .hero3d-b.viva, .hero .hero3d-b.viva img { animation: none; }
}

@keyframes nube-flota-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  30%      { transform: translate(-13px, -14px) scale(1.02); }
  60%      { transform: translate(9px, -26px) scale(1.04); }
}


.cred {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(190px, 250px) 1fr;
  gap: 26px 44px;
  align-items: start;
}
.bg-dark .cred, .card-dark .cred { border-top-color: rgba(255, 255, 255, .14); }

.cred-et {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.bg-dark .cred-et { color: var(--on-dark-muted); }

.cred-t {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.35;
  font-weight: 700;
}
.bg-dark .cred-t { color: #fff; }


.cred-nota {
  margin: 9px 0 0;
  font-size: .875rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 32ch;
}
.bg-dark .cred-nota { color: var(--on-dark-muted); }


.cred-l {
  margin: 0;
  display: grid;
  
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 36px;
}
.cred-l > div {
  padding: 11px 0;
  border-top: 1px solid var(--line);
}
.bg-dark .cred-l > div { border-top-color: rgba(255, 255, 255, .11); }


.cred-l dt {
  font-size: .9375rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
}
.bg-dark .cred-l dt { color: var(--on-dark); }
.cred-l dd {
  margin: 3px 0 0;
  font-size: .8125rem;
  line-height: 1.5;
  color: var(--muted);
}
.bg-dark .cred-l dd { color: var(--on-dark-muted); }


.cred-t .cruce img { max-height: 1.5em; }

@media (max-width: 720px) {
  .cred { grid-template-columns: 1fr; gap: 18px; }
  .cred-l { grid-template-columns: 1fr; }
}


.ev-card { position: relative; cursor: pointer; }


.ev-card:focus-within {
  outline: 2px solid var(--zen-green-300);
  outline-offset: 3px;
}


.ev-when {
  font-size: .75rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--zen-green-300);
}
.ev-body h3 {
  font-size: 1.2rem;
  line-height: 1.26;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.ev-body p { line-height: 1.6; }


.carousel .ev-card { border-radius: var(--r-lg); }


.eyebrow { color: var(--marca-claro, var(--zen-green-700)); }
.hero-dark .eyebrow,
.hero-claro .eyebrow,
.bg-dark .eyebrow { color: var(--marca-oscuro, var(--zen-green-300)); }


.cred-et { color: var(--marca-claro, var(--muted)); }
.bg-dark .cred-et,
.card-dark .cred-et { color: var(--marca-oscuro, var(--on-dark-muted)); }


.bg-dark .sec-head .eyebrow::before,
.bg-dark .sec-head .eyebrow::after { background: var(--marca-oscuro, var(--zen-green-300)); }



.int-logo.int-wm { height: 19px; width: auto; }

.cruce {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  
  flex-wrap: nowrap;
  min-width: 0;
}
.cruce-logo {
  
  height: var(--cruce-h, 26px);
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  flex-shrink: 1;
  min-width: 0;
}

.cruce-zen { height: 30px; }
.cruce-x {
  font-size: 1.05rem;
  line-height: 1;
  color: var(--marca-oscuro, var(--zen-green-300));
  opacity: .75;
  font-weight: 400;
}
.bg-soft .cruce-x, .card:not(.card-dark) .cruce-x {
  color: var(--marca-claro, var(--zen-green));
}
@media (max-width: 480px) {
  .cruce-logo { height: 22px; }
  .cruce-zen { height: 25px; }
}


.es-pulsable { cursor: pointer; }
.es-pulsable:focus-visible { outline: 2px solid var(--zen-green-300); outline-offset: 3px; }

.modal-backdrop.galeria {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(8px, 2vw, 28px);
  padding: clamp(16px, 4vw, 48px);
}
.galeria .gl-marco { margin: 0; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.galeria img {
  max-width: min(1100px, 88vw);
  max-height: 78vh;
  border-radius: 14px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .6);
  display: block;
}
.galeria figcaption {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; justify-content: center;
  color: #E7EFE9; font-size: .9375rem;
}
.galeria .gl-cuenta { font-family: var(--font-mono); font-size: .8125rem; opacity: .7; }
.galeria button {
  appearance: none; border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  color: #fff; border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 1.6rem; line-height: 1;
  display: grid; place-items: center; cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease;
}
.galeria button:hover { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .4); }
.galeria button[hidden] { visibility: hidden; }
.galeria .gl-cerrar { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; font-size: 1.4rem; }
@media (max-width: 640px) {
  .modal-backdrop.galeria { grid-template-columns: 1fr; }
  .galeria .gl-ant, .galeria .gl-sig { position: absolute; top: 50%; translate: 0 -50%; }
  .galeria .gl-ant { left: 10px; } .galeria .gl-sig { right: 10px; }
}



.ev-nota {
  margin-top: auto;
  align-self: flex-start;
  font-size: .8125rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--on-dark-muted);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  border: 1px dashed rgba(255, 255, 255, .22);
}


.rc-figura { margin: 0; display: flex; flex-direction: column; gap: 18px; }
.rc-figura figcaption {
  font-size: .9375rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 68ch;
}
.rc-figura figcaption { color: var(--muted); }
.bg-dark .rc-figura figcaption, .grid-lines .rc-figura figcaption { color: var(--on-dark-muted); }

.rc {
  --rc-tinta: #1b2733;
  --rc-suave: #5b6b7c;
  --rc-linea: #e3e8ee;
  --rc-fondo: #f5f7fa;
  --rc-acento: #2c5cc5;
  container-type: inline-size;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  color: var(--rc-tinta);
  border: 1px solid var(--rc-linea);
  box-shadow: 0 24px 60px -28px rgba(12, 26, 40, .45), 0 2px 6px rgba(12, 26, 40, .06);
  font-size: 13px;
  line-height: 1.45;
  
  letter-spacing: 0;
}
.rc * { box-sizing: border-box; }
.rc strong { font-weight: 650; }
.rc p { margin: 0; }
.rc-i { width: 15px; height: 15px; flex: none; stroke-width: 1.7; }
.rc-sub { color: var(--rc-suave); font-size: .85em; display: block; }
.rc-mini { color: var(--rc-suave); font-size: .85em; display: inline-flex; gap: 6px; align-items: center; }
.rc-link { color: var(--rc-acento); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; cursor: default; }
.rc-cuerpo { display: flex; min-height: 300px; }
.rc-cuerpo.col { flex-direction: column; min-height: 0; }
.rc-pane { flex: 1; min-width: 0; display: flex; flex-direction: column; background: #fff; }
.rc-col { flex: none; border-right: 1px solid var(--rc-linea); }
.rc-lienzo { padding: 14px; background: var(--rc-fondo); flex: 1; }


.rc-rail {
  flex: none; width: 42px;
  background: var(--rc-rail-bg, #12344e);
  display: flex; flex-direction: column; align-items: center;
  gap: 3px; padding: 10px 0;
  overflow: hidden;
}
.rc-rail-i {
  width: 28px; height: 26px; display: grid; place-items: center;
  border-radius: 6px; color: rgba(255, 255, 255, .55);
}
.rc-rail-i.on { background: rgba(255, 255, 255, .16); color: #fff; }


.rc-av {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 700; letter-spacing: .02em; color: #fff;
}
.rc-av.grande { width: 46px; height: 46px; font-size: 15px; }
.rc-av.t1 { background: #d9736a; } .rc-av.t2 { background: #6f8fbf; }
.rc-av.t3 { background: #8a7bb8; } .rc-av.t4 { background: #4f9e88; }
.rc-av.t5 { background: #c99a4e; }
.rc-cab { padding: 10px 14px; border-bottom: 1px solid var(--rc-linea); }
.rc-cab.fila { display: flex; align-items: center; gap: 10px; }
.rc-cab.fila .rc-cab-t { margin-right: auto; }
.rc-cab h6 { margin: 0 0 8px; font-size: 15px; font-weight: 650; display: flex; align-items: center; gap: 8px; }
.rc-cab h6 .sep { color: var(--rc-linea); font-weight: 300; }
.rc-caret { color: var(--rc-suave); }
.rc-tabs { display: flex; gap: 16px; font-size: 12.5px; color: var(--rc-suave); flex-wrap: wrap; }
.rc-tabs span { padding-bottom: 6px; border-bottom: 2px solid transparent; white-space: nowrap; }
.rc-tabs span.on { color: var(--rc-tinta); border-bottom-color: var(--rc-tinta); font-weight: 600; }
.rc-tabs.sm { font-size: 11.5px; gap: 12px; padding: 8px 12px 0; }
.rc-tabs.borde { padding: 8px 14px 0; border-bottom: 1px solid var(--rc-linea); }
.rc-tabs b { font-weight: 600; opacity: .7; }
.rc-card { background: #fff; border: 1px solid var(--rc-linea); border-radius: 8px; padding: 12px; }
.rc-card-h { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.rc-ic { width: 26px; height: 26px; border-radius: 6px; background: var(--rc-fondo); display: grid; place-items: center; flex: none; color: var(--rc-suave); }
.rc-ic.redondo { border-radius: 8px; border: 1px solid var(--rc-linea); }
.rc-btn-p { background: var(--rc-acento); color: #fff; padding: 5px 12px; border-radius: 5px; font-weight: 600; font-size: 12px; white-space: nowrap; }
.rc-btn-g { background: #fff; border: 1px solid var(--rc-linea); padding: 5px 11px; border-radius: 5px; font-size: 12px; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.rc-btn-oscuro { background: #12344e; color: #fff; padding: 5px 12px; border-radius: 5px; font-size: 12px; display: inline-flex; align-items: center; gap: 5px; font-weight: 600; }
.rc-tag { background: var(--rc-fondo); border-radius: 4px; padding: 2px 8px; font-size: 11px; color: var(--rc-suave); }
.rc-badge { background: var(--rc-fondo); border-radius: 10px; padding: 1px 7px; font-size: 11px; color: var(--rc-suave); }
.rc-msg { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 12px; }
.rc-msg .rc-av { margin-top: 17px; }
.rc-msg.sal { flex-direction: row; justify-content: flex-end; }
.rc-msg.sal .rc-burb, .rc-msg.sal .rc-quien, .rc-msg.sal .rc-hora { margin-left: auto; text-align: right; }
.rc-quien { font-size: 11px; color: var(--rc-suave); display: block; margin-bottom: 3px; }
.rc-burb { background: #e8f0fb; border-radius: 12px; padding: 7px 11px; display: block; width: fit-content; max-width: 34em; margin-bottom: 4px; }
.rc-burb.propia { background: #fff; border: 1px solid var(--rc-linea); }
.rc-burb.gris { background: #f1f3f7; }
.rc-hora { font-size: 10.5px; color: var(--rc-suave); display: block; }


.rc-hubspot { --rc-rail-bg: #33121f; --rc-acento: #0068b1; }
.rc-hubspot .rc-top {
  background: #33121f; color: rgba(255, 255, 255, .82);
  display: flex; align-items: center; gap: 10px; padding: 8px 12px;
}
.rc-search { flex: 1; max-width: 320px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .18); border-radius: 5px; padding: 5px 10px; font-size: 12px; }
.rc-round { width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .35); display: grid; place-items: center; font-size: 13px; }
.rc-top-end { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.rc-chip-ai { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; }
.rc-me { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; padding-left: 10px; border-left: 1px solid rgba(255, 255, 255, .2); }
.rc-hs-grid { display: grid; grid-template-columns: 1.15fr 1.15fr 1fr; gap: 12px; align-items: start; }
.rc-hs-agenda { grid-row: span 2; padding: 0; }
.rc-hs-agenda .rc-card-h { padding: 8px 12px 0; margin-bottom: 6px; }
.rc-hs-acciones { grid-column: 1 / 3; }
.rc-hs-tareas { display: flex; gap: 18px; }
.rc-hs-cifras { display: flex; flex-direction: column; gap: 10px; text-align: center; }
.rc-hs-cifras .k { font-size: 9.5px; letter-spacing: .06em; color: var(--rc-suave); text-transform: uppercase; display: block; }
.rc-hs-cifras .v { font-size: 26px; font-weight: 700; color: #33121f; border-bottom: 2px solid #33121f; display: inline-block; line-height: 1.1; }
.rc-hs-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.rc-hs-links li { display: flex; align-items: center; gap: 8px; }
.rc-hs-links li .rc-i { color: #fff; background: #33121f; border-radius: 50%; padding: 3px; width: 18px; height: 18px; }
.rc-hs-links a { color: var(--rc-acento); text-decoration: underline; text-underline-offset: 2px; }
.rc-hs-agente { display: flex; gap: 10px; border: 1px solid var(--rc-linea); border-radius: 6px; padding: 10px; }
.rc-hs-chispa { width: 26px; height: 26px; border-radius: 50%; background: #f2f4f7; display: grid; place-items: center; flex: none; }
.rc-hs-hoy { margin: 0 12px 8px; background: #f5f7fa; border: 1px solid var(--rc-linea); border-radius: 4px; padding: 5px 8px; font-size: 11.5px; display: flex; align-items: center; gap: 6px; }
.rc-hs-horas { border-top: 1px solid var(--rc-linea); }
.rc-hs-hora { display: grid; grid-template-columns: 46px 1fr; align-items: center; gap: 6px; border-bottom: 1px solid var(--rc-linea); min-height: 26px; padding: 0 8px 0 0; }
.rc-hs-hora .h { font-size: 10.5px; color: var(--rc-suave); text-align: right; padding-right: 4px; }
.rc-hs-hora .ev { font-size: 10.5px; border-radius: 3px; padding: 3px 6px; border-left: 3px solid; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rc-hs-hora .ev.celeste { background: #ddeefc; border-color: #4a90c4; }
.rc-hs-hora .ev.durazno { background: #fbe0cf; border-color: #e08b4c; }
.rc-hs-hora .ev.lila { background: #e9e4fb; border-color: #7d6bc4; }
.rc-hs-hora .ev.vacia { border: 0; padding: 0; }
.rc-hs-pills { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.rc-hs-pills span { border: 1px solid var(--rc-linea); border-radius: 5px; padding: 7px 12px; font-size: 12px; display: inline-flex; gap: 10px; align-items: center; }
.rc-hs-pills span.on { border-color: #33121f; border-width: 2px; font-weight: 600; }
.rc-hs-pills b { color: var(--rc-suave); font-weight: 500; }
.rc-hs-accion { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; border-top: 1px solid var(--rc-linea); }
.rc-hs-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.rc-hs-meta { flex: none; width: 130px; display: flex; flex-direction: column; gap: 2px; font-size: 11px; color: var(--rc-suave); }
.rc-hs-meta.rc-avs { flex-direction: row; gap: 4px; align-items: center; }


.rc-fresh { --rc-rail-bg: #12344e; --rc-acento: #2c5cc5; }
.rc-fs-ficha { width: 190px; background: #eef2f6; padding: 10px; display: flex; flex-direction: column; gap: 10px; }
.rc-volver { color: var(--rc-acento); font-size: 11.5px; }
.rc-fs-perfil { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.rc-social { display: flex; gap: 5px; color: var(--rc-acento); margin-top: 3px; }
.rc-fs-score { display: flex; gap: 14px; border-top: 1px solid #dbe2ea; border-bottom: 1px solid #dbe2ea; padding: 8px 0; }
.rc-fs-score .k { font-size: 9.5px; color: var(--rc-suave); display: block; }
.rc-fs-score .v { font-weight: 700; font-size: 15px; }
.rc-fs-score .v i { color: #2fa06a; font-style: normal; }
.rc-fs-score .estrellas { color: #f0a92e; font-size: 12px; letter-spacing: -1px; }
.rc-fs-h { margin: 0; font-size: 11px; text-transform: none; color: var(--rc-tinta); font-weight: 650; }
.rc-fs-nav { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.rc-fs-nav li { display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: 5px; color: #3d4d5c; font-size: 12px; }
.rc-fs-nav li.on { background: #fff; font-weight: 600; box-shadow: inset 2px 0 0 var(--rc-acento); }
.rc-uso { margin-left: auto; background: #eaf1fb; color: #2c5cc5; border-radius: 4px; padding: 3px 8px; font-size: 11px; }
.rc-x { color: var(--rc-suave); }
.rc-fs-campo { display: flex; align-items: center; gap: 8px; padding: 8px 14px; border-bottom: 1px solid var(--rc-linea); }
.rc-fs-campo .et { color: var(--rc-suave); width: 34px; }
.rc-token { display: inline-flex; align-items: center; gap: 6px; background: var(--rc-fondo); border-radius: 12px; padding: 2px 9px 2px 2px; font-size: 12px; }
.rc-ccc { margin-left: auto; color: var(--rc-suave); font-size: 11.5px; }
.rc-fs-campo.asunto { color: var(--rc-tinta); }
.rc-fs-tools { display: flex; gap: 14px; flex-wrap: wrap; padding: 8px 14px; border-bottom: 1px solid var(--rc-linea); font-size: 11.5px; color: #3d4d5c; }
.rc-fs-tools span { display: inline-flex; align-items: center; gap: 5px; }
.rc-freddy { margin-left: auto; color: #7b3fe4; }
.rc-fs-editor { padding: 20px 14px 40px; font-size: 15px; flex: 1; }
.rc-fs-formato { display: flex; align-items: center; gap: 12px; padding: 7px 14px; border-top: 1px solid var(--rc-linea); color: #3d4d5c; font-size: 11.5px; }
.rc-fs-pie { display: flex; align-items: center; gap: 10px; padding: 9px 14px; border-top: 1px solid var(--rc-linea); background: var(--rc-fondo); flex-wrap: wrap; }
.rc-check { font-size: 11.5px; color: #2c5cc5; }
.rc-check.off { color: var(--rc-suave); }
.rc-guardado { margin-left: auto; font-size: 11px; color: var(--rc-suave); font-style: italic; }

.rc-fc-lista { width: 220px; display: flex; flex-direction: column; }
.rc-fc-lh { display: flex; align-items: center; justify-content: space-between; padding: 10px; border-bottom: 1px solid var(--rc-linea); }
.rc-fc-orden { padding: 6px 10px; background: var(--rc-fondo); font-size: 11px; color: var(--rc-suave); display: flex; align-items: center; gap: 6px; }
.rc-fc-row { display: flex; gap: 8px; padding: 9px 10px; border-bottom: 1px solid var(--rc-linea); }
.rc-fc-row.on { background: #eaf1fb; box-shadow: inset 3px 0 0 var(--rc-acento); }
.rc-fc-txt { min-width: 0; flex: 1; }
.rc-fc-n { display: flex; justify-content: space-between; gap: 8px; font-weight: 650; font-size: 12.5px; }
.rc-fc-n .rc-t { font-weight: 400; color: var(--rc-suave); font-size: 10.5px; flex: none; }
.rc-fc-txt p { color: var(--rc-suave); font-size: 11.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rc-fc-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 10.5px; color: #3d4d5c; margin-top: 4px; }
.rc-fc-hilo { background: var(--rc-fondo); }
.rc-fc-hilo .rc-cab { background: #fff; }
.rc-sel { border: 1px solid var(--rc-linea); border-radius: 5px; padding: 4px 9px; font-size: 11.5px; display: inline-flex; align-items: center; gap: 5px; background: #fff; }
.rc-fc-msgs { flex: 1; padding: 14px; }
.rc-fc-responder { background: #fff; border-top: 1px solid var(--rc-linea); }
.rc-ph { padding: 12px 14px 18px; color: var(--rc-suave); }
.rc-fc-acc { display: flex; align-items: center; gap: 12px; padding: 8px 14px; color: var(--rc-suave); }
.rc-enviar { margin-left: auto; color: var(--rc-acento); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.rc-fc-ficha { width: 218px; border-right: 0; border-left: 1px solid var(--rc-linea); background: var(--rc-fondo); padding-bottom: 10px; }
.rc-fc-sec { display: flex; align-items: center; justify-content: space-between; background: #fff; border-bottom: 1px solid var(--rc-linea); padding: 8px 10px; font-size: 12px; }
.rc-fc-sec strong { display: inline-flex; align-items: center; gap: 6px; }
.rc-fc-perfil { display: flex; gap: 8px; background: #fff; padding: 10px; border-bottom: 1px solid var(--rc-linea); }
.rc-fc-perfil .rc-link { font-size: 11px; }
.rc-fc-perfil .rc-av { margin-top: 0; }
.rc-fc-props { display: grid; grid-template-columns: 1fr; gap: 2px; margin: 0; padding: 10px; background: #fff; border-bottom: 1px solid var(--rc-linea); }
.rc-fc-props dt { color: var(--rc-suave); font-size: 11px; }
.rc-fc-props dd { margin: 0 0 6px; font-size: 12px; }
.rc-fc-etiq { background: #fff; padding: 0 10px 10px; border-bottom: 1px solid var(--rc-linea); }
.rc-fc-sec.plegada { color: var(--rc-suave); }


.rc-fsv { --rc-acento: #2c5cc5; }
.rc-fsv-ticket { display: flex; gap: 10px; align-items: flex-start; padding: 14px; }
.rc-fsv-split { display: grid; grid-template-columns: 1fr 1.15fr; }
.rc-fsv-cmdb { padding: 12px 14px; border-right: 1px solid var(--rc-linea); }
.rc-fsv-cmdb h6 { margin: 0 0 8px; font-size: 14px; font-weight: 650; }
.rc-fsv-pills { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.rc-fsv-pills span { border: 1px solid var(--rc-linea); border-radius: 12px; padding: 3px 10px; font-size: 11px; color: #3d4d5c; }
.rc-fsv-pills span.on { background: #eaf1fb; border-color: #b9d0f0; color: var(--rc-acento); font-weight: 600; }
.rc-fsv-grupo { font-size: 11px; color: var(--rc-suave); margin: 10px 0 5px; }
.rc-fsv-item { display: flex; align-items: center; gap: 8px; border: 1px solid var(--rc-linea); border-radius: 6px; padding: 8px 10px; }
.rc-menos { width: 17px; height: 17px; border-radius: 50%; background: #e5493a; color: #fff; display: grid; place-items: center; font-size: 13px; line-height: 1; flex: none; }
.rc-fsv-item .rc-i { width: 13px; height: 13px; }
.rc-fsv-item a { display: inline-flex; align-items: center; gap: 5px; }
.rc-fsv-topo { background: var(--rc-fondo); }
.rc-fsv-topo-h { display: flex; gap: 9px; align-items: center; padding: 12px 14px 8px; background: #fff; }
.rc-fsv-topo .rc-tabs.sm { background: #fff; border-bottom: 1px solid var(--rc-linea); padding-bottom: 0; }
.rc-fsv-topo .rc-tabs.sm span { padding-bottom: 7px; }
.rc-fsv-topo-bar { display: flex; align-items: center; gap: 10px; padding: 9px 14px; background: #fff; flex-wrap: wrap; }
.rc-buscar { border: 1px solid var(--rc-linea); border-radius: 5px; padding: 4px 9px; font-size: 11.5px; display: inline-flex; align-items: center; gap: 6px; }
.rc-fsv-mapa {
  position: relative; min-height: 250px; padding: 16px;
  background-image: radial-gradient(circle, #d3dae3 1px, transparent 1px);
  background-size: 13px 13px;
}
.rc-nodo {
  position: absolute; background: #fff; border: 1px solid var(--rc-linea);
  border-radius: 6px; padding: 6px 10px; font-size: 11.5px;
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  box-shadow: 0 1px 3px rgba(12, 26, 40, .08);
}
.rc-nodo.activo { border-color: var(--rc-acento); box-shadow: 0 0 0 2px rgba(44, 92, 197, .16); }
.rc-nodo.n1 { top: 8%; left: 50%; transform: translateX(-50%); }
.rc-nodo.n2 { top: 46%; left: 26%; }
.rc-nodo.n3 { top: 46%; right: 6%; }
.rc-nodo.n4 { bottom: 8%; left: 26%; }
.rc-flecha { position: absolute; background: var(--rc-acento); }
.rc-flecha.f1 { width: 1.5px; top: 18%; bottom: 56%; left: 50%; }
.rc-flecha.f2 { height: 1.5px; top: 51%; left: 56%; right: 27%; background: #94a3b3; }
.rc-flecha.f3 { width: 1.5px; top: 56%; bottom: 20%; left: 33%; }
.rc-flecha::after {
  content: ''; position: absolute; width: 0; height: 0;
  border: 4px solid transparent;
}
.rc-flecha.f1::after { bottom: -7px; left: -3.2px; border-top-color: var(--rc-acento); }
.rc-flecha.f2::after { right: -7px; top: -3.2px; border-left-color: #94a3b3; }
.rc-flecha.f3::after { bottom: -7px; left: -3.2px; border-top-color: var(--rc-acento); }
.rc-zoom { position: absolute; right: 10px; bottom: 10px; display: flex; flex-direction: column; gap: 4px; align-items: center; color: var(--rc-suave); font-size: 12px; }
.rc-zoom b, .rc-zoom .rc-i { background: #fff; border: 1px solid var(--rc-linea); border-radius: 5px; width: 22px; height: 22px; display: grid; place-items: center; font-weight: 400; padding: 4px; }


.rc-fd { --rc-acento: #2563eb; }
.rc-fd-cab { display: flex; align-items: center; gap: 9px; padding: 11px 14px; border-bottom: 1px solid var(--rc-linea); }
.rc-fd-cab strong { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; }
.rc-btn-ia { border: 1px solid #ded3f7; color: #7b3fe4; background: #faf7ff; border-radius: 5px; padding: 5px 10px; font-size: 11.5px; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.rc-fd-hilo { padding: 14px; position: relative; }
.rc-fd-msg { display: flex; gap: 9px; margin-bottom: 14px; align-items: flex-start; }
.rc-chispa { width: 24px; height: 24px; border-radius: 50%; background: #f2ecff; color: #7b3fe4; display: grid; place-items: center; flex: none; }
.rc-tag-ia { background: #f2ecff; color: #7b3fe4; border-radius: 3px; padding: 1px 6px; font-size: 10px; font-weight: 600; margin-left: 6px; }
.rc-quien.azul { color: var(--rc-acento); font-weight: 600; font-size: 12px; }
.rc-fd-msg .rc-burb { max-width: none; }
.rc-fd-msg .rc-burb p + p { margin-top: 7px; }
.rc-fd-tour {
  position: absolute; right: 8px; bottom: 40px; width: 250px;
  background: #fff; border: 1px solid var(--rc-linea); border-radius: 8px;
  padding: 12px; box-shadow: 0 14px 34px -12px rgba(12, 26, 40, .38);
}
.rc-fd-tour strong { display: block; margin-bottom: 6px; font-size: 13px; }
.rc-fd-tour p { color: var(--rc-suave); font-size: 11.5px; }
.rc-fd-tour-pie { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; color: var(--rc-suave); font-size: 11px; }
.rc-fd-responder { display: flex; align-items: center; gap: 9px; padding: 10px 14px; border-top: 1px solid var(--rc-linea); }


.rc-halo { --rc-rail-bg: #1b2a4a; --rc-acento: #0e7fa8; --rc-fondo: #eef3fa; }
.rc-halo-tabs { display: flex; align-items: center; gap: 8px; background: #1b2a4a; padding: 6px 10px; color: rgba(255, 255, 255, .75); }
.rc-halo-tabs > span.on { background: #eef3fa; color: #1b2a4a; border-radius: 6px 6px 0 0; padding: 6px 14px; font-weight: 600; margin-bottom: -6px; }
.rc-halo-acc { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.rc-halo-acc .cyan { background: #22c1f0; color: #06202e; border-radius: 12px; padding: 3px 11px; font-size: 11px; font-weight: 600; }
.rc-halo-acc .cyan.solido { background: #0aa8dd; color: #fff; }
.rc-halo-pane { background: var(--rc-fondo); }
.rc-halo-full { margin: 10px 0 0 12px; align-self: flex-start; background: #fff; border: 1px solid #d5dfec; border-radius: 5px; padding: 4px 10px; font-size: 11.5px; display: inline-flex; align-items: center; gap: 6px; }
.rc-halo-filtros { display: flex; gap: 18px; padding: 10px 12px; }
.rc-halo-filtros label { display: flex; flex-direction: column; gap: 4px; font-size: 11.5px; color: #3d4d5c; }
.rc-select { background: #fff; border: 1px solid #d5dfec; border-radius: 5px; padding: 5px 9px; min-width: 130px; display: inline-flex; align-items: center; justify-content: space-between; gap: 8px; }
.rc-chip-cyan { background: #22c1f0; color: #06202e; border-radius: 3px; padding: 1px 7px; font-size: 10.5px; font-weight: 600; }
.rc-halo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 0 12px 14px; }
.rc-halo-kpi { display: flex; flex-direction: column; gap: 6px; min-height: 92px; }
.rc-halo-kpi .t { font-size: 12px; }
.rc-halo-kpi .v { font-size: 34px; font-weight: 300; line-height: 1; margin: auto auto 0; }
.rc-halo-kpi .v.rojo { color: #e0402c; }
.rc-halo-kpi .v.verde { color: #7ac943; }
.rc-halo-linea { grid-column: span 2; }
.rc-halo-pastel { grid-column: span 2; }
.rc-halo-linea strong, .rc-halo-pastel strong, .rc-halo-tabla strong { display: block; font-size: 13px; margin-bottom: 8px; }
.rc-halo-leyenda { display: flex; gap: 14px; font-size: 10.5px; color: var(--rc-suave); margin-bottom: 4px; }
.rc-halo-leyenda i, .rc-halo-leg i { width: 10px; height: 10px; border-radius: 2px; display: inline-block; margin-right: 5px; vertical-align: -1px; }
.rc-halo-svg { width: 100%; height: 96px; display: block; }
.rc-halo-x { display: flex; justify-content: space-between; font-size: 9.5px; color: var(--rc-suave); margin-top: 4px; }
.rc-halo-pie-wrap { display: flex; align-items: center; gap: 16px; }
.rc-halo-pie { width: 108px; height: 108px; border-radius: 50%; flex: none; display: block; }
.rc-halo-leg { list-style: none; margin: 0; padding: 0; font-size: 11px; display: flex; flex-direction: column; gap: 4px; }
.rc-halo-leg b { margin-left: 8px; color: var(--rc-suave); font-weight: 600; }
.rc-halo-tabla { grid-column: span 4; }
.rc-halo-tabla table { width: 100%; border-collapse: collapse; font-size: 11.5px; }
.rc-halo-tabla th { background: #22c1f0; color: #06202e; text-align: left; padding: 7px 10px; font-weight: 600; }
.rc-halo-tabla td { border-bottom: 1px solid var(--rc-linea); padding: 7px 10px; }


.rc-intercom { --rc-acento: #286efa; --rc-fondo: #f7f8fa; }
.rc-ic-cliente { width: 250px; background: #eceef2; padding: 16px; display: grid; place-items: center; }
.rc-ic-tarjeta { background: #fff; border-radius: 12px; padding: 16px; width: 100%; text-align: center; box-shadow: 0 10px 30px -14px rgba(12, 26, 40, .35); }
.rc-ic-tarjeta > strong { display: block; font-size: 14px; margin-bottom: 10px; }
.rc-ic-tarjeta .rc-av { margin: 0 auto 8px; width: 42px; height: 42px; font-size: 14px; }
.rc-ic-estado { color: #5b3fd6; font-weight: 650; display: block; }
.rc-ic-pasos { display: flex; gap: 4px; margin: 12px 0; }
.rc-ic-pasos i { flex: 1; height: 3px; border-radius: 2px; background: #e3e5ea; }
.rc-ic-pasos i.on { background: #5b3fd6; }
.rc-ic-aviso { display: flex; gap: 8px; align-items: flex-start; text-align: left; background: var(--rc-fondo); border-radius: 8px; padding: 10px; margin-bottom: 12px; }
.rc-ic-dl { margin: 0; text-align: left; }
.rc-ic-dl dt { color: var(--rc-suave); font-size: 11px; margin-top: 8px; }
.rc-ic-dl dd { margin: 0; font-size: 12px; }
.rc-ic-dl.fila { display: grid; grid-template-columns: auto 1fr; gap: 4px 12px; padding: 10px 14px; border-bottom: 1px solid var(--rc-linea); align-items: center; }
.rc-ic-dl.fila dt { margin: 0; }
.rc-ic-dl.fila dd { display: flex; align-items: center; gap: 6px; }
.rc-ic-dl.fila .rc-av { width: 18px; height: 18px; font-size: 8px; }
.rc-intercom .rc-tag.lila { background: #eae5fb; color: #5b3fd6; font-weight: 600; }
.rc-ic-meta { padding: 8px 14px 0; color: var(--rc-suave); font-size: 11.5px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.rc-ic-meta .rc-av { width: 16px; height: 16px; font-size: 8px; }
.rc-ic-resumen { padding: 6px 14px 10px; }
.rc-ic-msgs { padding: 0 14px 14px; }
.rc-ic-sug { display: flex; gap: 6px; flex-wrap: wrap; margin: 8px 0 12px; }
.rc-ic-sug span { border: 1px solid var(--rc-linea); border-radius: 12px; padding: 3px 10px; font-size: 11px; background: #fff; }
.rc-ic-form { border: 1px solid var(--rc-linea); border-radius: 7px; padding: 8px 10px; font-size: 11.5px; display: flex; align-items: center; gap: 7px; background: #fff; margin-bottom: 8px; }
.rc-ic-form b { margin-left: auto; color: var(--rc-suave); font-weight: 500; }
.rc-ic-sistema { text-align: center; color: var(--rc-suave); font-size: 11px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.rc-ic-detalles { width: 214px; border-right: 0; border-left: 1px solid var(--rc-linea); }
.rc-ic-h { margin: 12px 14px 4px; font-size: 9.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--rc-suave); font-weight: 600; }
.rc-ic-detalles .rc-ic-dl { padding: 0 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 8px; }
.rc-ic-detalles .rc-ic-dl dt { margin: 0; align-self: center; }
.rc-ic-detalles .rc-ic-dl dd { align-self: center; overflow: hidden; text-overflow: ellipsis; }
.rc-ic-link { display: flex; align-items: center; gap: 7px; padding: 5px 14px; font-size: 11.5px; }
.rc-ic-link b { margin-left: auto; color: var(--rc-suave); font-weight: 400; }
.rc-ic-detalles > .rc-link { margin: 10px 14px; display: inline-block; font-size: 11.5px; }


.rc-wk { --rc-acento: #08a84f; }
.rc-wk-cab { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px; border-bottom: 1px solid var(--rc-linea); flex-wrap: wrap; }
.rc-wk-cab strong { font-size: 19px; }
.rc-btn-verde { background: #0aab52; color: #fff; border-radius: 6px; padding: 9px 16px; font-weight: 600; font-size: 13px; white-space: nowrap; }
.rc-wk-cuerpo { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.rc-wk-lead { color: #3d4d5c; max-width: 62ch; font-size: 14px; }
.rc-wk-card { display: flex; gap: 14px; border: 1px solid var(--rc-linea); border-radius: 8px; padding: 14px; align-items: flex-start; }
.rc-wk-card.on { border-color: #0aab52; box-shadow: 0 0 0 1px #0aab52; }
.rc-wk-card strong { display: block; font-size: 15px; margin-bottom: 5px; }
.rc-wk-card p { color: #3d4d5c; font-size: 13px; line-height: 1.5; }
.rc-wk-ic { position: relative; flex: none; color: #0aab52; }
.rc-wk-ic .rc-i { width: 27px; height: 27px; }
.rc-wk-ic b { position: absolute; top: -4px; right: -7px; color: #4ede8a; }
.rc-wk-ic b .rc-i { width: 12px; height: 12px; }


.rc-rl { --rc-acento: #2563eb; }
.rc-rl-lienzo { position: relative; padding: 16px 16px 16px 64px; background: linear-gradient(125deg, #8fd0f5 0%, #a9c4f7 42%, #f4d9c8 100%); }
.rc-rl-doc { background: #fff; border-radius: 10px 0 0 10px; padding: 20px; margin-right: -16px; box-shadow: 0 18px 44px -20px rgba(12, 26, 40, .4); }
.rc-rl-doc h5 { margin: 0 0 14px; font-size: 21px; font-weight: 600; letter-spacing: -.01em; }
.rc-rl-doc h6 { margin: 0 0 6px; font-size: 14px; font-weight: 650; }
.rc-rl-doc > p { color: #3d4d5c; margin-bottom: 12px; max-width: 70ch; }
.rc-rl-tabla { width: 100%; border-collapse: collapse; }
.rc-rl-tabla th { text-align: left; font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--rc-suave); padding: 0 12px 6px 0; border-bottom: 1px solid var(--rc-linea); }
.rc-rl-tabla td { padding: 10px 12px 10px 0; border-bottom: 1px solid var(--rc-linea); vertical-align: top; color: #2b3a48; }
.rc-rl-tabla td:nth-child(2) { white-space: nowrap; color: var(--rc-suave); }
.rc-cita { display: inline-grid; place-items: center; width: 14px; height: 14px; border-radius: 50%; background: #d8dee6; color: #4a5a68; font-size: 9px; font-weight: 600; vertical-align: 1px; }
.rc-rl-prompt {
  position: absolute; left: 12px; bottom: 34px; width: 210px;
  background: #fff; border-radius: 10px; padding: 12px 14px;
  font-size: 13px; line-height: 1.5;
  box-shadow: 0 16px 40px -16px rgba(12, 26, 40, .5);
}


.rc-d360 { --rc-acento: #7f43ff; }
.rc-d360-cab { padding: 15px 20px; border-bottom: 1px solid var(--rc-linea); }
.rc-d360-cab strong { font-size: 18px; }
.rc-d360-cuerpo { display: grid; grid-template-columns: 240px 1fr; }
.rc-d360-pasos { list-style: none; margin: 0; padding: 18px 16px; border-right: 1px solid var(--rc-linea); display: flex; flex-direction: column; gap: 18px; position: relative; }
.rc-d360-pasos li { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: #3d4d5c; position: relative; }
.rc-d360-pasos li i { width: 15px; height: 15px; border-radius: 50%; background: #e3e8ee; flex: none; margin-top: 2px; }
.rc-d360-pasos li.on { color: var(--rc-tinta); font-weight: 600; }
.rc-d360-pasos li.on i { background: #fff; border: 4px solid #7f43ff; }
.rc-d360-pasos li:not(:last-child)::after { content: ''; position: absolute; left: 7px; top: 19px; bottom: -18px; width: 1px; background: #e3e8ee; }
.rc-d360-form { padding: 18px 20px; display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.rc-d360-form > strong { font-size: 16px; }
.rc-et { font-size: 13px; margin-top: 6px; }
.rc-d360-op { border: 1px solid var(--rc-linea); border-radius: 6px; padding: 9px 12px; width: 100%; max-width: 340px; display: flex; align-items: center; gap: 10px; font-size: 13px; }
.rc-d360-op i { width: 14px; height: 14px; border-radius: 50%; border: 1px solid #c3ccd7; flex: none; }
.rc-d360-op.on { border-color: #7f43ff; }
.rc-d360-op.on i { border: 4px solid #7f43ff; }
.rc-d360-pie { display: flex; gap: 8px; margin-top: 10px; }
.rc-btn-morado { background: #7f43ff; color: #fff; border-radius: 5px; padding: 6px 16px; font-weight: 600; font-size: 12px; }


.rc-sf { --rc-acento: #122b45; position: relative; }
.rc-sf-tools { display: flex; align-items: center; gap: 9px; justify-content: flex-end; padding: 11px 14px; border-bottom: 1px solid var(--rc-linea); flex-wrap: wrap; }
.rc-sf-tabla { display: flex; flex-direction: column; }
.rc-sf-cab, .rc-sf-row {
  display: grid;
  grid-template-columns: 22px minmax(140px, 1.5fr) .8fr 1fr 1.1fr .7fr .6fr;
  gap: 10px; align-items: center; padding: 9px 14px;
  border-bottom: 1px solid var(--rc-linea);
}
.rc-sf-cab { color: var(--rc-suave); font-size: 11.5px; }
.rc-sf-cab .rc-sf-n { color: var(--rc-tinta); font-weight: 600; font-size: 12.5px; }
.rc-cbx { width: 15px; height: 15px; border-radius: 3px; border: 1px solid #c3ccd7; display: inline-block; }
.rc-cbx.on { background: #122b45; border-color: #122b45; position: relative; }
.rc-cbx.on::after { content: '✓'; position: absolute; inset: 0; color: #fff; font-size: 10px; display: grid; place-items: center; }
.rc-sf-p { display: flex; align-items: center; gap: 8px; min-width: 0; }
.rc-sf-p b { font-weight: 650; display: block; }
.rc-sf-p i { font-style: normal; color: var(--rc-suave); font-size: 11px; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rc-sf-emp { font-weight: 600; }
.rc-btn-suave { background: #eef1f5; border-radius: 5px; padding: 5px 10px; font-size: 11.5px; display: inline-flex; align-items: center; gap: 5px; justify-self: start; white-space: nowrap; }
.rc-sf-loc, .rc-sf-listas { font-size: 11.5px; color: var(--rc-suave); display: inline-flex; align-items: center; gap: 5px; }
.rc-sf-enriq {
  position: absolute; right: 10px; top: 96px; width: 218px;
  background: #fff; border: 1px solid var(--rc-linea); border-radius: 9px;
  padding: 12px; box-shadow: 0 18px 44px -18px rgba(12, 26, 40, .45);
  display: flex; flex-direction: column; gap: 7px;
}
.rc-sf-enriq-h { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.rc-sf-enriq strong { display: flex; align-items: center; gap: 7px; font-size: 13.5px; }
.rc-barra { height: 6px; border-radius: 3px; background: #e3e8ee; display: block; overflow: hidden; }
.rc-barra i { display: block; height: 100%; width: 78%; background: #14c08a; border-radius: 3px; }




.rc-marca-hs { position: relative; width: 20px; height: 20px; flex: none; }
.rc-marca-hs b {
  position: absolute; left: 4px; bottom: 0; width: 9px; height: 9px;
  border-radius: 50%; border: 2.5px solid #ff7a59;
}
.rc-marca-hs i { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: #ff7a59; }
.rc-marca-hs i:nth-child(1) { top: 0; right: 1px; }
.rc-marca-hs i:nth-child(2) { top: 7px; right: 1px; }
.rc-marca-hs i:nth-child(3) { top: 3px; left: 7px; width: 2px; height: 7px; border-radius: 1px; }


.rc-fs-buscar {
  display: flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid #dbe2ea; border-radius: 5px;
  padding: 5px 9px; font-size: 11.5px; color: #3d4d5c;
}
.rc-fs-buscar i { font-style: normal; color: #97a4b2; border-left: 1px solid #dbe2ea; padding-left: 8px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }


.rc-fc-top {
  display: flex; align-items: center; gap: 14px;
  padding: 9px 14px; border-bottom: 1px solid var(--rc-linea); background: #fff;
}
.rc-fc-top > strong { font-size: 15px; }
.rc-fc-top .rc-search {
  flex: 1; max-width: 340px; margin-left: auto;
  background: #fff; border: 1px solid var(--rc-linea); color: #7c8b99;
  display: inline-flex; align-items: center; gap: 7px;
}
.rc-fc-top-i { display: flex; align-items: center; gap: 11px; color: #5b6b7c; }
.rc-fc-top-i .rc-av { width: 22px; height: 22px; font-size: 9px; }
.rc-fc-rail2 {
  flex: none; width: 34px; background: #fff; border-left: 1px solid var(--rc-linea);
  display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 12px 0;
  color: #7c8b99;
}


.rc-halo-plano { display: flex; gap: 8px; align-items: stretch; }
.rc-halo-y {
  list-style: none; margin: 0; padding: 0; flex: none;
  display: flex; flex-direction: column; justify-content: space-between;
  font-size: 9px; color: var(--rc-suave); text-align: right;
  font-variant-numeric: tabular-nums; height: 96px;
}
.rc-halo-plano .rc-halo-svg { flex: 1; height: 96px; overflow: visible; }

.rc-halo-plano { position: relative; }
.rc-halo-puntos { position: absolute; inset: 0 0 0 26px; pointer-events: none; }
.rc-halo-punto { position: absolute; width: 6px; height: 6px; border-radius: 50%; translate: -50% -50%; }
.rc-halo-punto.a { background: #0d4f63; }
.rc-halo-punto.b { background: #1187ad; }
.rc-halo-x { padding-left: 26px; }
.rc-halo-eje { display: block; text-align: center; font-size: 9.5px; color: var(--rc-suave); margin-top: 3px; }
.rc-halo-kpi .v.cian { color: #22c1f0; }
.rc-halo-fb { grid-column: span 2; }
.rc-halo-fb strong { display: block; font-size: 13px; margin-bottom: 8px; }
.rc-halo-pie.chico { width: 84px; height: 84px; }


.rc-sf-titulo { display: flex; align-items: center; gap: 9px; padding: 12px 14px 0; font-size: 15px; font-weight: 650; }
.rc-sf-punto { width: 17px; height: 17px; border-radius: 50%; background: linear-gradient(140deg, #cbb8f5, #8f7ae0); flex: none; }
.rc-sf-historial {
  position: absolute; left: 10px; bottom: 10px; width: 214px;
  background: #f6f8fb; border-radius: 9px; padding: 12px;
  box-shadow: 0 18px 44px -18px rgba(12, 26, 40, .45);
  display: flex; flex-direction: column; gap: 10px;
}
.rc-sf-h-fila { display: flex; gap: 9px; align-items: flex-start; }
.rc-sf-h-fila strong { display: block; font-size: 12.5px; }
.rc-sf-h-ic { width: 22px; height: 22px; border-radius: 5px; background: #fff; border: 1px solid var(--rc-linea); display: grid; place-items: center; flex: none; color: #5b6b7c; }
.rc-sf-h-ic.oscuro { background: #1b2733; color: #fff; border-color: #1b2733; }
.rc-sf-h-fila .rc-tag.lila { background: #ede8fb; color: #5b3fd6; font-weight: 600; margin-left: 6px; }


.rc-nodo.n1 { top: 6%; left: 46%; }
.rc-nodo.n2 { top: 44%; left: 12%; }
.rc-nodo.n3 { top: 44%; right: 5%; }
.rc-nodo.n4 { bottom: 8%; left: 14%; }
.rc-flecha.f1 { width: 1.5px; left: 24%; top: 15%; height: 27%; }
.rc-flecha.f2 { height: 1.5px; top: 49%; left: 44%; width: 21%; background: #94a3b3; }
.rc-flecha.f3 { width: 1.5px; left: 24%; top: 57%; height: 27%; }
.rc-flecha.f1 { background: var(--rc-acento); }
.rc-flecha.f1::after { top: -7px; left: -3.2px; border-bottom-color: var(--rc-acento); border-top-color: transparent; }
.rc-flecha.f3::after { bottom: -7px; left: -3.2px; border-top-color: var(--rc-acento); }


@container (max-width: 900px) {
  .rc-hs-grid { grid-template-columns: 1fr 1fr; }
  .rc-hs-agenda { grid-row: auto; grid-column: span 2; }
  .rc-hs-acciones { grid-column: span 2; }
  .rc-halo-grid { grid-template-columns: repeat(2, 1fr); }
  .rc-halo-linea, .rc-halo-pastel, .rc-halo-tabla { grid-column: span 2; }
  .rc-fsv-split, .rc-d360-cuerpo { grid-template-columns: 1fr; }
  .rc-fsv-cmdb { border-right: 0; border-bottom: 1px solid var(--rc-linea); }
  .rc-d360-pasos { border-right: 0; border-bottom: 1px solid var(--rc-linea); }
  .rc-fc-ficha, .rc-ic-detalles, .rc-ic-cliente { display: none; }
  .rc-sf-enriq { position: static; width: auto; margin: 12px 14px; box-shadow: none; }
}
@media (max-width: 620px) {
  .rc-figura .rc { overflow-x: auto; }
  .rc-figura .rc > * { min-width: 560px; }
}


@media (prefers-reduced-motion: no-preference) {
  .reveal .rc-barra i { animation: rc-crece .9s var(--ease-out, cubic-bezier(.22, 1, .36, 1)) both; }
  @keyframes rc-crece { from { width: 0; } }
}


.hero .hero3d.sin-sitio { opacity: 0; pointer-events: none; }


.rc-pd { --rc-acento: #44bb77; }
.rc-pd-cab {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px; border-bottom: 1px solid var(--rc-linea);
}
.rc-pd-cab strong { font-size: 15px; letter-spacing: -.01em; }
.rc-pd-x { color: var(--rc-suave); font-size: 17px; line-height: 1; }
.rc-pd-cuerpo { padding: 16px 18px 20px; }
.rc-pd-t { font-weight: 650; font-size: 14px; margin-bottom: 10px; }
.rc-pd-tabs {
  display: flex; align-items: center; gap: 20px;
  border-bottom: 1px solid var(--rc-linea); margin-bottom: 16px;
}
.rc-pd-tabs span {
  padding-bottom: 8px; color: var(--rc-suave); white-space: nowrap;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.rc-pd-tabs span.on { color: var(--rc-tinta); font-weight: 650; border-bottom-color: var(--rc-acento); }
.rc-pd-lupa { margin-left: auto; display: flex; }
.rc-pd-rejilla { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.rc-pd-card { margin: 0; }
.rc-pd-card figcaption {
  margin-top: 8px; text-align: center; font-weight: 650; font-size: 12px; line-height: 1.3;
}
.rc-pd-mini {
  aspect-ratio: 4 / 5; border-radius: 4px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px; padding: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: .01em; text-align: center;
}

.rc-pd-mini b { display: block; line-height: 1.15; color: inherit; }
.rc-pd-marca { font-size: 8px; font-weight: 700; opacity: .75; margin-bottom: 6px; letter-spacing: .06em; }
.rc-pd-blanco { border: 1px solid var(--rc-linea); background: #fff; }
.rc-pd-mas { font-size: 24px; font-weight: 400; color: var(--rc-suave); }
.rc-pd-oscura { background: #1b2733; color: #fff; }
.rc-pd-clara  { background: #f1efe9; color: #2f3a2f; }
.rc-pd-verde  { background: linear-gradient(160deg, #2f7d55, #44bb77); color: #fff; }


@container (max-width: 430px) {
  .rc-pd-rejilla { grid-template-columns: repeat(2, 1fr); }
  .rc-pd-tabs { gap: 12px; overflow: hidden; }
  .rc-pd-tabs span:nth-child(n+3) { display: none; }
}


.rc-ss { --rc-acento: #0ea5e9; }
.rc-ss-nav { width: 158px; padding: 14px 10px; background: var(--rc-fondo); display: flex; flex-direction: column; gap: 2px; }
.rc-ss-navmarca { display: flex; align-items: center; gap: 8px; padding: 0 4px 12px; }
.rc-ss-navmarca i { width: 22px; height: 22px; border-radius: 6px; background: var(--rc-acento); color: #fff; font-style: normal; font-weight: 700; font-size: 12px; display: grid; place-items: center; flex: none; }
.rc-ss-navmarca b { font-size: 12.5px; font-weight: 650; }
.rc-ss-navsec { font-size: 9.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--rc-suave); padding: 10px 8px 4px; }
.rc-ss-navitem { display: flex; align-items: center; gap: 8px; padding: 7px 8px; border-radius: 6px; font-size: 12px; }
.rc-ss-navitem .rc-i { color: var(--rc-suave); }
.rc-ss-navitem.on { background: #fff; box-shadow: 0 1px 3px rgba(12, 26, 40, .08); font-weight: 600; }
.rc-ss-navitem.on .rc-i { color: var(--rc-acento); }
.rc-ss-navitem b { margin-left: auto; font-size: 10.5px; font-weight: 600; }
.rc-ss-pane .rc-cab h6 { margin-bottom: 10px; }
.rc-ss-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 14px 14px 0; }
.rc-ss-kpi { background: var(--rc-fondo); border-radius: 8px; padding: 10px 12px; display: flex; flex-direction: column; gap: 3px; }
.rc-ss-kpi .v { font-size: 21px; font-weight: 700; line-height: 1.1; }
.rc-ss-kpi .v.sky { color: #0ea5e9; }
.rc-ss-kpi .v.teal { color: #0d9488; }
.rc-ss-kpi .v.verde { color: #16a34a; }
.rc-ss-kpi .l { font-size: 10.5px; color: var(--rc-suave); }
.rc-ss-kpi .t { font-size: 9.5px; color: #16a34a; }
.rc-ss-chart { padding: 18px 14px 4px; }
.rc-ss-chart-t { font-size: 10.5px; font-weight: 600; color: var(--rc-suave); text-transform: uppercase; letter-spacing: .04em; display: block; margin-bottom: 8px; }
.rc-ss-bars { display: flex; align-items: flex-end; gap: 8px; height: 88px; }
.rc-ss-bar { display: block; flex: 1; border-radius: 3px 3px 0 0; }
.rc-ss-months { display: flex; gap: 8px; margin-top: 6px; }
.rc-ss-months span { flex: 1; text-align: center; font-size: 9.5px; color: var(--rc-suave); }
.rc-ss-nps { display: flex; gap: 24px; padding: 18px 14px 16px; border-top: 1px solid var(--rc-linea); margin-top: 10px; flex-wrap: wrap; }
.rc-ss-nps-col { flex: 1.2; min-width: 200px; }
.rc-ss-nps-col strong, .rc-ss-canales strong { display: block; font-size: 12px; margin-bottom: 8px; }
.rc-ss-npsbar { display: flex; height: 8px; border-radius: 4px; overflow: hidden; margin-bottom: 10px; }
.rc-ss-npsbar i.det { background: #fecaca; }
.rc-ss-npsbar i.pas { background: #fef08a; }
.rc-ss-npsbar i.pro { background: #0ea5e9; }
.rc-ss-npsrow { display: flex; align-items: center; gap: 16px; }
.rc-ss-score { font-size: 28px; font-weight: 700; }
.rc-ss-leg { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 5px; font-size: 11px; }
.rc-ss-leg i { width: 9px; height: 9px; border-radius: 2px; display: inline-block; margin-right: 6px; vertical-align: -1px; }
.rc-ss-leg i.det { background: #fecaca; }
.rc-ss-leg i.pas { background: #fef08a; }
.rc-ss-leg i.pro { background: #0ea5e9; }
.rc-ss-canales { flex: 1; min-width: 170px; display: flex; flex-direction: column; gap: 7px; }
.rc-ss-crow { display: flex; align-items: center; gap: 8px; font-size: 11px; }
.rc-ss-crow .n { width: 62px; color: var(--rc-suave); flex: none; }
.rc-ss-crow .rc-barra { flex: 1; }
.rc-ss-crow .v { width: 28px; text-align: right; font-weight: 600; flex: none; }
@container (max-width: 900px) {
  .rc-ss-kpis { grid-template-columns: repeat(2, 1fr); }
}


@media (max-width: 700px) {
  footer .f-links { gap: 2px; }
  footer .f-links a { padding-block: 7px; }
  .f-social a { width: 44px; height: 44px; }
  
  .f-country { gap: 8px; }
  .f-country a { padding-block: 7px; }
  
  .footer-bottom .fb-links { gap: 4px 18px; }
  .footer-bottom .fb-links a { padding-block: 7px; }
}


.hero-grid > *,
.split > *,
.stat-band > *,
.stats-row > * { min-width: 0; }

.app-window { max-width: 100%; }


.grid > * { min-width: 0; }





.pill:not([class*="pill-"]) {
  color: var(--marca-claro, var(--ink-2));
  border-color: var(--marca-claro, var(--line));
}
.bg-dark .pill:not([class*="pill-"]),
.hero-dark .hero-tags .pill:not([class*="pill-"]) {
  color: var(--marca-oscuro, var(--on-dark));
  border-color: var(--marca-oscuro, var(--dark-line));
}


.app-window .aw-kpi .d.up { color: var(--marca-claro, var(--zen-green-600)); }
.bg-dark .app-window .aw-kpi .d.up { color: var(--marca-oscuro, var(--zen-green-600)); }





@media (max-width: 600px) {
  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .hero-centro .hero-meta { align-items: center; }
  .hero-meta > span + span::before { content: none; }
}


@media (max-width: 700px) {
  .aw-body { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .aw-body > table { min-width: 460px; }
}


@media (max-width: 700px) {
  footer .f-links { gap: 0; }
  footer .f-links a { padding-block: 12px; }
  .f-country a { padding-block: 12px; }
  .footer-bottom .fb-links a { padding-block: 12px; }
}


.rc-zl { --rc-acento: #00777f; }
.rc-zl-nav { width: 168px; padding: 14px 10px; background: var(--rc-fondo); display: flex; flex-direction: column; gap: 2px; }
.rc-zl-marca { display: flex; align-items: center; gap: 8px; padding: 0 4px 12px; }
.rc-zl-marca i {
  width: 22px; height: 22px; border-radius: 6px; background: var(--rc-acento);
  color: #fff; font-style: normal; font-weight: 700; font-size: 12px;
  display: grid; place-items: center; flex: none;
}
.rc-zl-marca b { font-size: 12.5px; font-weight: 650; }
.rc-zl-sec { font-size: 9.5px; letter-spacing: .07em; text-transform: uppercase; color: var(--rc-suave); padding: 10px 8px 4px; }
.rc-zl-item { display: flex; align-items: center; gap: 8px; padding: 7px 8px; border-radius: 6px; font-size: 11.5px; }
.rc-zl-item .rc-i { color: var(--rc-suave); }
.rc-zl-item.on { background: #fff; box-shadow: 0 1px 3px rgba(12, 26, 40, .08); font-weight: 600; }
.rc-zl-item.on .rc-i { color: var(--rc-acento); }
.rc-zl-item b { margin-left: auto; font-size: 10.5px; font-weight: 700; color: #c2410c; }
.rc-zl-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 14px 14px 0; }
.rc-zl-kpi { background: var(--rc-fondo); border-radius: 8px; padding: 10px 12px; display: flex; flex-direction: column; gap: 3px; }
.rc-zl-kpi .v { font-size: 20px; font-weight: 700; line-height: 1.1; }
.rc-zl-kpi .v.ambar { color: #b45309; }
.rc-zl-kpi .v.rojo  { color: #b91c1c; }
.rc-zl-kpi .v.cian  { color: #00777f; }
.rc-zl-kpi .v.verde { color: #15803d; }
.rc-zl-kpi .l { font-size: 10.5px; color: var(--rc-suave); }
.rc-zl-kpi .t { font-size: 9.5px; color: var(--rc-suave); }
.rc-zl-tabla { padding: 16px 14px 0; }
.rc-zl-th, .rc-zl-tr {
  display: grid; grid-template-columns: 1.7fr .6fr .8fr .5fr .9fr;
  align-items: center; gap: 8px;
}
.rc-zl-th {
  font-size: 9.5px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--rc-suave); padding-bottom: 7px; border-bottom: 1px solid var(--rc-linea);
}
.rc-zl-tr { padding: 9px 0; border-bottom: 1px solid var(--rc-linea); font-size: 11.5px; }
.rc-zl-app { display: flex; align-items: center; gap: 9px; min-width: 0; }
.rc-zl-app i { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; font-size: 13px; font-style: normal; flex: none; }
.rc-zl-app b { display: block; font-weight: 600; }
.rc-zl-app em { display: block; font-style: normal; font-size: 9.5px; color: var(--rc-suave); }
.rc-zl-chip { font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 999px; justify-self: start; white-space: nowrap; }
.rc-zl-chip.ok     { background: #dcfce7; color: #15803d; }
.rc-zl-chip.aviso  { background: #fef3c7; color: #b45309; }
.rc-zl-chip.riesgo { background: #fee2e2; color: #b91c1c; }
.rc-zl-riesgos { padding: 16px 14px 16px; }
.rc-zl-riesgos strong { display: block; font-size: 12px; margin-bottom: 10px; }
.rc-zl-riesgo { display: flex; align-items: center; gap: 10px; font-size: 11px; margin-bottom: 7px; }
.rc-zl-riesgo .n { flex: 1; min-width: 0; color: var(--rc-suave); }
.rc-zl-riesgo .rc-barra { width: 110px; flex: none; }
.rc-zl-riesgo .rc-barra i.rojo  { background: #ef4444; }
.rc-zl-riesgo .rc-barra i.ambar { background: #f59e0b; }
.rc-zl-riesgo .rc-barra i.cian  { background: #06b6d4; }
.rc-zl-riesgo .v { width: 24px; text-align: right; font-weight: 700; flex: none; }
.rc-zl-riesgo .v.rojo  { color: #b91c1c; }
.rc-zl-riesgo .v.ambar { color: #b45309; }
.rc-zl-riesgo .v.cian  { color: #00777f; }


.rc-pt { --rc-acento: #0071b1; }
.rc-pt-cab {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; border-bottom: 1px solid var(--rc-linea); background: var(--rc-fondo);
}
.rc-pt-cab strong { font-size: 12px; color: var(--rc-suave); font-weight: 600; }
.rc-pt-dots { display: flex; gap: 5px; }
.rc-pt-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--rc-linea); }
.rc-pt-dots i:nth-child(1) { background: #ff5f57; }
.rc-pt-dots i:nth-child(2) { background: #febc2e; }
.rc-pt-dots i:nth-child(3) { background: #28c840; }
.rc-pt-cuerpo { padding: 16px 16px 18px; }
.rc-pt-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.rc-pt-kpi { background: var(--rc-fondo); border-radius: 8px; padding: 12px 14px; display: flex; flex-direction: column; gap: 3px; }
.rc-pt-kpi .v { font-size: 24px; font-weight: 700; line-height: 1.1; color: var(--rc-acento); }
.rc-pt-kpi .l { font-size: 10.5px; color: var(--rc-suave); }
.rc-pt-kpi .t { font-size: 10px; color: #15803d; }
.rc-pt-grafico { margin-top: 18px; }
.rc-pt-t { font-size: 10.5px; color: var(--rc-suave); display: block; margin-bottom: 8px; }
.rc-pt-bars { display: flex; align-items: flex-end; gap: 6px; height: 92px; }
.rc-pt-bar { display: block; flex: 1; border-radius: 3px 3px 0 0; background: #bfdcef; }
.rc-pt-bar.alta { background: var(--rc-acento); }
.rc-pt-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.rc-pt-card { background: var(--rc-fondo); border-radius: 8px; padding: 12px 14px; }
.rc-pt-card strong { display: block; font-size: 11.5px; margin-bottom: 10px; }
.rc-pt-prog { margin-bottom: 9px; }
.rc-pt-prog .e { display: flex; justify-content: space-between; font-size: 10.5px; margin-bottom: 4px; }
.rc-pt-prog .e b { font-weight: 600; }
.rc-pt-prog .rc-barra i { background: var(--rc-acento); }
.rc-pt-pipe { display: flex; align-items: center; margin: 4px 0 10px; }
.rc-pt-pipe .p-dot { display: block; width: 11px; height: 11px; border-radius: 50%; background: var(--rc-acento); flex: none; }
.rc-pt-pipe .p-line { display: block; flex: 1; height: 2px; background: var(--rc-acento); opacity: .45; }
.rc-pt-etapas { display: block; font-size: 10px; color: var(--rc-suave); }
.rc-pt-vivo { display: block; margin-top: 8px; font-size: 10px; color: #15803d; }


@container (max-width: 900px) {
  .rc-zl-kpis { grid-template-columns: repeat(2, 1fr); }
  .rc-pt-row2 { grid-template-columns: 1fr; }
}


.arq { --arq-acento: #995c00; --arq-linea: var(--line); max-width: 860px; margin-inline: auto; }
.arq-capa, .arq-sub {
  border: 1px solid var(--arq-linea); border-radius: 14px;
  padding: 16px; background: var(--surface);
}
.arq-et, .arq-sub-et, .arq-vpc-et {
  display: block; font-size: .6875rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.arq-fila { display: flex; flex-wrap: wrap; gap: 12px; }
.arq-n {
  
  display: block;
  flex: 1 1 170px; min-width: 0;
  border: 1px solid var(--arq-linea); border-left: 3px solid var(--arq-acento);
  border-radius: 10px; padding: 11px 14px; background: var(--surface);
}
.arq-n b { display: block; font-size: .875rem; font-weight: 700; line-height: 1.3; }
.arq-n em { display: block; font-style: normal; font-size: .75rem; color: var(--muted); margin-top: 2px; }


.arq-vpc {
  position: relative; border: 2px dashed var(--arq-acento); border-radius: 16px;
  padding: 26px 16px 16px; margin: 0;
  background: color-mix(in srgb, var(--arq-acento) 4%, transparent);
}
.arq-vpc-et {
  position: absolute; top: -10px; left: 18px; margin: 0;
  background: var(--surface-2); padding: 0 8px; color: var(--arq-acento);
}
.arq-vpc .arq-sub { background: var(--surface); }


.arq-baja {
  display: block; width: 2px; height: 22px; margin: 0 auto;
  background: var(--arq-acento); opacity: .45; position: relative;
}
.arq-baja::after {
  content: ''; position: absolute; bottom: -1px; left: 50%; translate: -50% 0;
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 6px solid var(--arq-acento);
}


.arq-az { gap: 12px; }
.arq-zona {
  flex: 1 1 200px; min-width: 0;
  display: flex; flex-direction: column; gap: 10px;
  border: 1px dashed var(--arq-linea); border-radius: 12px; padding: 12px;
  background: var(--surface-2);
}
.arq-zona > i {
  display: block; font-style: normal; font-size: .6875rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px;
}

.arq-zona .arq-n { background: var(--surface); flex: 0 0 auto; }


.bg-dark .arq { --arq-acento: #ff9900; --arq-linea: var(--dark-line); }
.bg-dark .arq-capa, .bg-dark .arq-sub, .bg-dark .arq-n, .bg-dark .arq-zona .arq-n { background: rgba(255, 255, 255, .04); }
.bg-dark .arq-vpc-et { background: var(--dark-2, var(--dark)); }


@media (max-width: 640px) {
  .arq-n, .arq-zona { flex-basis: 100%; }
  .arq-capa, .arq-sub { padding: 14px; }
  .arq-vpc { padding: 24px 12px 14px; }
}
