
  :root{
    --navy: #12192B;
    --navy-2: #1B2340;
    --navy-3: #232C4D;
    --gold: #C9A24B;
    --gold-soft: #E4C77C;
    --cream: #F7F5EF;
    --paper: #FFFFFF;
    --ink: #171C2C;
    --muted: #6B7280;
    --muted-on-dark: #9AA3BE;
    --line: #E4E1D8;
    --line-dark: rgba(228,199,124,0.18);
    --red: #B3413E;
    --amber: #C08A2E;
    --green: #4F7965;
    --font-display: Cambria, Georgia, 'Times New Roman', serif;
    --font-body: Calibri, 'Segoe UI', Helvetica, Arial, sans-serif;
    --font-mono: 'Courier New', Courier, monospace;
  }

  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }
  body{
    margin:0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  h1,h2,h3,h4{ font-family: var(--font-display); font-weight: 700; margin:0; color: inherit; }
  p{ margin:0; }
  a{ color: inherit; }
  img{ max-width:100%; display:block; }
  button{ font-family: inherit; cursor:pointer; }

  .eyebrow{
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
  }
  .wrap{
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
  }
  section{ padding: 96px 0; }
  @media (max-width: 720px){
    section{ padding: 64px 0; }
    .wrap{ padding: 0 20px; }
  }

  /* ---------- Top bar ---------- */
  .topbar{
    position: sticky; top:0; z-index: 50;
    background: rgba(18,25,43,0.96);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line-dark);
  }
  .topbar .wrap{
    display:flex; align-items:center; justify-content:space-between;
    padding-top: 16px; padding-bottom: 16px;
  }
  .brand{
    display:flex; flex-direction:column; line-height:1.1;
  }
  .brand .name{
    font-family: var(--font-mono);
    color: var(--gold-soft);
    font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  }
  .brand .sub{
    font-family: var(--font-mono);
    color: var(--muted-on-dark);
    font-size: 10.5px; letter-spacing: 0.04em;
    margin-top: 2px;
  }
  .nav-cta{
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    padding: 11px 20px;
    border-radius: 3px;
    border: none;
    text-decoration:none;
    display:inline-block;
    transition: background .15s ease, transform .15s ease;
  }
  .nav-cta:hover{ background: var(--gold-soft); transform: translateY(-1px); }

  /* ---------- Hero ---------- */
  .hero{
    background:
      radial-gradient(1100px 520px at 82% -10%, rgba(201,162,75,0.14), transparent 60%),
      var(--navy);
    color: var(--cream);
    padding: 108px 0 96px;
    position:relative;
    overflow:hidden;
    border-bottom: 1px solid var(--line-dark);
  }
  .hero::after{
    content:"";
    position:absolute; inset:0;
    background-image: repeating-linear-gradient(0deg, rgba(228,199,124,0.035) 0px, rgba(228,199,124,0.035) 1px, transparent 1px, transparent 64px);
    pointer-events:none;
  }
  .hero .stamp{
    display:inline-flex; align-items:center; gap:10px;
    font-family: var(--font-mono);
    font-size: 12px; letter-spacing:0.16em; text-transform:uppercase;
    color: var(--muted-on-dark);
    border: 1px solid var(--line-dark);
    padding: 7px 14px;
    border-radius: 2px;
    margin-bottom: 30px;
  }
  .hero .stamp b{ color: var(--gold); font-weight:700; }
  .hero h1{
    font-size: clamp(34px, 4.6vw, 54px);
    line-height: 1.14;
    max-width: 880px;
    letter-spacing: -0.01em;
  }
  .hero h1 em{ font-style:normal; color: var(--gold); }
  .hero .lede{
    margin-top: 26px;
    font-size: 19px;
    color: var(--muted-on-dark);
    max-width: 620px;
  }
  .hero .lede b{ color: var(--cream); font-weight: 700; }
  .hero-actions{
    margin-top: 40px;
    display:flex; align-items:center; gap:22px; flex-wrap:wrap;
  }
  .btn-primary{
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 30px;
    border-radius: 3px;
    border: none;
    text-decoration:none;
    display:inline-flex; align-items:center; gap:10px;
    transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
    box-shadow: 0 10px 30px -12px rgba(201,162,75,0.55);
  }
  .btn-primary:hover{ background: var(--gold-soft); transform: translateY(-2px); }
  .hero-credential{
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--muted-on-dark);
  }
  .hero-credential b{ color: var(--cream); }
  .hero-audience{
    margin-top: 56px;
    display:flex; gap: 14px; flex-wrap:wrap;
  }
  .audience-tag{
    font-family: var(--font-mono);
    font-size: 12.5px;
    letter-spacing: 0.02em;
    color: var(--cream);
    border: 1px solid var(--line-dark);
    background: rgba(255,255,255,0.02);
    padding: 9px 14px;
    border-radius: 2px;
  }

  /* ---------- Problem ---------- */
  .problem{ background: var(--cream); }
  .section-head{ max-width: 680px; margin-bottom: 52px; position:relative; }
  .section-head .eyebrow{ position:relative; padding-left:18px; }
  .section-head .eyebrow::before{
    content:""; position:absolute; left:0; top:50%; transform:translateY(-50%);
    width:10px; height:1.5px; background: var(--gold);
  }
  .section-head h2{ font-size: clamp(26px, 3vw, 36px); margin-top:14px; color: var(--navy); line-height:1.2; }

  /* Asymmetric: one featured card + two stacked, instead of three equal columns */
  .problem-grid{
    display:grid; grid-template-columns: 1.3fr 1fr; gap: 22px; align-items:stretch;
  }
  @media (max-width: 860px){ .problem-grid{ grid-template-columns: 1fr; } }
  .problem-stack{ display:flex; flex-direction:column; gap:22px; }
  .problem-card{
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 30px 26px;
  }
  .problem-card--featured{
    padding: 40px 34px;
    display:flex; flex-direction:column; justify-content:center;
    border-left: 3px solid var(--red);
  }
  .problem-card--featured h3{ font-size: 21px; }
  .problem-card--featured p{ font-size: 15.5px; margin-top:12px; }
  .problem-stack .problem-card{ flex:1; }

  /* Real color badges instead of emoji dots */
  .risk-dot{
    display:block; width:15px; height:15px; border-radius:50%;
    margin-bottom: 18px;
  }
  .risk-dot--high{ background: var(--red); box-shadow: 0 0 0 4px rgba(179,65,62,0.13); }
  .risk-dot--mid{ background: var(--amber); box-shadow: 0 0 0 4px rgba(192,138,46,0.13); }
  .risk-dot--low{ background: var(--green); box-shadow: 0 0 0 4px rgba(79,121,101,0.13); }
  .problem-card h3{ font-size: 18px; color: var(--navy); line-height:1.35; }
  .problem-card p{ margin-top: 10px; font-size: 15px; color: var(--muted); }

  /* ---------- How it works ---------- */
  .how{ background: var(--paper); }
  .how-list{
    display:grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    border-top: 1px solid var(--line);
  }
  @media (max-width: 860px){ .how-list{ grid-template-columns: 1fr; } }
  .how-step{
    padding: 30px 26px 30px 0;
    border-bottom: 1px solid var(--line);
  }
  .how-list > .how-step:not(:last-child){ border-right: 1px solid var(--line); padding-right: 26px; }
  @media (max-width: 860px){ .how-list > .how-step:not(:last-child){ border-right:none; } }
  .how-step .num{
    font-family: var(--font-mono); color: var(--gold); font-size: 13px; letter-spacing:0.1em;
  }
  .how-step h3{ margin-top: 12px; font-size: 19px; color: var(--navy); }
  .how-step p{ margin-top: 10px; font-size: 15px; color: var(--muted); }
  .how-note{
    margin-top: 40px;
    font-size: 15px;
    color: var(--muted);
    max-width: 680px;
  }

  /* ---------- Deliverable ---------- */
  .deliver{ background: var(--navy); color: var(--cream); }
  .deliver .section-head h2{ color: var(--cream); }
  .deliver .section-head p{ color: var(--muted-on-dark); }
  .mockup-card{
    position:relative;
    background: var(--navy-2);
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    padding: 30px;
    overflow:hidden;
  }
  .ribbon{
    position:absolute; top:22px; right:-46px;
    transform: rotate(38deg);
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-mono);
    font-size: 11px; letter-spacing:0.12em; text-transform:uppercase;
    font-weight:700;
    padding: 6px 60px;
  }
  .mockup-head{
    display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:14px;
    border-bottom: 1px solid var(--line-dark); padding-bottom: 18px; margin-bottom: 24px;
  }
  .mockup-head .tag{ font-family: var(--font-mono); font-size: 11.5px; color: var(--muted-on-dark); letter-spacing:0.1em; text-transform:uppercase; }
  .mockup-head h3{ font-size: 20px; margin-top:6px; color: var(--cream); }
  .mockup-body{ display:grid; grid-template-columns: 1.1fr 1fr; gap: 28px; }
  @media (max-width: 860px){ .mockup-body{ grid-template-columns: 1fr; } }
  .risk-register{ display:flex; flex-direction:column; gap:10px; }
  .risk-row{
    display:grid; grid-template-columns: 34px 1fr 74px; gap: 12px; align-items:center;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--line-dark);
    border-radius: 4px;
    padding: 11px 13px;
  }
  .risk-row .badge{
    width:13px; height:13px; border-radius:50%; justify-self:center;
  }
  .risk-row .badge--high{ background: var(--red); box-shadow: 0 0 0 3px rgba(179,65,62,0.18); }
  .risk-row .badge--mid{ background: var(--amber); box-shadow: 0 0 0 3px rgba(192,138,46,0.18); }
  .risk-row .badge--low{ background: var(--green); box-shadow: 0 0 0 3px rgba(79,121,101,0.18); }
  .risk-row .desc{ font-size: 13.5px; color: var(--cream); }
  .risk-row .desc small{ display:block; color: var(--muted-on-dark); font-family: var(--font-mono); font-size: 11px; margin-top: 2px; }
  .risk-row .score{ font-family: var(--font-mono); font-size: 12.5px; text-align:right; color: var(--muted-on-dark); }
  .matrix-box{
    border: 1px solid var(--line-dark);
    border-radius: 4px;
    padding: 18px;
    display:flex; flex-direction:column;
  }
  .matrix-box .tag{ font-family: var(--font-mono); font-size: 11px; color: var(--muted-on-dark); letter-spacing:0.1em; text-transform:uppercase; margin-bottom: 12px; }
  .matrix-grid{
    flex:1;
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 3px;
    min-height: 160px;
  }
  .mcell{ position:relative; border-radius: 2px; }
  .mcell.low{ background: rgba(79,121,101,0.18); }
  .mcell.mid{ background: rgba(192,138,46,0.20); }
  .mcell.high{ background: rgba(179,65,62,0.16); }
  .mcell.crit{ background: rgba(179,65,62,0.34); }
  .mcell .dot{
    position:absolute; width: 20px; height:20px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-family: var(--font-mono); font-size: 10px; font-weight:700; color: var(--navy);
    background: var(--gold-soft);
  }
  .matrix-axis{ display:flex; justify-content:space-between; font-family: var(--font-mono); font-size: 9.5px; color: var(--muted-on-dark); margin-top:8px; letter-spacing:0.06em; }
  .methodology{ margin-top:16px; font-family: var(--font-mono); font-size: 11.5px; color: var(--muted-on-dark); }

  /* ---------- For whom ---------- */
  .scope{ background: var(--cream); }
  .scope-grid{ display:grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items:start; }
  @media (max-width: 900px){ .scope-grid{ grid-template-columns: 1fr; } }
  .scope-list{ display:flex; flex-direction:column; gap: 12px; }
  .scope-item{
    display:flex; align-items:center; gap: 14px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 16px 18px;
    font-size: 15px;
  }
  .scope-item .n{ font-family: var(--font-mono); color: var(--gold); font-weight:700; font-size:13px; min-width: 20px; }
  .scope-outside{
    background: var(--navy);
    color: var(--cream);
    border-radius: 8px;
    padding: 30px 28px;
  }
  .scope-outside h3{ font-size: 19px; }
  .scope-outside p{ margin-top: 12px; font-size: 14.5px; color: var(--muted-on-dark); }
  .chat-open-btn{
    margin-top: 22px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold-soft);
    font-weight:700;
    font-size: 14.5px;
    padding: 13px 20px;
    border-radius: 3px;
    display:inline-flex; align-items:center; gap:10px;
    transition: background .15s ease;
  }
  .chat-open-btn:hover{ background: rgba(201,162,75,0.1); }

  /* ---------- Price ---------- */
  .price{ background: var(--paper); }
  .price-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  @media (max-width: 860px){ .price-grid{ grid-template-columns: 1fr; } }
  .price-card{
    border-radius: 10px;
    padding: 36px 32px;
  }
  .price-card.main{
    background: var(--navy);
    color: var(--cream);
    position:relative;
    overflow:hidden;
    border: 1px solid var(--line-dark);
  }
  .launch-badge{
    display:inline-block;
    font-family: var(--font-mono);
    font-size: 11.5px; letter-spacing:0.12em; text-transform:uppercase;
    color: var(--navy); background: var(--gold);
    padding: 6px 12px; border-radius: 2px; font-weight:700;
    margin-bottom: 20px;
  }
  .price-amount{ font-family: var(--font-display); font-size: 52px; color: var(--cream); }
  .price-amount span{ font-family: var(--font-mono); font-size: 16px; color: var(--muted-on-dark); margin-left:10px; }
  .price-card.main p.desc{ margin-top: 14px; color: var(--muted-on-dark); font-size: 15px; max-width: 400px; }
  .price-card.main .btn-primary{ margin-top: 26px; }
  .price-card.alt{
    background: var(--cream);
    border: 1px solid var(--line);
  }
  .price-card.alt .eyebrow{ color: var(--amber); }
  .price-card.alt h3{ margin-top:12px; font-size: 21px; color: var(--navy); }
  .price-card.alt p{ margin-top: 12px; font-size: 15px; color: var(--muted); }
  .btn-outline{
    margin-top: 22px;
    display:inline-flex; align-items:center; gap:10px;
    background: transparent;
    border: 1.5px solid var(--navy);
    color: var(--navy);
    font-weight:700; font-size:15px;
    padding: 13px 22px; border-radius:3px;
    text-decoration:none;
    transition: background .15s ease, color .15s ease;
  }
  .btn-outline:hover{ background: var(--navy); color: var(--cream); }

  /* ---------- Insights / conteúdo ---------- */
  .insights{ background: var(--navy); color: var(--cream); }
  .insights .section-head h2{ color: var(--cream); max-width: 760px; }
  .insights-subtitle{ margin-top: 16px; font-size: 16px; color: var(--muted-on-dark); max-width: 720px; line-height: 1.6; }
  .insight-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
  @media (max-width: 860px){ .insight-grid{ grid-template-columns: 1fr; } }
  .insight-card{
    background: var(--navy-2);
    border: 1px solid var(--line-dark);
    border-radius: 6px;
    padding: 28px 24px;
  }
  .insight-card .num{ font-family: var(--font-mono); color: var(--gold); font-size: 13px; letter-spacing:0.1em; }
  .insight-card h3{ margin-top: 14px; font-size: 17px; color: var(--cream); line-height: 1.35; }
  .insight-card p{ margin-top: 12px; font-size: 14.5px; color: var(--muted-on-dark); line-height: 1.6; }
  .insights-cta{ margin-top: 40px; }
  .btn-outline.light{ border-color: var(--gold); color: var(--gold-soft); }
  .btn-outline.light:hover{ background: rgba(201,162,75,0.12); color: var(--gold-soft); }

  /* ---------- FAQ ---------- */
  .faq{ background: var(--cream); }
  .faq-list{ display:flex; flex-direction:column; border-top:1px solid var(--line); }
  .faq-item{ border-bottom: 1px solid var(--line); }
  .faq-q{
    width:100%; text-align:left; background:none; border:none;
    padding: 22px 0; display:flex; justify-content:space-between; align-items:center; gap:20px;
    font-family: var(--font-display); font-size: 18px; color: var(--navy); font-weight:700;
  }
  .faq-q .plus{ font-family: var(--font-mono); color: var(--gold); font-size:20px; flex-shrink:0; transition: transform .2s ease; }
  .faq-item.open .faq-q .plus{ transform: rotate(45deg); }
  .faq-a{ max-height:0; overflow:hidden; transition: max-height .25s ease; }
  .faq-a p{ padding-bottom: 22px; font-size: 15px; color: var(--muted); max-width: 720px; }

  /* ---------- Final CTA ---------- */
  .final-cta{
    background: var(--navy); color:var(--cream); text-align:center;
    padding: 100px 0;
  }
  .final-cta h2{ font-size: clamp(26px,3.4vw,38px); max-width:640px; margin:0 auto; line-height:1.25; }
  .final-cta .lede{ margin-top:16px; color: var(--muted-on-dark); font-size:16px; }
  .final-cta .btn-primary{ margin-top: 34px; }

  footer{ background: var(--navy); border-top:1px solid var(--line-dark); padding: 36px 0; }
  footer .wrap{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; }
  footer .fnote{ font-family: var(--font-mono); font-size: 11.5px; color: var(--muted-on-dark); max-width:560px; }
  footer .fcontact{ font-family: var(--font-mono); font-size: 12px; color: var(--muted-on-dark); text-align:right; }
  footer .fcontact b{ color: var(--gold-soft); }

  /* ---------- Chat widget ---------- */
  .chat-fab{
    position: fixed; right: 24px; bottom: 24px; z-index: 200;
    background: var(--gold); color: var(--navy);
    border:none; border-radius: 50px;
    padding: 15px 22px; font-weight:700; font-size:14.5px;
    display:flex; align-items:center; gap:10px;
    box-shadow: 0 14px 30px -10px rgba(0,0,0,0.45);
    transition: transform .15s ease;
  }
  .chat-fab:hover{ transform: translateY(-2px); }
  .chat-panel{
    position: fixed; right: 24px; bottom: 96px; z-index: 200;
    width: 380px; max-width: calc(100vw - 32px);
    height: 560px; max-height: calc(100vh - 140px);
    background: var(--paper);
    border-radius: 10px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
    display:none;
    flex-direction:column;
    overflow:hidden;
    border: 1px solid var(--line);
  }
  .chat-panel.open{ display:flex; }
  .chat-head{
    background: var(--navy); color: var(--cream);
    padding: 16px 18px; display:flex; justify-content:space-between; align-items:center;
    border-bottom: 1px solid var(--line-dark);
  }
  .chat-head .who .name{ font-family: var(--font-mono); font-size: 12.5px; letter-spacing:0.06em; color: var(--gold-soft); }
  .chat-head .who .status{ font-size: 11px; color: var(--muted-on-dark); margin-top:2px; }
  .chat-close{ background:none; border:none; color: var(--muted-on-dark); font-size: 20px; line-height:1; }
  .chat-body{
    flex:1; overflow-y:auto; padding: 18px; display:flex; flex-direction:column; gap: 12px;
    background: var(--cream);
  }
  .msg{ max-width: 84%; font-size: 14px; padding: 11px 14px; border-radius: 10px; line-height:1.45; }
  .msg.bot{ background: var(--paper); border: 1px solid var(--line); align-self:flex-start; border-bottom-left-radius:2px; }
  .msg.user{ background: var(--navy); color: var(--cream); align-self:flex-end; border-bottom-right-radius:2px; }
  .chat-options{ display:flex; flex-direction:column; gap:8px; align-self:flex-start; max-width:94%; }
  .chat-opt-btn{
    background: var(--paper);
    border: 1px solid var(--gold);
    color: var(--navy);
    font-size: 13.5px; font-weight:600;
    padding: 10px 14px; border-radius: 8px; text-align:left;
    transition: background .15s ease;
  }
  .chat-opt-btn:hover{ background: rgba(201,162,75,0.14); }
  .chat-iframe-wrap{ align-self:stretch; border:1px solid var(--line); border-radius:8px; overflow:hidden; background:#fff; }
  .chat-foot{
    padding: 10px 14px; border-top:1px solid var(--line);
    font-family: var(--font-mono); font-size: 10.5px; color: var(--muted); text-align:center;
    background: var(--paper);
  }

  ::-webkit-scrollbar{ width:8px; }
  ::-webkit-scrollbar-thumb{ background: var(--line); border-radius:8px; }

  /* ---------- Blog ---------- */
  .page-header{
    background: var(--navy); color: var(--cream);
    padding: 76px 0 60px;
    border-bottom: 1px solid var(--line-dark);
  }
  .page-header h1{ font-size: clamp(28px, 4vw, 42px); line-height:1.2; max-width: 760px; margin-top:14px; }
  .page-header .lede{ margin-top:16px; color: var(--muted-on-dark); font-size:16px; max-width:640px; }
  .back-link{
    font-family: var(--font-mono); font-size: 12.5px; color: var(--gold-soft);
    text-decoration:none; display:inline-flex; align-items:center; gap:8px;
  }

  .blog-grid{
    display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  }
  @media (max-width: 900px){ .blog-grid{ grid-template-columns: 1fr; } }
  .blog-card{
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 28px 24px;
    display:flex; flex-direction:column;
    text-decoration:none;
    color: inherit;
    transition: border-color .15s ease, transform .15s ease;
  }
  .blog-card:hover{ border-color: var(--gold); transform: translateY(-2px); }
  .blog-card .cat{ font-family: var(--font-mono); font-size: 11.5px; letter-spacing:0.1em; text-transform:uppercase; color: var(--amber); }
  .blog-card h3{ margin-top:14px; font-size: 19px; color: var(--navy); line-height:1.35; }
  .blog-card p{ margin-top:12px; font-size: 14.5px; color: var(--muted); line-height:1.55; flex:1; }
  .blog-card .read-more{ margin-top:18px; font-family: var(--font-mono); font-size:12.5px; color: var(--navy); font-weight:700; }

  /* ---------- Article ---------- */
  .article-header{
    background: var(--navy); color: var(--cream);
    padding: 60px 0 48px;
    border-bottom: 1px solid var(--line-dark);
  }
  .article-header .cat{ font-family: var(--font-mono); font-size:12px; letter-spacing:0.14em; text-transform:uppercase; color: var(--gold); }
  .article-header h1{ margin-top:16px; font-size: clamp(28px, 4vw, 40px); line-height:1.2; max-width: 780px; }
  .article-meta{ margin-top:18px; font-family: var(--font-mono); font-size:12.5px; color: var(--muted-on-dark); }
  .article-body{
    max-width: 720px; margin: 0 auto; padding: 64px 28px 20px;
  }
  .article-body p{ font-size: 17px; line-height:1.75; color: var(--ink); margin-bottom: 22px; }
  .article-body h2{ font-size: 24px; color: var(--navy); margin: 40px 0 16px; line-height:1.3; }
  .article-body blockquote{
    margin: 32px 0; padding: 4px 0 4px 22px;
    border-left: 3px solid var(--gold);
    font-family: var(--font-display); font-style: italic;
    font-size: 19px; color: var(--navy); line-height:1.5;
  }
  .article-cta{
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 30px 28px;
    margin: 48px 0 8px;
    text-align:center;
  }
  .article-cta h3{ font-size:20px; color: var(--navy); }
  .article-cta p{ margin-top:10px; font-size:14.5px; color: var(--muted); }
  .article-cta .btn-primary{ margin-top:18px; background: var(--gold); color: var(--navy); }
  .article-nav{
    max-width: 720px; margin: 0 auto; padding: 0 28px 60px;
  }

  /* ---------- Scroll reveal (restrained motion) ---------- */
  .reveal{
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .reveal.in-view{ opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce){
    .reveal{ opacity:1; transform:none; transition:none; }
  }

  /* ---------- Como Funciona (linha do tempo) ---------- */
  .how-timeline{ background: var(--navy); padding: 72px 0; }
  .how-timeline .eyebrow{ font-family: var(--font-mono); font-size: 12px; letter-spacing:.08em; text-transform:uppercase; }
  .timeline{
    display:flex;
    justify-content:space-between;
    position:relative;
    margin-top:56px;
    gap:32px;
  }
  .timeline::before{
    content:"";
    position:absolute;
    top:22px;
    left:22px; right:22px;
    height:1px;
    background: var(--line-dark);
  }
  .timeline-step{
    position:relative;
    flex:1;
    text-align:left;
    padding-top:64px;
  }
  .timeline-node{
    position:absolute;
    top:0; left:0;
    width:44px; height:44px;
    border-radius:50%;
    background: var(--navy);
    border:1.5px solid var(--gold);
    color: var(--gold);
    display:flex; align-items:center; justify-content:center;
    font-family: var(--font-display);
    font-size:16px;
    z-index:1;
  }
  .timeline-step h3{ font-size:18px; color: var(--cream); line-height:1.3; margin-bottom:8px; }
  .timeline-step p{ font-size:14.5px; color: var(--muted-on-dark); line-height:1.55; }
  @media (max-width:860px){
    .timeline{ flex-direction:column; gap:36px; }
    .timeline::before{ top:0; bottom:0; left:22px; right:auto; width:1px; height:auto; }
    .timeline-step{ padding-top:0; padding-left:64px; min-height:44px; }
  }
