:root{
  --color-brand:#6B21A8;
  --color-brand-600:#5B1C90;
  --color-brand-50:#F6EEFF;
  --cta-primary:#22C55E;
  --cta-primary-hover:#1FB455;
  --cta-secondary:#6B21A8;
  --cta-secondary-hover:#5B1C90;
  --color-text:#1C1C1C;
  --color-muted:#525252;
  --color-bg:#FFFFFF;
  --color-line:#E5E7EB;
  --space-1:.25rem;
  --space-2:.5rem;
  --space-3:.75rem;
  --space-4:1rem;
  --space-5:1.25rem;
  --space-6:1.5rem;
  --space-8:2rem;
  --space-10:2.5rem;
  --space-12:3rem;
  --container:1180px;
  --radius:14px;
  --radius-lg:18px;
  --shadow:0 8px 24px rgba(0,0,0,.08);
}
html,body{
  margin:0;
  padding:0;
  background:var(--color-bg);
  color:var(--color-text);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial;
}
a{
  color:inherit
}
.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 var(--space-4);
}
.grid{
  display:grid;
  gap:var(--space-6);
}
header.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--color-line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:var(--space-3) 0;
}
.brand{
  display:flex;
  gap:var(--space-3);
  align-items:center;
  font-weight:700;
  color:var(--color-brand);
}
.nav-cta{
  display:flex;
  gap:var(--space-3);
  align-items:center;
}
a.btn,button.btn{
  appearance:none;
  border:none;
  cursor:pointer;
  font-weight:700;
  border-radius:999px;
  padding:.9rem 1.25rem;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  box-shadow:var(--shadow);
  transition:transform .06s ease,filter .12s ease;
}
a.btn:active,button.btn:active{
  transform:translateY(1px)
}
.btn-primary{
  background:var(--cta-primary);
  color:#1a1a1a;
}
.btn-primary:hover{
  filter:brightness(0.98);
  background:var(--cta-primary-hover);
}
.btn-secondary{
  background:var(--cta-secondary);
  color:#fff;
}
.btn-secondary:hover{
  background:var(--cta-secondary-hover)
}
.btn-ghost{
  background:#fff;
  border:1px solid var(--color-line);
  color:var(--color-text);
  box-shadow:none;
}
.hero{
  padding:var(--space-10) 0 var(--space-8)
}
.hero .eyebrow{
  color:var(--color-brand);
  font-weight:800;
  letter-spacing:.5px;
}
.hero h1{
  font-size:clamp(1.8rem,3.5vw,3rem);
  line-height:1.1;
  margin:var(--space-3) 0 var(--space-4);
}
.hero p.lead{
  font-size:clamp(1rem,2.2vw,1.25rem);
  color:var(--color-muted);
  max-width:60ch;
}
.hero .cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:var(--space-3);
  margin-top:var(--space-5);
}
.hero .analogy{
  margin-top:var(--space-4);
  background:#FFF7CC;
  border-left:4px solid #EAB308;
  padding:var(--space-4);
  border-radius:var(--radius);
}
.section{
  padding:var(--space-10) 0;
  border-top:1px solid var(--color-line);
}
.section h2{
  font-size:clamp(1.4rem,2.8vw,2.2rem);
  margin:0 0 var(--space-4);
}
.muted{
  color:var(--color-muted)
}
.card{
  background:#fff;
  border:1px solid var(--color-line);
  border-radius:var(--radius-lg);
  padding:var(--space-6);
  box-shadow:var(--shadow);
}
.card h3{
  margin-top:0
}
.list-check{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:.75rem;
}
.list-check li::before{
  content:"✔";
  color:var(--color-brand);
  margin-right:.5rem;
}
.rules-preview{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:var(--space-4);
}
.rules-preview .rule{
  background:#fff;
  border:1px solid var(--color-line);
  border-radius:var(--radius);
  padding:var(--space-4);
}
.rules-preview .rule b{
  color:var(--color-brand)
}
.three-cols{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:var(--space-4);
}
.two-cols{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:var(--space-6);
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  background:#fff;
  border:1px solid var(--color-line);
  border-radius:999px;
  padding:.35rem .75rem;
}
.cta-final{
  text-align:center
}
.faq details{
  border:1px solid var(--color-line);
  border-radius:var(--radius);
  padding:var(--space-3) var(--space-4);
  background:#fff;
}
.faq details+details{
  margin-top:var(--space-3)
}
.faq summary{
  cursor:pointer;
  font-weight:700;
}
footer{
  margin-top:var(--space-10);
  border-top:1px solid var(--color-line);
  padding:var(--space-6) 0 var(--space-10);
  color:var(--color-muted);
  font-size:.95rem;
}
.mobile-cta{
  position:fixed;
  left:0;
  right:0;
  bottom:.5rem;
  display:none;
  z-index:60;
}
.mobile-cta .wrap{
  display:flex;
  justify-content:center;
}
.mobile-cta .wrap a{
  padding:.9rem 1.25rem;
  border-radius:999px;
}
@media (max-width:980px){
  .three-cols,.rules-preview{
    grid-template-columns:1fr 1fr
  }
  .authors{
    grid-template-columns:1fr
  }
}
@media (max-width:680px){
  .nav{
    gap:var(--space-3)
  }
  .hero{
    padding-top:var(--space-8)
  }
  .three-cols,.rules-preview,.two-cols{
    grid-template-columns:1fr
  }
  .hero .cta-row{
    gap:var(--space-2)
  }
  .mobile-cta{
    display:block
  }
  header.site-header{
    position:sticky
  }
}
.authors{
  display:flex;
  flex-wrap:wrap;
  gap:2rem;
  justify-content:center;
}
.author{
  display:flex;
  align-items:center;
  gap:1rem;
  max-width:420px;
  background:#fff;
  padding:1.2rem;
  border-radius:16px;
  box-shadow:0 3px 10px rgba(0,0,0,0.05);
}
.author-photo{
  width:100px;
  height:100px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid var(--color-brand,#6B21A8);
}
@media (max-width:768px){
  .author{
    flex-direction:column;
    text-align:center;
  }
  .author-photo{
    width:120px;
    height:120px;
  }
}
.btn{
  white-space:nowrap
}
html,body{
  max-width:100%;
  overflow-x:hidden;
}
img,video,iframe{
  max-width:100%;
  height:auto;
}
.container{
  padding-left:20px;
  padding-right:20px;
}
pre,code,.pill,.btn,.pill *{
  overflow-wrap:anywhere;
  word-break:break-word;
}
@media (max-width:980px){
  .hero .grid{
    display:grid;
    grid-template-columns:1fr!important;
    gap:var(--space-4,24px);
  }
}
@media (max-width:980px){
  .rules-preview{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:var(--space-3,16px);
  }
}
@media (max-width:680px){
  .rules-preview{
    grid-template-columns:1fr
  }
}
.authors{
  flex-wrap:wrap
}
.author{
  max-width:min(420px,100%)
}
.mobile-cta,.mobile-cta .wrap{
  width:100%
}
.container{
  width:min(1200px,100%);
  padding-left:16px;
  padding-right:16px;
}
.container,.nav,.nav-cta,.site-header .container{
  min-width:0
}
.site-header .container.nav,.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:8px 12px;
}
.nav-cta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  min-width:0;
}
.nav-cta .btn{
  flex:0 0 auto
}
.brand{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}
h1,h2,h3,p,.muted,.lead{
  overflow-wrap:anywhere;
  word-break:normal;
}
.two-cols,.three-cols,.rules-preview{
  min-width:0
}
@media (max-width:1200px){
  .three-cols{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:var(--space-4,24px);
  }
}
@media (max-width:900px){
  .three-cols{
    grid-template-columns:1fr
  }
  .two-cols{
    display:grid;
    grid-template-columns:1fr;
    gap:var(--space-4,24px);
  }
}
.rules-preview .rule{
  min-width:0
}
.card{
  width:100%;
  max-width:100%;
  box-sizing:border-box;
}
*,*::before,*::after{
  box-sizing:border-box
}
.container,footer .container{
  padding-left:max(20px,env(safe-area-inset-left));
  padding-right:max(20px,env(safe-area-inset-right));
}
.section{
  overflow:visible
}
.two-cols>*,.three-cols>*,.rules-preview>*,.authors>*,.card{
  min-width:0;
  max-width:100%;
}
.rules-preview{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:var(--space-3,16px);
}
@media (max-width:1200px){
  .rules-preview{
    grid-template-columns:repeat(2,minmax(0,1fr))
  }
}
@media (max-width:680px){
  .rules-preview{
    grid-template-columns:1fr
  }
}
@media (max-width:1200px){
  .three-cols{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:var(--space-4,24px);
  }
}
@media (max-width:900px){
  .three-cols{
    grid-template-columns:1fr
  }
  .two-cols{
    display:grid;
    grid-template-columns:1fr;
    gap:var(--space-4,24px);
  }
}
footer a{
  overflow-wrap:anywhere;
  word-break:break-word;
}
.site-header .brand{
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
}
.site-header .brand>span{
  font-size:1.6rem;
  font-weight:700;
  color:var(--color-brand,#6B21A8);
  line-height:1;
  letter-spacing:-0.2px;
}
.site-header .brand:hover>span{
  text-decoration:underline;
  text-underline-offset:3px;
  text-decoration-thickness:2px;
}
@media (max-width:768px){
  .site-header .brand>span{
    font-size:1.1rem
  }
}
img{
  display:block
}
.author-photo{
  object-fit:cover;
  border-radius:50%;
  border:2px solid var(--color-brand);
}
.alert{
  display:inline-block;
  margin-left:4px;
  padding:2px 6px;
  font-size:0.8em;
  font-weight:600;
  color:#6B21A8;
  background:rgba(107,33,168,0.1);
  border-radius:6px;
  text-transform:uppercase;
}
.breadcrumb ol{
  list-style:none;
  display:flex;
  gap:.5rem;
  padding:0;
  margin:0;
  color:#6B21A8;
}
.breadcrumb a{
  color:#6B21A8;
  text-decoration:underline;
}
.breadcrumb li+li:before{
  content:"›";
  margin:0 .25rem;
  color:#6B21A8;
}
.list-x{
  list-style:none;
  padding-left:0;
  margin:0;
  display:grid;
  gap:0.5rem;
}
.list-x li{
  position:relative;
  padding-left:1.2rem;
}
.list-x li::before{
  content:"✔";
  position:absolute;
  left:0;
  top:0.05em;
  color:var(--color-brand);
  font-weight:500;
  font-size:0.95em;
}
.cp-porque{
  margin-top:var(--space-5);
  background:#FFF7E0;
  border:1px solid #FDE68A;
  border-left:4px solid #FACC15;
  border-radius:var(--radius-lg);
  padding:var(--space-5);
  box-shadow:0 1px 2px rgba(0,0,0,0.04);
}
.cp-porque h3{
  margin-top:0;
  color:#CA8A04;
  display:flex;
  align-items:center;
  gap:.5rem;
}
.cp-porque .endline{
  margin:.5rem 0 0
}
@media (max-width:680px){
  .cp-porque{
    padding:var(--space-4)
  }
}
.cp-porque + .cp-porque{
  margin-top:var(--space-6)
}
.cp-steps{
  margin:.75rem 0 0;
  padding-left:1.1rem;
  line-height:1.6;
}
.cp-steps li{
  margin:.4rem 0
}
.cp-steps em{
  color:var(--color-muted,#6b7280)
}
.cp-porque p+ol{
  margin-top:.25rem
}
.cp-porque{
  margin-top:var(--space-5);
  border:1px solid #FDE68A;
  border-left:4px solid #FACC15;
  background:#FFF7E0;
  border-radius:var(--radius-lg);
  box-shadow:0 1px 2px rgba(0,0,0,.04);
}
.cp-porque h3{
  margin-top:0;
  color:#CA8A04;
}
.cp-steps em{
  padding-left:.25em;
  color:var(--color-muted,#6b7280);
}
.container.is-narrow{
  max-width:980px
}
@media (max-width:1200px){
  .container.is-narrow{
    max-width:min(980px,100%)
  }
}
.cp-steps{
  margin:.75rem 0 0;
  padding-left:1.1rem;
  line-height:1.6;
}
.cp-steps li{
  margin:.4rem 0
}
.cp-porque p+ol{
  margin-top:.25rem
}
#faq + .section{
  border-top:none;
  margin-top:0;
  padding-top:0;
}
#faq + .section .cp-porque{
  margin-top:0
}
#faq{
  padding-bottom:var(--space-4)
}
#backToTop{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:1000;
  width:48px;
  height:48px;
  border:none;
  border-radius:50%;
  background:#1C1C1C;
  color:#FFF;
  font-size:22px;
  cursor:pointer;
  box-shadow:0 3px 8px rgba(0,0,0,.25);
  opacity:0;
  pointer-events:none;
  transform:translateY(6px);
  transition:opacity .3s ease,transform .3s ease;
}
#backToTop.show{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}
#backToTop:hover{
  opacity:.9;
  transform:translateY(-2px);
  background-color:#000;
}
@media (max-width:768px){
  #backToTop{
    bottom:92px;
    right:18px;
    width:44px;
    height:44px;
    font-size:20px;
  }
}
.is-blur{
  filter:blur(6px)
}
.is-blur,.is-blur *{
  user-select:none;
  -webkit-user-select:none;
  -ms-user-select:none;
}
.lang-switch{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:4px;
  margin-left:4px;
  align-self:flex-start;
  margin-top:-2px;
}
.lang-switch a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:22px;
  border-radius:6px;
  background:rgba(255,255,255,0.9);
  border:1px solid transparent;
  transition:opacity 0.15s ease,box-shadow 0.15s ease;
}
.lang-switch a:hover{
  opacity:0.85;
  box-shadow:0 0 0 2px rgba(0,0,0,0.05);
}
.lang-switch a.is-active{
  border-color:#FACC15
}
.lang-switch img{
  display:block;
  width:20px;
  height:14px;
}
@media (max-width:680px){
  .lang-switch{
    flex-direction:row;
    margin-left:0;
    margin-top:4px;
  }
}
@media (prefers-color-scheme:dark){
  .lang-switch a{
    background:rgba(255,255,255,0.08);
    border-color:rgba(255,255,255,0.15);
  }
}
#cp-differentials ul{
  list-style:none;
  margin-left:0;
  padding-left:0;
}
#cp-differentials ul li::before{
  content:none
}
#cp-differentials ul li{
  line-height:1.6
}
.btn.btn-primary:hover,.btn.btn-secondary:hover,.btn.btn-ghost:hover{
  filter:brightness(1.05);
  transform:translateY(-1px);
  transition:filter 0.15s ease,transform 0.15s ease;
}
.btn:active{
  transform:translateY(0)
}
.alert-green{
  display:inline-block;
  margin-left:4px;
  padding:2px 6px;
  font-size:0.8em;
  font-weight:600;
  color:#065F46;
  background:rgba(16,185,129,0.12);
  border-radius:6px;
  text-transform:uppercase;
}
:root{
  --brand-purple:#6B21A8;
  --brand-gold:#FACC15;
  --brand-gold-dark:#D39E09;
  --brand-coral:#FF7043;
  --brand-green:#22C55E;
  --brand-cyan:#26C6DA;
  --fg:#111827;
  --fg-muted:#374151;
  --line:#E5E7EB;
  --card:#FFFFFF;
  --highlight:#FFF7E0;
}
.cp-porque .cp-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:12px;
}
.cp-porque .cp-card{
  position:relative;
  background:var(--card);
  border:1px solid #ECEFF3;
  border-radius:12px;
  padding:12px 12px 10px 12px;
  min-height:88px;
}
.cp-porque .cp-badge{
  position:absolute;
  width:10px;
  height:10px;
  border-radius:999px;
  top:12px;
  left:12px;
  opacity:.9;
  border:1px solid rgba(17,24,39,.10);
}
.cp-porque .c1{
  background:#7C3AED
}
.cp-porque .c2{
  background:var(--brand-gold-dark)
}
.cp-porque .c3{
  background:var(--brand-green)
}
.cp-porque .c4{
  background:var(--brand-purple)
}
.cp-porque .c5{
  background:var(--brand-cyan)
}
.cp-porque .c6{
  background:var(--brand-coral)
}
.cp-porque .cp-score{
  position:absolute;
  top:10px;
  right:12px;
  font-weight:700;
  font-size:14px;
  letter-spacing:.2px;
  background:none !important;
  padding:0 !important;
  border:0 !important;
  box-shadow:none !important;
}
.cp-porque .cp-score.c1{
  color:#7C3AED
}
.cp-porque .cp-score.c2{
  color:var(--brand-gold-dark)
}
.cp-porque .cp-score.c3{
  color:var(--brand-green)
}
.cp-porque .cp-score.c4{
  color:var(--brand-purple)
}
.cp-porque .cp-score.c5{
  color:var(--brand-cyan)
}
.cp-porque .cp-score.c6{
  color:var(--brand-coral)
}
.cp-porque .cp-card h3{
  margin:0 70px 4px 26px;
  font-size:15px;
  line-height:1.25;
  font-weight:700;
  color:var(--fg);
}
.cp-porque .cp-card p{
  margin:0;
  font-size:13px;
  color:var(--fg-muted);
  line-height:1.4;
}
.cp-porque .cp-footer{
  margin-top:12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:12px;
  color:#6B7280;
}
#scorecard .cp-porque > h3{
  color:#8B5CF6;
  font-weight:800;
  margin:0 0 6px;
}
#scorecard .cp-porque > .muted{
  display:block;
  max-width:72ch;
  margin-bottom:12px;
  color:#4B5563;
}
#scorecard .cp-grid{
  gap:14px
}
#scorecard .cp-footer{
  margin-top:12px;
  color:#6B7280;
  gap:8px;
}
@media (max-width:400px){
  #scorecard .cp-porque > h3{
    font-size:1.1rem
  }
}
#scorecard .cp-card{
  display:grid;
  grid-template-columns:14px 1fr auto;
  grid-auto-rows:auto;
  column-gap:10px;
  row-gap:6px;
  align-items:start;
  padding:12px 12px 12px 12px;
  min-height:unset;
}
#scorecard .cp-card .cp-badge{
  position:static !important;
  width:10px;
  height:10px;
  border-radius:999px;
  margin-top:2px;
  border:1px solid rgba(17,24,39,.10);
  grid-column:1;
  grid-row:1;
}
#scorecard .cp-card .cp-score{
  position:static !important;
  grid-column:3;
  grid-row:1;
  align-self:start;
  font-weight:700;
  font-size:14px;
  letter-spacing:.2px;
  padding:0;
  border:0;
  box-shadow:none;
}
#scorecard .cp-card h3{
  grid-column:2;
  grid-row:1;
  margin:0;
  font-size:15px;
  line-height:1.25;
  font-weight:700;
  color:var(--fg);
}
#scorecard .cp-card p{
  grid-column:2 / 4;
  grid-row:2;
  margin:0;
  font-size:13px;
  color:var(--fg-muted);
  line-height:1.4;
}
@media (min-width:640px){
  #scorecard .cp-card{
    min-height:110px
  }
}
#value-stack{
  --vs-gold:#FACC15;
  --vs-gold-200:#FDE68A;
  --vs-gold-50:#FFF7E0;
  --vs-ink:var(--color-text,#1C1C1C);
  --vs-line:var(--color-line,#E5E7EB);
  --vs-radius:var(--radius,14px);
  --vs-radius-lg:var(--radius-lg,18px);
  --vs-shadow:var(--shadow,0 8px 24px rgba(0,0,0,.08));
}
#value-stack .vs{
  background:#fff;
  border:1px solid var(--vs-gold-200);
  border-radius:var(--vs-radius-lg);
  box-shadow:var(--vs-shadow);
  padding:var(--space-6);
}
#value-stack .vs-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:var(--space-4);
  background:#fff;
  color:var(--vs-ink);
  border:1px solid #f4e5a3;
  border-radius:var(--vs-radius);
  padding:var(--space-4) var(--space-5);
  font-size:16px;
}
#value-stack .vs-row + .vs-row{
  margin-top:var(--space-3)
}
#value-stack .vs-total{
  background:var(--vs-gold-50);
  border-color:var(--vs-gold);
  font-weight:600;
}
#value-stack .vs-bonus{
  background:var(--vs-gold-50);
  border-color:var(--vs-gold);
  color:var(--color-brand,#6B21A8);
}
#value-stack .vs-bonus b{
  color:var(--color-brand,#6B21A8)
}
#value-stack .vs-badge{
  display:inline-block;
  background:var(--vs-gold-200);
  color:var(--color-brand,#6B21A8);
  font-weight:800;
  padding:2px 10px;
  border-radius:999px;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.2px;
  margin-left:8px;
}
#value-stack .vs-offer{
  background:#fff;
  border-color:#f4e5a3;
}
#value-stack .vs-cta{
  text-align:center;
  margin-top:var(--space-4);
}
#value-stack .vs-cta .btn{
  white-space:nowrap
}
#value-stack .vs-cta .muted{
  margin-top:.5rem
}
@media (max-width:680px){
  #value-stack .vs-row{
    font-size:15px;
    padding:var(--space-3) var(--space-4);
  }
}
header.site-header .nav{
  display:flex;
  flex-wrap:wrap;
  gap:0.5rem;
  justify-content:space-between;
  align-items:center;
}
header.site-header .nav-cta{
  display:flex;
  flex-wrap:wrap;
  gap:0.4rem;
  align-items:center;
  justify-content:flex-end;
}
header.site-header .nav-cta a.btn{
  white-space:nowrap;
  padding:0.55rem 1.1rem;
  font-size:15px;
}
@media (max-width:1100px){
  header.site-header .nav-cta{
    flex-wrap:wrap;
    justify-content:center;
    gap:0.5rem;
  }
  header.site-header .nav-cta a.btn{
    flex:1 1 auto;
    text-align:center;
  }
}
header.site-header .btn.btn-primary{
  order:99;
  min-width:180px;
}
header.site-header .nav-cta{
  display:flex;
  flex-wrap:wrap;
  gap:.4rem;
  align-items:center;
}
header.site-header .nav-cta a.btn.btn-ghost{
  order:10
}
header.site-header .nav-cta a.btn.btn-primary{
  order:900;
  min-width:180px;
}
header.site-header .nav-cta .lang-switch{
  order:1000;
  flex:0 0 auto;
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-left:.5rem;
  align-items:center;
}
header.site-header .nav-cta .lang-switch img{
  display:block
}
header.site-header .nav-cta a.btn{
  white-space:nowrap;
  padding:.55rem 1.05rem;
  font-size:15px;
}
@media (max-width:1100px){
  header.site-header .nav-cta{
    justify-content:center;
    row-gap:.6rem;
  }
  header.site-header .nav-cta a.btn.btn-primary{
    min-width:200px
  }
}
.card table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
}
.card thead th{
  text-align:left;
  font-weight:800;
  padding:12px 16px;
  border-bottom:1px solid var(--color-line);
}
.card tbody td{
  padding:12px 16px;
  vertical-align:top;
}
.card tbody tr+tr td{
  border-top:1px solid var(--color-line)
}
.card table td:first-child{
  font-weight:700;
  width:28ch;
}
@media (max-width:680px){
  .card table{
    font-size:0.98rem
  }
  .card table td:first-child{
    width:auto
  }
}
.page-coach2 #what-it-is-not .list-x li::before {
  content: none;
}
.page-coach2 .section h2 {
  margin-bottom: var(--space-3);
}
.page-coach2 .card + .card {
  margin-top: var(--space-3);
}
.page-coach2 .section .card {
  padding-inline: var(--space-4);
  overflow-x: auto;
}
.pill[data-tip] {
  position: relative;
  cursor: help;
}
.pill[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: .7rem;
  line-height: 1.25;
  width: max-content;
  max-width: 220px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
  z-index: 30;
}
.pill[data-tip]:hover::after {
  opacity: 1;
}
.section + .section {
  margin-top: var(--space-6);
}
.section h2 + * {
  margin-top: var(--space-3);
}
.section .card + .card {
  margin-top: var(--space-4);
}
.list-x li {
  font-size: 1.05rem;
  line-height: 1.6;
}
@media (hover:hover) and (pointer:fine) {
  .card {
    transition: transform .14s ease, box-shadow .14s ease;
  }
  .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,.10);
  }
  .btn.btn-primary {
    transition: filter .15s ease, transform .15s ease, box-shadow .15s ease;
  }
  .btn.btn-primary:hover {
    box-shadow: 0 6px 18px rgba(34,197,94,.28);
  }
}
.pill[data-tip]::after {
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
@media (max-width: 980px) {
  #use-cases .list-check li,
  #what-it-is-not .list-x li {
    margin: .25rem 0;
    line-height: 1.5;
  }
  #who-benefits .card table td,
  #who-benefits .card table th {
    padding: 10px 12px;
  }
  .two-cols {
    gap: var(--space-4);
  }
}
.grid-benefits{
  display:grid;
  gap:16px;
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.benefit-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:16px;
  padding:16px 18px;
  box-shadow:0 8px 22px rgba(0,0,0,.06);
  transition:transform .14s ease, box-shadow .14s ease;
}
.benefit-card:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(0,0,0,.10);
}
.benefit-card h4{
  margin:0 0 .35rem 0;
  font-size:1rem;
}
.benefit-card p{
  margin:0;
  color:#444;
}
@media (max-width:820px){
  .grid-benefits{
    grid-template-columns:1fr;
  }
}
.visually-hidden{
  position:absolute!important;
  clip:rect(1px,1px,1px,1px);
  padding:0!important;
  border:0!important;
  height:1px!important;
  width:1px!important;
  overflow:hidden;
}
.table-wrap{
  overflow:auto;
  border-radius:14px;
}
.table-wrap .table-soft{
  min-width:720px;
}
.table-soft{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  background:#fff;
}
.table-soft thead th{
  position:sticky;
  top:0;
  z-index:2;
  text-align:left;
  font-weight:700;
  background:linear-gradient(#fafafa,#f4f4f4);
  border-bottom:1px solid #e9e9e9;
  padding:14px 16px;
}
.table-soft tbody td{
  padding:14px 16px;
  vertical-align:top;
  border-bottom:1px solid #f0f0f0;
}
.table-soft tbody tr:nth-child(odd) td{
  background:#fcfcfc;
}
.table-compare .col-aspect,
.table-benefits .col-profile{
  position:sticky;
  left:0;
  z-index:1;
  background:#fff;
  font-weight:600;
  border-right:1px solid #f4f4f4;
}
.table-compare .col-v1{
  background:#f9fafb;
}
.table-compare .col-v2{
  background:rgba(250, 204, 21, .10);
}
.table-soft thead th,
.table-soft tbody td{
  white-space:normal;
  line-height:1.5;
}
.table-soft em{
  font-style:italic;
}
@media (max-width:980px){
  .table-soft thead th, .table-soft tbody td{
    padding:12px 14px;
  }
}
@media (max-width:680px){
  .table-soft{
    font-size:.95rem;
  }
  .table-soft thead th, .table-soft tbody td{
    padding:10px 12px;
  }
}
.table-soft a:focus-visible, .table-soft button:focus-visible{
  outline:3px solid var(--color-brand, #FACC15);
  outline-offset:2px;
  border-radius:6px;
}
.pill--support {
  background: rgba(250,204,21,.08);
  border-color: rgba(250,204,21,.35);
}
.pill:focus-visible, .btn:focus-visible, a:focus-visible {
  outline: 3px solid var(--brand, #6B21A8);
  outline-offset: 2px;
  border-radius: 10px;
}
.badge-new {
  font-size: .65rem;
  background: #EDE9FE;
  color: #6D28D9;
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 600;
  margin-left: 6px;
}
@media (max-width: 480px) {
  .mobile-hide {
    display: none !important;
  }
  .btn-ghost--link-sm {
    background: transparent;
    border: 0;
    padding: 0;
    min-width: 0;
    box-shadow: none;
    text-decoration: underline;
  }
  .btn-ghost--link-sm:focus {
    outline: 2px solid var(--brand-600);
    outline-offset: 2px;
  }
  .cta-stack {
    gap: var(--space-2);
  }
}
.hero-video, .hero-poster {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}
:root{
  --focus-color: rgba(124, 58, 237, .5);
  --focus-ring: 3px;
}
a.btn:focus-visible,
button.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 var(--focus-ring) var(--focus-color);
  border-radius: inherit;
}
@media (prefers-reduced-motion: no-preference){
  a.btn, button.btn {
    transition: box-shadow .2s ease;
  }
}
.btn {
  line-height: 1.2;
  padding: 0.7rem 1rem;
  min-height: 44px;
}
@media (max-width: 640px){
  .btn {
    line-height: 1.35;
    padding: 0.9rem 1.1rem;
  }
  .btn-ghost {
    padding: 0.85rem 1rem;
  }
  .btn.btn-sm {
    padding: 0.7rem 0.9rem;
    min-height: 40px;
  }
}
@media (max-width: 640px){
  .btn + .btn {
    margin-left: .5rem;
  }
}
@media (max-width: 640px){
  .btn {
    line-height: 1.35;
    padding: 0.9rem 1.1rem;
    min-height: 44px;
  }
  .btn-ghost {
    padding: 0.85rem 1rem;
  }
}
:root{
  --focus-color: rgba(124, 58, 237, .5);
  --focus-ring: 3px;
}
a.btn:focus-visible, button.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 var(--focus-ring) var(--focus-color);
  border-radius: inherit;
}
/* ===== Tabela comparativa — 1ª coluna sticky sem vazamento ===== */

.table-compare { position: relative; }

/* topo sticky padrão */
.table-compare thead th {
  position: sticky;
  top: 0;
  z-index: 2;                 /* base do header */
  background: #fff;
}

/* 1ª coluna (header) fixa à esquerda e por cima de tudo */
.table-compare thead th.col-aspect {
  left: 0;
  z-index: 7;                 /* ↑ acima dos outros th */
  background: #fff;
}

/* 1ª coluna (corpo) fixa à esquerda e por cima das demais tds */
.table-compare tbody td:first-child {
  position: sticky;
  left: 0;
  z-index: 6;                 /* abaixo do th.col-aspect, acima das outras células */
  background: #fff;           /* evita “ver por trás” */
  background-clip: padding-box;
  border-right: 1px solid #f0f0f0;
}

/* sombra suave na borda direita da coluna sticky (acabamento) */
.table-compare thead th.col-aspect::after,
.table-compare tbody td:first-child::after {
  content: "";
  position: absolute;
  top: 0; right: -12px; bottom: 0; width: 12px;
  pointer-events: none;
  box-shadow: 12px 0 12px -12px rgba(0,0,0,.25);
}

/* se você usa listras nas linhas, aplique somente nas outras colunas */
.table-compare tbody tr:nth-child(odd) td:not(:first-child) { background:#fafafa; }
.table-compare tbody tr:nth-child(even) td:not(:first-child) { background:#fff; }
/* --- HOTFIX: iOS Safari sticky bug (mobile) ------------------- */
@media (max-width: 680px) {
  /* desliga todo sticky do cabeçalho e da 1ª coluna */
  .table-compare thead th,
  .table-compare thead th.col-aspect,
  .table-compare tbody td:first-child {
    position: static !important;
    left: auto !important;
    top: auto !important;
    z-index: auto !important;
    box-shadow: none !important;
  }

  /* garante rolagem horizontal suave no wrapper */
  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
