/* ═══════════════════════════════════════════════════════════
   VS GROUP — Ultra Premium CSS
   Full stylesheet · Zero compromises
═══════════════════════════════════════════════════════════ */

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

:root {
  --navy:        #080F1E;
  --navy-2:      #0D1A30;
  --navy-3:      #152340;
  --blue:        #1A56DB;
  --blue-mid:    #2563EB;
  --blue-light:  #3B82F6;
  --blue-glow:   rgba(37,99,235,0.4);
  --gold:        #B8960C;
  --gold-light:  #D4AF37;
  --gold-glow:   rgba(212,175,55,0.3);
  --graphite:    #1E293B;
  --slate:       #334155;
  --gray:        #64748B;
  --gray-light:  #94A3B8;
  --silver:      #CBD5E1;
  --light:       #F1F5F9;
  --off-white:   #F8FAFC;
  --white:       #FFFFFF;
  --green:       #059669;
  --red:         #DC2626;
  --font:        'Inter', sans-serif;
  --font-display:'Syne', sans-serif;
  --font-serif:  'DM Serif Display', serif;
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
  --r-sm:        6px;
  --r:           12px;
  --r-lg:        20px;
  --r-xl:        32px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-md:   0 12px 48px rgba(0,0,0,0.14);
  --shadow-lg:   0 24px 80px rgba(0,0,0,0.22);
  --shadow-dark: 0 24px 80px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--graphite); background: var(--white); line-height: 1.6; overflow-x: hidden; cursor: none; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
h1,h2,h3,h4,h5 { line-height: 1.15; }
em { font-style: italic; color: inherit; }
strong { font-weight: 700; }

/* ─── JAM TOPBAR ─── */
.jam-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1002;
  height: 34px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid rgba(8,15,30,0.08);
}
.jam-topbar-inner {
  max-width: 1200px; height: 100%; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: flex-end;
}
.jam-topbar a {
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--slate); opacity: .84; transition: opacity .2s, color .2s;
}
.jam-topbar a:hover { color: var(--blue-mid); opacity: 1; }

/* ─── CUSTOM CURSOR ─── */
#cursor {
  position: fixed; top: 0; left: 0; z-index: 99999;
  width: 10px; height: 10px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .15s var(--ease), height .15s var(--ease), background .2s;
  mix-blend-mode: multiply;
}
#cursor-follower {
  position: fixed; top: 0; left: 0; z-index: 99998;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(37,99,235,0.5);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform .12s var(--ease), width .3s var(--ease), height .3s var(--ease), border-color .3s;
}
body:has(a:hover) #cursor, body:has(button:hover) #cursor { width: 16px; height: 16px; }
body:has(a:hover) #cursor-follower, body:has(button:hover) #cursor-follower { width: 52px; height: 52px; border-color: var(--blue-mid); }

/* ─── SCROLL PROGRESS ─── */
#scroll-progress-bar {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 10000;
  background: linear-gradient(90deg, var(--blue), var(--gold-light), var(--blue-light));
  width: 0%;
  transition: width .05s linear;
  transform-origin: left;
}

/* ─── CONTAINER ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ─── TYPOGRAPHY ─── */
.section-tag {
  display: inline-block;
  font-size: .65rem; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--blue-mid);
  padding: 5px 14px; border-radius: 100px;
  background: rgba(37,99,235,.08);
  border: 1px solid rgba(37,99,235,.15);
  margin-bottom: 20px;
}
.section-tag.light { color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.section-title.light { color: var(--white); }
.section-title em { font-style: italic; color: var(--blue-mid); font-family: var(--font-serif); font-weight: 400; font-size: 1.05em; }
.section-title.light em { color: #93C5FD; }

.section-intro {
  font-size: 1.05rem; color: var(--gray);
  max-width: 660px; line-height: 1.75;
  margin-bottom: 64px;
}
.section-intro.light { color: rgba(255,255,255,.6); }

.subsection-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

/* ─── SECTIONS ─── */
.section { padding: 120px 0; }
.section-light { background: var(--white); }
.section-dark { background: var(--navy); }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed; top: 34px; left: 0; right: 0; z-index: 1000;
  background: rgba(8,15,30,.93);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: all .3s var(--ease);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo-link { cursor: none; }
.nav-logo { display: flex; align-items: baseline; gap: 3px; }
.nl-vs { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--white); letter-spacing: -.02em; }
.nl-group { font-size: .78rem; font-weight: 700; color: var(--blue-light); letter-spacing: .12em; text-transform: uppercase; }
.nav-links { display: flex; list-style: none; gap: 2px; align-items: center; }
.nav-item {
  color: rgba(255,255,255,.55); font-size: .8rem; font-weight: 500;
  letter-spacing: .04em; padding: 7px 13px; border-radius: var(--r-sm);
  transition: all .2s; cursor: none;
}
.nav-item:hover, .nav-item.active { color: var(--white); background: rgba(255,255,255,.07); }
.nav-burger { display: none; background: none; border: 1px solid rgba(255,255,255,.2); color: var(--white); width: 40px; height: 40px; border-radius: var(--r-sm); cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-burger span { display: block; width: 18px; height: 1.5px; background: currentColor; transition: all .3s; }

/* ─── MOBILE OVERLAY ─── */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.77,0,.175,1);
}
.mobile-overlay.open { transform: translateX(0); }
.mob-close {
  position: absolute; top: 24px; right: 24px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  color: var(--white); width: 48px; height: 48px;
  border-radius: var(--r-sm); cursor: pointer; font-size: 1.1rem;
}
.mob-nav { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.mob-link {
  color: var(--white); font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  padding: 10px 40px; border-radius: var(--r); transition: all .2s; cursor: pointer;
  letter-spacing: -.02em;
}
.mob-link:hover { background: rgba(255,255,255,.07); color: var(--blue-light); }

/* ═══════════ HERO ═══════════ */
.hero {
  min-height: 100vh; background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
#heroCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: .6; pointer-events: none;
}
.hero-noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: .4;
}
.hero-inner {
  position: relative; z-index: 2;
  text-align: center;
  padding: 100px 28px 80px;
  max-width: 1000px; width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .62rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  margin-bottom: 56px;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-mid); box-shadow: 0 0 8px var(--blue-glow);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }

.hero-names {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.hn-old, .hn-new { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.hn-label {
  font-size: .62rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
}
.hn-text {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800; line-height: .95;
  letter-spacing: -.03em;
}
.hn-text.crossing {
  color: rgba(255,255,255,.18);
  position: relative;
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,.15);
}
.hn-text.glowing {
  color: var(--white);
  text-shadow: 0 0 60px rgba(37,99,235,.5), 0 0 120px rgba(37,99,235,.2);
  animation: textGlow 3s ease-in-out infinite;
}
@keyframes textGlow {
  0%,100%{ text-shadow: 0 0 60px rgba(37,99,235,.5), 0 0 120px rgba(37,99,235,.2); }
  50%{ text-shadow: 0 0 80px rgba(37,99,235,.7), 0 0 160px rgba(37,99,235,.35); }
}
.hn-arrow {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding-top: 16px;
}
.arrow-track {
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-mid), transparent);
  position: relative; overflow: hidden;
}
.arrow-head {
  font-size: .9rem; color: var(--blue-mid);
  animation: arrowPulse 1.5s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%,100%{ transform: translateX(0); opacity: 1; }
  50%{ transform: translateX(6px); opacity: .6; }
}
.arrow-label { font-size: .6rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.25); }

.hero-desc {
  font-size: 1.1rem; color: rgba(255,255,255,.55);
  max-width: 620px; margin: 0 auto 48px;
  line-height: 1.75;
}
.hero-desc em { font-style: italic; color: rgba(255,255,255,.75); }

.hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-bottom: 60px;
}
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.65);
  font-size: .78rem; font-weight: 500;
  padding: 8px 16px; border-radius: 100px;
  transition: all .3s; cursor: none;
}
.pill:hover { background: rgba(37,99,235,.15); border-color: rgba(37,99,235,.4); color: var(--white); }
.pill i { color: var(--blue-light); font-size: .8rem; }

.hero-data-row {
  display: inline-flex; align-items: center; flex-wrap: wrap; justify-content: center; gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r);
  padding: 22px 32px; gap: 0;
}
.hdr-item { text-align: center; padding: 0 28px; }
.hdr-item strong { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--white); }
.hdr-item strong sup { font-size: .7em; vertical-align: super; }
.hdr-item span { font-size: .7rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .08em; }
.hdr-sep { width: 1px; height: 44px; background: rgba(255,255,255,.1); }

.hero-scroll-cta {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: none; z-index: 2;
}
.hero-scroll-cta span { font-size: .68rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.scroll-line { width: 1px; height: 48px; background: rgba(255,255,255,.1); overflow: hidden; border-radius: 100px; }
.scroll-line span { display: block; width: 100%; height: 50%; background: var(--blue-mid); animation: scrollAnim 1.8s ease-in-out infinite; }
@keyframes scrollAnim { 0%{transform:translateY(-100%)} 100%{transform:translateY(200%)} }

/* ─── MANIFESTO BAND ─── */
.manifesto-band {
  background: var(--blue-mid);
  padding: 14px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mb-track {
  display: flex; gap: 24px; white-space: nowrap;
  animation: bandScroll 30s linear infinite;
  width: max-content;
}
.mb-track span { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.85); }
.mb-dot { opacity: .4; }
@keyframes bandScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══════════ DIAGNÓSTICO ═══════════ */
#diagnostico { background: var(--off-white); }

.diag-split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 64px; }
.diag-right { display: flex; flex-direction: column; gap: 20px; }

.diag-card {
  background: var(--white); border: 1px solid var(--silver);
  border-radius: var(--r-lg); padding: 36px;
  transition: all .35s var(--ease);
}
.diag-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.diag-card.diag-dark { background: var(--navy); border-color: transparent; }
.diag-card.diag-warn { background: #FFF5F5; border-color: #FECACA; }

.dc-icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: rgba(37,99,235,.08); color: var(--blue-mid);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  margin-bottom: 16px;
}
.dc-icon.blue { background: rgba(37,99,235,.08); color: var(--blue-mid); }
.dc-icon.red { background: rgba(220,38,38,.08); color: var(--red); }
.diag-dark .dc-icon { background: rgba(255,255,255,.08); color: #93C5FD; }

.diag-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 18px; color: var(--navy); }
.diag-dark h3 { color: var(--white); }
.diag-warn h3 { color: #991B1B; }

.fact-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fact-list li { display: flex; align-items: flex-start; gap: 9px; font-size: .86rem; line-height: 1.45; color: var(--graphite); }
.diag-dark .fact-list li { color: rgba(255,255,255,.7); }
.diag-warn .fact-list li { color: #7F1D1D; }
.fact-list li i { margin-top: 2px; flex-shrink: 0; }
.fa-check-circle { color: var(--green); }
.fa-check-circle.green { color: var(--green); }
.fa-times-circle { color: var(--red); }
.fa-times-circle.red { color: var(--red); }
.diag-dark .fa-check-circle { color: #6EE7B7; }

/* Market block */
.market-block { margin-bottom: 64px; }
.mb-header { margin-bottom: 32px; }
.mb-header h3 { font-size: 1.4rem; font-weight: 700; color: var(--navy); }

.market-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.mkt-stat {
  background: var(--white); border: 1px solid var(--silver);
  border-radius: var(--r); padding: 24px 20px; text-align: center;
  transition: all .3s; cursor: default;
}
.mkt-stat:hover { border-color: var(--blue-mid); box-shadow: var(--shadow); transform: translateY(-3px); }
.mkt-number { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--navy); line-height: 1.1; margin-bottom: 6px; }
.mkt-number span { font-size: 1rem; }
.mkt-number i { font-size: 1.6rem; color: var(--blue-mid); }
.mkt-label { font-size: .75rem; color: var(--gray); line-height: 1.4; }
.mkt-label strong { color: var(--navy); display: block; margin-bottom: 2px; }
.highlight-stat { background: var(--navy); border-color: transparent; }
.highlight-stat .mkt-number { color: var(--white); }
.highlight-stat .mkt-label { color: rgba(255,255,255,.5); }
.highlight-stat .mkt-label strong { color: var(--white); }

/* Audit */
.audit-block { background: var(--white); border: 1px solid var(--silver); border-radius: var(--r-lg); padding: 48px; }
.audit-header { margin-bottom: 36px; }
.audit-header h3 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.audit-header p { font-size: .85rem; color: var(--gray); }
.audit-bars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 48px; }
.ab-item { }
.ab-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.ab-name { font-size: .83rem; font-weight: 500; color: var(--graphite); }
.ab-val { font-size: .83rem; font-weight: 700; color: var(--green); }
.ab-val.bad-val { color: var(--red); }
.ab-val.mid-val { color: #D97706; }
.ab-track { height: 7px; background: var(--light); border-radius: 100px; overflow: hidden; }
.ab-fill { height: 100%; border-radius: 100px; width: 0; transition: width 1.6s cubic-bezier(.4,0,.2,1); }
.ab-fill.good { background: linear-gradient(90deg, #059669, #34D399); }
.ab-fill.bad { background: linear-gradient(90deg, #DC2626, #F87171); }
.ab-fill.mid { background: linear-gradient(90deg, #D97706, #FBBF24); }

/* ═══════════ CONCEITO ═══════════ */
#conceito { background: var(--navy-2); }

.manifesto-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid var(--blue-mid);
  border-radius: var(--r-lg); padding: 48px;
  margin-bottom: 80px; position: relative;
}
.mc-quote { position: absolute; top: 32px; right: 40px; font-size: 4rem; color: rgba(37,99,235,.15); }
.mc-text {
  font-size: 1.15rem; line-height: 1.9; color: rgba(255,255,255,.75);
  font-style: italic; max-width: 820px;
}
.mc-author { display: flex; align-items: center; gap: 16px; margin-top: 28px; }
.mca-line { width: 40px; height: 2px; background: var(--blue-mid); }
.mc-author span { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); }

.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 64px; }
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r); padding: 28px;
  transition: all .3s var(--ease);
}
.why-card:hover { background: rgba(255,255,255,.07); border-color: rgba(37,99,235,.4); transform: translateY(-3px); }
.wc-num { font-size: .6rem; font-weight: 800; letter-spacing: .2em; color: var(--blue-mid); margin-bottom: 12px; }
.why-card h4 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.6; }

.pillars-row {
  display: flex; align-items: stretch; background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-lg);
  overflow: hidden;
}
.pillar { flex: 1; padding: 40px 32px; text-align: center; }
.pillar-sep { width: 1px; background: rgba(255,255,255,.07); }
.pl-icon { font-size: 1.5rem; color: var(--blue-light); margin-bottom: 16px; }
.pillar h4 { font-size: .65rem; font-weight: 800; letter-spacing: .18em; color: var(--gold-light); margin-bottom: 10px; }
.pillar p { font-size: .86rem; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ═══════════ POSICIONAMENTO ═══════════ */
#posicionamento { background: var(--white); }

/* Territory */
.territory-block {
  position: relative; margin-bottom: 80px;
  background: var(--off-white); border: 1px solid var(--silver);
  border-radius: var(--r-xl); padding: 60px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center;
}
.territory-center {
  text-align: center;
  background: var(--navy); border-radius: var(--r-lg);
  padding: 40px; display: flex; flex-direction: column; align-items: center; gap: 12px;
  box-shadow: var(--shadow-dark);
}
.tc-badge {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--white); letter-spacing: -.02em;
}
.territory-center p { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); }
.territory-arms { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ta-item {
  background: var(--white); border: 1px solid var(--silver);
  border-radius: var(--r); padding: 24px;
  transition: all .3s;
}
.ta-item:hover { border-color: var(--blue-mid); box-shadow: var(--shadow); transform: translateY(-3px); }
.tai-icon { font-size: 1.2rem; color: var(--blue-mid); margin-bottom: 10px; }
.ta-item strong { display: block; font-size: .9rem; color: var(--navy); margin-bottom: 4px; }
.ta-item span { font-size: .8rem; color: var(--gray); line-height: 1.4; }

/* Positioning map */
.positioning-map { margin-bottom: 80px; }
.positioning-map h3 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 28px; }
.pos-map-wrap {
  position: relative; background: var(--off-white);
  border: 1px solid var(--silver); border-radius: var(--r-lg);
  padding: 40px; overflow: hidden;
}
.pm-axis {
  position: absolute; font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gray-light);
}
.pm-y { top: 20px; left: 50%; transform: translateX(-50%) translateX(-200px); writing-mode: vertical-rl; transform: rotate(-90deg); top: 50%; left: 10px; white-space: nowrap; }
.pm-x { bottom: 16px; left: 50%; transform: translateX(-50%); }
.pm-grid {
  position: relative; width: 100%; height: 360px;
  background: 
    linear-gradient(rgba(37,99,235,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.06) 1px, transparent 1px);
  background-size: 25% 25%;
  border: 1px solid rgba(37,99,235,.1);
  border-radius: var(--r);
}
.pm-grid::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: rgba(37,99,235,.2); }
.pm-grid::after { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(37,99,235,.2); }
.pm-dot {
  position: absolute; transform: translate(-50%,-50%);
  cursor: default;
}
.pm-vsgroup .pmd-ring {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue-mid); box-shadow: 0 0 20px var(--blue-glow);
  animation: ringPulse 2.5s ease-in-out infinite;
}
@keyframes ringPulse {
  0%,100%{box-shadow:0 0 20px var(--blue-glow)}
  50%{box-shadow:0 0 40px var(--blue-glow), 0 0 60px rgba(37,99,235,.2)}
}
.pm-atual .pmd-label, .pm-comp .pmd-label, .pm-ref .pmd-label {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gray-light);
}
.pm-atual .pmd-label { background: rgba(100,116,139,.5); }
.pm-comp .pmd-label { background: rgba(100,116,139,.35); }
.pm-ref .pmd-label { background: rgba(30,58,138,.3); }
.pmd-label {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  font-size: .68rem; font-weight: 600; color: var(--gray); text-align: center; white-space: nowrap;
}
.pm-vsgroup .pmd-label { color: var(--blue-mid); font-weight: 700; }
.pm-vsgroup .pmd-label small { display: block; font-size: .6rem; color: var(--gray-light); font-weight: 400; }
.pm-arrow { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.pm-labels {
  position: absolute; inset: 0; pointer-events: none;
  font-size: .62rem; color: var(--silver); letter-spacing: .06em; text-transform: uppercase;
  line-height: 1.4;
}
.pm-l { position: absolute; }
.pm-l-tl { top: 8px; left: 12px; }
.pm-l-tr { top: 8px; right: 12px; text-align: right; }
.pm-l-bl { bottom: 8px; left: 12px; }
.pm-l-br { bottom: 8px; right: 12px; text-align: right; }

/* Verbal block */
.verbal-block h3 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.verbal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.vb-col { background: var(--off-white); border: 1px solid var(--silver); border-radius: var(--r-lg); padding: 36px; }
.vb-col h4 { display: flex; align-items: center; gap: 10px; font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--silver); }
.vb-positive h4 { color: var(--green); }
.vb-negative h4 { color: var(--red); }
.vb-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.vb-col li { font-size: .88rem; color: var(--graphite); display: flex; align-items: center; gap: 10px; }
.vb-col li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.vb-positive li::before { background: var(--green); }
.vb-negative li::before { background: var(--red); }

/* ═══════════ TRANSIÇÃO ═══════════ */
#transicao { background: var(--navy); }

.timeline { margin-bottom: 80px; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 120px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--blue-mid), rgba(37,99,235,.05));
}
.tl-item { display: grid; grid-template-columns: 120px 60px 1fr; gap: 0; margin-bottom: 60px; }
.tl-last { margin-bottom: 0; }
.tl-left { padding-right: 24px; text-align: right; }
.tl-phase { font-size: .6rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--blue-light); margin-bottom: 4px; }
.tl-phase.p2 { color: #34D399; }
.tl-phase.p3 { color: var(--gold-light); }
.tl-phase.p4 { color: #F9A8D4; }
.tl-time { font-size: .72rem; color: rgba(255,255,255,.3); margin-bottom: 8px; }
.tl-title { font-size: .82rem; font-weight: 700; color: var(--white); font-style: italic; }
.tl-name { font-size: .72rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }
.tl-center { display: flex; flex-direction: column; align-items: center; padding-top: 4px; }
.tl-dot { width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.2); flex-shrink: 0; }
.tl-dot.tl-dot-active { background: var(--blue-mid); border-color: var(--blue-mid); box-shadow: 0 0 16px var(--blue-glow); }
.tl-dot.tl-dot-gold { background: var(--gold-light); border-color: var(--gold-light); box-shadow: 0 0 16px var(--gold-glow); }
.tl-line { flex: 1; width: 1px; background: rgba(255,255,255,.06); }
.tl-right { padding-left: 32px; padding-bottom: 48px; }
.tl-logo-demo {
  display: inline-flex; flex-direction: column; gap: 2px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-sm); padding: 14px 20px;
  margin-bottom: 16px;
}
.tld-main { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--white); letter-spacing: -.02em; }
.tld-sub { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.tld-sub.sm { font-size: .65rem; color: rgba(255,255,255,.3); }
.tld-sub.xs { font-size: .6rem; letter-spacing: .12em; color: rgba(255,255,255,.2); }
.final-demo .tld-main.gold { color: var(--gold-light); font-size: 2rem; text-shadow: 0 0 30px var(--gold-glow); }
.tl-right > p { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 18px; }
.tl-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.tl-list li { font-size: .82rem; color: rgba(255,255,255,.45); display: flex; align-items: flex-start; gap: 8px; }
.tl-list li::before { content: '→'; color: var(--blue-mid); font-weight: 700; flex-shrink: 0; }

/* Checklist */
.checklist-block { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-xl); padding: 48px; }
.checklist-block h3 { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 36px; }
.ck-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.ck-col { }
.ck-icon { font-size: 1.2rem; color: var(--blue-light); margin-bottom: 12px; }
.ck-col h4 { font-size: .85rem; font-weight: 700; color: var(--white); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.ck-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.ck-col li { font-size: .82rem; color: rgba(255,255,255,.45); display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.ck-col li::before { content: '·'; color: var(--blue-mid); font-weight: 900; flex-shrink: 0; font-size: 1rem; line-height: 1.2; }

/* ═══════════ IDENTIDADE ═══════════ */
#identidade { background: var(--off-white); }

.logo-concepts { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-bottom: 100px; }
.lc-card {
  background: var(--white); border: 1px solid var(--silver);
  border-radius: var(--r-xl); overflow: hidden;
  transition: all .4s var(--ease); position: relative;
}
.lc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: rgba(37,99,235,.3); }
.lc-card.lc-recommended { border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(37,99,235,.08); }
.lc-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--blue-mid); color: var(--white);
  font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.lc-img-wrap {
  background: #FAFBFC; padding: 32px;
  display: flex; align-items: center; justify-content: center;
  min-height: 260px; border-bottom: 1px solid var(--silver);
}
.lc-img-wrap img { max-height: 280px; object-fit: contain; transition: transform .4s var(--ease); }
.lc-card:hover .lc-img-wrap img { transform: scale(1.02); }
.lc-info { padding: 28px; }
.lc-num { font-size: .6rem; font-weight: 800; letter-spacing: .2em; color: var(--blue-mid); margin-bottom: 8px; }
.lc-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.lc-info p { font-size: .86rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.lc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.lc-tags span { font-size: .68rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; background: rgba(37,99,235,.06); color: var(--blue-mid); border: 1px solid rgba(37,99,235,.15); }
.lc-best { font-size: .8rem; font-weight: 600; color: var(--gold); display: flex; align-items: center; gap: 6px; }
.lc-best.sec { color: var(--green); }
.lc-best i { font-size: .8rem; }

/* Lines tabs */
.lines-tabs { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.lt-btn {
  display: flex; align-items: center; gap: 14px;
  flex: 1; min-width: 160px;
  background: var(--white); border: 1.5px solid var(--silver);
  border-radius: var(--r); padding: 16px 24px;
  cursor: pointer; transition: all .3s var(--ease); text-align: left;
  color: var(--gray);
}
.lt-btn i { font-size: 1.3rem; flex-shrink: 0; }
.lt-btn strong { display: block; font-size: .8rem; font-weight: 800; letter-spacing: .1em; color: var(--navy); }
.lt-btn small { font-size: .7rem; color: var(--gray-light); }
.lt-btn:hover { border-color: var(--blue-mid); color: var(--blue-mid); box-shadow: var(--shadow); }
.lt-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.lt-btn.active strong { color: var(--white); }
.lt-btn.active small { color: rgba(255,255,255,.5); }

.line-panel { display: none; animation: fadeUp .45s var(--ease); }
.line-panel.active { display: block; }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

.lp-intro { margin-bottom: 40px; }
.lp-badge { display: inline-block; font-size: .62rem; font-weight: 800; letter-spacing: .18em; padding: 5px 14px; border-radius: 100px; margin-bottom: 16px; }
.gold-badge { background: rgba(212,175,55,.12); color: var(--gold); border: 1px solid rgba(212,175,55,.3); }
.blue-badge { background: rgba(37,99,235,.1); color: var(--blue-mid); border: 1px solid rgba(37,99,235,.2); }
.silver-badge { background: rgba(100,116,139,.1); color: var(--slate); border: 1px solid rgba(100,116,139,.2); }
.lp-intro h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); max-width: 680px; margin-bottom: 12px; }
.lp-intro p { font-size: .9rem; color: var(--gray); max-width: 680px; line-height: 1.7; }

.lp-content { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; margin-bottom: 32px; }
.lp-logos { background: var(--white); border: 1px solid var(--silver); border-radius: var(--r-lg); overflow: hidden; }
.lp-logos img { width: 100%; display: block; }
.lp-logo-desc { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.lpd-item { display: flex; gap: 12px; }
.lpd-lbl { width: 28px; height: 28px; border-radius: 50%; background: rgba(37,99,235,.1); color: var(--blue-mid); font-size: .72rem; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lpd-item p { font-size: .82rem; color: var(--gray); line-height: 1.55; margin: 4px 0 0; }
.lp-mockup { background: var(--off-white); border: 1px solid var(--silver); border-radius: var(--r-lg); overflow: hidden; }
.lp-mockup img { width: 100%; display: block; }
.lp-caption { padding: 16px 20px; font-size: .78rem; color: var(--gray); font-style: italic; }

.lp-palette { margin-bottom: 24px; }
.lp-palette h4 { font-size: .8rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .08em; }
.palette-row { display: flex; gap: 10px; flex-wrap: wrap; }
.pr-swatch { flex: 1; min-width: 100px; border-radius: var(--r-sm); padding: 14px 12px; }
.pr-swatch span { display: block; font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.85); margin-bottom: 3px; }
.pr-swatch.light span { color: rgba(0,0,0,.55); }
.pr-swatch code { font-size: .65rem; color: rgba(255,255,255,.5); font-family: monospace; }
.pr-swatch.light code { color: rgba(0,0,0,.35); }

.lp-verdict { display: flex; gap: 14px; align-items: flex-start; background: var(--off-white); border: 1px solid var(--silver); border-radius: var(--r); padding: 18px 22px; }
.lp-verdict i { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.gold-verdict i { color: var(--gold); }
.blue-verdict i { color: var(--blue-mid); }
.silver-verdict i { color: var(--slate); }
.lp-verdict div { font-size: .86rem; color: var(--graphite); line-height: 1.6; }
.lp-verdict strong { color: var(--navy); }

/* ═══════════ MOCKUPS ═══════════ */
#mockups { background: var(--navy-3); }

.mockup-masonry { display: grid; grid-template-columns: 1.3fr 1fr; gap: 16px; margin-bottom: 72px; }
.mm-col { display: flex; flex-direction: column; gap: 16px; }
.mm-item { border-radius: var(--r-lg); overflow: hidden; position: relative; background: var(--navy-2); transition: transform .4s var(--ease); }
.mm-item:hover { transform: scale(1.015); }
.mm-item img { width: 100%; display: block; transition: transform .5s var(--ease); }
.mm-item:hover img { transform: scale(1.04); }
.mm-caption {
  padding: 16px 20px;
  background: rgba(8,15,30,.85); backdrop-filter: blur(10px);
}
.mm-caption h4 { font-size: .88rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.mm-caption p { font-size: .75rem; color: rgba(255,255,255,.45); line-height: 1.4; }

.touchpoints h3 { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 28px; }
.tp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.tp-item { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r); padding: 28px; transition: all .3s; }
.tp-item:hover { background: rgba(255,255,255,.07); border-color: rgba(37,99,235,.4); transform: translateY(-3px); }
.tp-icon { width: 44px; height: 44px; background: rgba(37,99,235,.15); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--blue-light); font-size: 1.1rem; margin-bottom: 14px; }
.tp-item h4 { font-size: .92rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.tp-item p { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.55; }

/* ═══════════ PRÓXIMOS PASSOS ═══════════ */
#proximo { background: var(--off-white); }

.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 80px; }
.step-card { background: var(--white); border: 1px solid var(--silver); border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; gap: 16px; transition: all .35s var(--ease); }
.step-card:hover { border-color: var(--blue-mid); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.sc-step { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--silver); line-height: 1; letter-spacing: -.04em; }
.sc-body h4 { font-size: .92rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.sc-body p { font-size: .82rem; color: var(--gray); line-height: 1.55; margin-bottom: 12px; }
.sc-prazo { display: inline-block; background: rgba(37,99,235,.08); color: var(--blue-mid); font-size: .68rem; font-weight: 700; letter-spacing: .06em; padding: 3px 10px; border-radius: 100px; }

/* Final CTA */
.final-cta {
  background: var(--navy); border-radius: var(--r-xl);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
  padding: 64px;
  overflow: hidden; position: relative;
}
.final-cta::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.15), transparent 70%);
  pointer-events: none;
}
.fc-icon { font-size: 2rem; color: var(--blue-light); margin-bottom: 20px; }
.fc-content h3 { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 800; color: var(--white); margin-bottom: 14px; letter-spacing: -.02em; }
.fc-content h3 em { font-style: italic; color: var(--gold-light); font-family: var(--font-serif); font-weight: 400; }
.fc-content p { font-size: .92rem; color: rgba(255,255,255,.55); margin-bottom: 32px; line-height: 1.7; }
.fc-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.fc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--r-sm);
  font-size: .88rem; font-weight: 700; cursor: pointer; transition: all .25s;
}
.fc-primary { background: #25D366; color: var(--white); }
.fc-primary:hover { background: #128C7E; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }
.fc-secondary { background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.15); }
.fc-secondary:hover { background: rgba(255,255,255,.13); color: var(--white); }
.fc-quote { border-left: 2px solid rgba(255,255,255,.1); padding-left: 32px; }
.fc-quote blockquote { font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,.65); line-height: 1.8; margin-bottom: 14px; font-family: var(--font-serif); }
.fc-quote cite { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); }

/* ═══════════ FOOTER ═══════════ */
#footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,.05); padding: 64px 0 32px; }
.ft-grid { display: grid; grid-template-columns: 2fr 1.5fr 1fr; gap: 48px; margin-bottom: 48px; }
.ft-logo { display: flex; align-items: baseline; gap: 4px; margin-bottom: 16px; }
.ft-brand p { font-size: .84rem; color: rgba(255,255,255,.4); line-height: 1.7; margin-bottom: 12px; }
.ft-brand strong { color: rgba(255,255,255,.6); }
.ft-conf { display: inline-flex; align-items: center; gap: 8px; font-size: .68rem; color: rgba(255,255,255,.25); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); padding: 6px 12px; border-radius: 100px; }
.ft-empresa h5, .ft-contato h5 { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 12px; }
.ft-empresa p, .ft-contato p { font-size: .82rem; color: rgba(255,255,255,.35); line-height: 1.8; }
.ft-contato p i { color: var(--blue-mid); margin-right: 6px; }
.ft-social { display: flex; gap: 8px; margin-top: 14px; }
.ft-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); font-size: .85rem; transition: all .25s; }
.ft-social a:hover { background: rgba(37,99,235,.2); border-color: var(--blue-mid); color: var(--white); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.05); padding-top: 24px; text-align: center; }
.ft-bottom p { font-size: .72rem; color: rgba(255,255,255,.18); }

/* ═══════════ SCROLL REVEAL ═══════════ */
.reveal-up { opacity: 0; transform: translateY(36px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width:1100px) {
  .market-grid { grid-template-columns: repeat(3,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .conceito-pillars, .why-grid { grid-template-columns: repeat(2,1fr); }
  .territory-block { grid-template-columns: 1fr; gap: 32px; }
  .ck-grid { grid-template-columns: repeat(2,1fr); }
  .lp-content { grid-template-columns: 1fr; }
}
@media (max-width:900px) {
  .jam-topbar { height: 30px; }
  .jam-topbar-inner { padding: 0 16px; }
  .jam-topbar a { font-size: .6rem; }
  #navbar { top: 30px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  body { cursor: auto; }
  #cursor, #cursor-follower { display: none; }
  .diag-split { grid-template-columns: 1fr; }
  .audit-bars { grid-template-columns: 1fr; }
  .verbal-grid { grid-template-columns: 1fr; }
  .logo-concepts { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .tl-item { grid-template-columns: 1fr; gap: 12px; }
  .tl-left { text-align: left; }
  .tl-center { display: none; }
  .mockup-masonry { grid-template-columns: 1fr; }
  .final-cta { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .ft-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-data-row { flex-direction: column; gap: 20px; padding: 24px; }
  .hdr-sep { display: none; }
}
@media (max-width:640px) {
  .section { padding: 80px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .tp-grid { grid-template-columns: 1fr; }
  .pillars-row { flex-direction: column; }
  .pillar-sep { width: 100%; height: 1px; }
  .market-grid { grid-template-columns: repeat(2,1fr); }
  .ck-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .manifesto-band .mb-track { animation-duration: 20s; }
  .territory-arms { grid-template-columns: 1fr; }
  .hero-names { flex-direction: column; gap: 24px; align-items: center; }
  .hn-old, .hn-new { align-items: center; text-align: center; }
  .hero-pills { display: none; }
  .lp-palette .palette-row { flex-wrap: wrap; }
  .pr-swatch { min-width: calc(50% - 5px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
