:root {
    --serif: 'Iowan Old Style', 'Palatino Linotype', Palatino, 'Book Antiqua', Georgia, serif;
    --sans: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    --bg: #F2F5F3;
    --surface: #FFFFFF;
    --surface-2: #FAFCFB;
    --ink: #142320;
    --muted: #566863;
    --line: #DBE6E1;
    --brand: #2E7D6E;
    --brand-deep: #1E5A4E;
    --brand-soft: #E5EFEA;
    --warm: #B9723F;
    --shadow: 0 1px 2px rgba(20,35,32,.04), 0 10px 30px rgba(20,35,32,.06);
    --shadow-lg: 0 20px 50px rgba(20,35,32,.12);
    /* Fixos nos dois temas (evitam texto branco sobre verde claro): */
    --band: #1C544A;        /* fundo escuro de faixas com texto claro */
    --band-ink: #EDF6F2;
    --btn: #2C7A6B;         /* fundo de botão primário — legível com branco */
    --btn-hover: #1E5A4E;
    --radius: 16px;
    --maxw: 1140px;
  }
  @media (prefers-color-scheme: dark) {
    :root {
      --bg: #0D1917; --surface: #14231F; --surface-2: #182B27;
      --ink: #EAF1EE; --muted: #9EB3AD; --line: #26372F;
      --brand: #58AF9B; --brand-deep: #78C4B0; --brand-soft: #17302A; --warm: #D08A54;
      --shadow: 0 1px 2px rgba(0,0,0,.4), 0 10px 30px rgba(0,0,0,.35);
      --shadow-lg: 0 20px 50px rgba(0,0,0,.5);
    }
  }
  :root[data-theme="dark"] {
    --bg: #0D1917; --surface: #14231F; --surface-2: #182B27;
    --ink: #EAF1EE; --muted: #9EB3AD; --line: #26372F;
    --brand: #58AF9B; --brand-deep: #78C4B0; --brand-soft: #17302A; --warm: #D08A54;
    --shadow: 0 1px 2px rgba(0,0,0,.4), 0 10px 30px rgba(0,0,0,.35);
    --shadow-lg: 0 20px 50px rgba(0,0,0,.5);
  }
  :root[data-theme="light"] {
    --bg: #F2F5F3; --surface: #FFFFFF; --surface-2: #FAFCFB;
    --ink: #142320; --muted: #566863; --line: #DBE6E1;
    --brand: #2E7D6E; --brand-deep: #1E5A4E; --brand-soft: #E5EFEA; --warm: #B9723F;
    --shadow: 0 1px 2px rgba(20,35,32,.04), 0 10px 30px rgba(20,35,32,.06);
    --shadow-lg: 0 20px 50px rgba(20,35,32,.12);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0; background: var(--bg); color: var(--ink);
    font-family: var(--sans); font-size: 17px; line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }
  h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; text-wrap: balance; margin: 0; }
  p { margin: 0; }
  a { color: inherit; text-decoration: none; }
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  .eyebrow {
    font-family: var(--sans); font-size: .74rem; font-weight: 700; letter-spacing: .16em;
    text-transform: uppercase; color: var(--brand); display: inline-block;
  }
  .lead { color: var(--muted); font-size: 1.12rem; }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; gap: .5rem; font-family: var(--sans);
    font-weight: 600; font-size: .98rem; padding: .72rem 1.25rem; border-radius: 999px;
    border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, background .2s ease, border-color .2s ease;
  }
  .btn:focus-visible { outline: 3px solid color-mix(in srgb, var(--brand) 55%, transparent); outline-offset: 2px; }
  .btn-primary { background: var(--btn); color: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.12); }
  .btn-primary:hover { background: var(--btn-hover); transform: translateY(-1px); box-shadow: 0 6px 18px color-mix(in srgb, var(--btn) 45%, transparent); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
  .btn-ghost:hover { border-color: var(--brand); color: var(--brand); }

  /* Header */
  header.nav {
    position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid transparent; transition: border-color .3s ease;
  }
  header.nav.scrolled { border-color: var(--line); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 1rem; }
  .brand { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-size: 1.3rem; font-weight: 600; letter-spacing: -.01em; }
  .brand .mark { width: 30px; height: 30px; flex: none; }
  .nav-links { display: flex; align-items: center; gap: 1.7rem; }
  .nav-links a { position: relative; font-size: .95rem; color: var(--muted); transition: color .2s ease; padding-bottom: 2px; }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a.active { color: var(--ink); font-weight: 600; }
  .nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px; border-radius: 2px; background: var(--brand); }
  .nav-cta { display: flex; align-items: center; gap: .75rem; }
  .icon-btn { width: 38px; height: 38px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface);
    display: grid; place-items: center; cursor: pointer; color: var(--muted); }
  .icon-btn:hover { color: var(--brand); border-color: var(--brand); }
  @media (max-width: 900px) { .nav-links { display: none; } }

  /* Hero */
  .hero { padding: 72px 0 40px; }
  .hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
  .hero h1 { font-size: clamp(2.5rem, 5.4vw, 4rem); letter-spacing: -.02em; }
  .hero h1 em { font-style: normal; color: var(--brand); }
  .hero .lead { margin-top: 1.25rem; max-width: 40ch; }
  .hero-cta { display: flex; gap: .8rem; margin-top: 2rem; flex-wrap: wrap; }
  .trust-line { margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; color: var(--muted); font-size: .88rem; }
  .trust-line span { display: inline-flex; align-items: center; gap: .4rem; }
  .trust-line svg { color: var(--brand); flex: none; }
  @media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } .hero { padding: 44px 0 20px; } }

  /* Hero visual: product mock */
  .mock-stack { position: relative; padding: 8px; }
  .card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
  }
  .browser { overflow: hidden; }
  .browser .bar { display: flex; align-items: center; gap: 8px; padding: 11px 14px; border-bottom: 1px solid var(--line); background: var(--surface-2); }
  .dot { width: 10px; height: 10px; border-radius: 999px; background: var(--line); }
  .browser .url { margin-left: 8px; font-size: .74rem; color: var(--muted); font-family: var(--sans); background: var(--bg); padding: 3px 10px; border-radius: 999px; }
  .mock-agenda { padding: 18px 18px 22px; }
  .mock-agenda h4 { font-family: var(--serif); font-size: 1.05rem; margin: 0 0 .2rem; }
  .mock-agenda .sub { color: var(--muted); font-size: .82rem; margin-bottom: 14px; }
  .slot { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 12px; margin-bottom: 9px; background: var(--surface-2); }
  .slot .time { font-variant-numeric: tabular-nums; font-weight: 600; font-size: .9rem; width: 44px; color: var(--ink); }
  .slot .who { flex: 1; font-size: .9rem; }
  .slot .who small { display: block; color: var(--muted); font-size: .76rem; }
  .pill { font-size: .72rem; font-weight: 600; padding: 3px 9px; border-radius: 999px; }
  .pill.on { background: color-mix(in srgb, var(--brand) 16%, transparent); color: var(--brand-deep); }
  .pill.pres { background: color-mix(in srgb, var(--muted) 14%, transparent); color: var(--muted); }
  .mini-cta { margin-left: auto; font-size: .74rem; font-weight: 700; color: #fff; background: var(--btn); padding: 5px 11px; border-radius: 999px; display: inline-flex; gap: 5px; align-items: center; }
  .doc-card { position: absolute; right: -14px; bottom: -26px; width: 232px; padding: 16px; }
  .doc-card .k { font-family: var(--sans); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); font-weight: 700; }
  .doc-card h5 { font-family: var(--serif); font-size: 1rem; margin: .35rem 0 .5rem; }
  .doc-lines div { height: 7px; border-radius: 4px; background: var(--line); margin-bottom: 7px; }
  .doc-lines div:nth-child(2) { width: 82%; }
  .doc-lines div:nth-child(3) { width: 64%; }
  .doc-sign { margin-top: 12px; display: flex; align-items: center; gap: 8px; font-size: .76rem; color: var(--muted); }
  .doc-sign .ok { width: 22px; height: 22px; border-radius: 999px; background: color-mix(in srgb, var(--brand) 18%, transparent); color: var(--brand-deep); display: grid; place-items: center; }
  @media (max-width: 480px) { .doc-card { position: static; width: auto; margin-top: 16px; } .mock-stack { padding: 0; } }

  /* Marquee / trust strip */
  .strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface-2); }
  .strip .wrap { display: flex; flex-wrap: wrap; gap: 14px 34px; align-items: center; justify-content: center; padding: 20px 24px; }
  .strip b { font-family: var(--serif); }
  .strip .item { display: inline-flex; align-items: center; gap: .55rem; font-size: .92rem; color: var(--muted); }
  .strip .item svg { color: var(--brand); }

  /* Sections */
  section { padding: 92px 0; }
  .sec-head { max-width: 62ch; margin-bottom: 44px; }
  .sec-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); letter-spacing: -.015em; margin-top: .5rem; }
  .sec-head p { margin-top: .9rem; color: var(--muted); font-size: 1.08rem; }

  /* Feature groups */
  .fgroup { margin-bottom: 40px; }
  .fgroup > .glabel { font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
  .fgroup > .glabel::after { content: ""; flex: 1; height: 1px; background: var(--line); }
  .fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  @media (max-width: 820px) { .fgrid { grid-template-columns: 1fr; } }
  .feat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
  .feat:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--brand) 40%, var(--line)); }
  .feat .fi { width: 42px; height: 42px; border-radius: 11px; background: var(--brand-soft); color: var(--brand-deep); display: grid; place-items: center; margin-bottom: 15px; }
  .feat h3 { font-size: 1.16rem; margin-bottom: .4rem; }
  .feat p { color: var(--muted); font-size: .96rem; }

  /* Compliance */
  .compliance { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .comp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  @media (max-width: 760px) { .comp-grid { grid-template-columns: 1fr; } }
  .comp { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-2); }
  .comp .badge { flex: none; width: 54px; height: 54px; border-radius: 12px; background: var(--brand-soft); color: var(--brand-deep);
    display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: .72rem; text-align: center; line-height: 1.1; padding: 4px; }
  .comp h3 { font-size: 1.08rem; margin-bottom: .3rem; }
  .comp p { color: var(--muted); font-size: .92rem; }

  /* Video split */
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  @media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 36px; } }
  .checklist { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 14px; }
  .checklist li { display: flex; gap: 12px; align-items: flex-start; }
  .checklist .c { flex: none; width: 24px; height: 24px; border-radius: 999px; background: color-mix(in srgb, var(--brand) 16%, transparent); color: var(--brand-deep); display: grid; place-items: center; margin-top: 2px; }
  .checklist b { display: block; }
  .checklist span { color: var(--muted); font-size: .95rem; }
  .video-visual { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lg);
    background: radial-gradient(120% 120% at 30% 20%, color-mix(in srgb, var(--brand) 28%, var(--surface)) 0%, var(--surface) 60%); aspect-ratio: 4/3; }
  .video-visual .frame { position: absolute; inset: 22px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; overflow: hidden; }
  .video-visual .vhead { padding: 10px 14px; border-bottom: 1px solid var(--line); font-size: .8rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
  .video-visual .vstage { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px; }
  .video-visual .tile { border-radius: 10px; background: linear-gradient(160deg, color-mix(in srgb, var(--brand) 30%, var(--surface)), color-mix(in srgb, var(--brand-deep) 45%, var(--surface))); position: relative; }
  .video-visual .tile.two { background: linear-gradient(160deg, color-mix(in srgb, var(--warm) 26%, var(--surface)), color-mix(in srgb, var(--muted) 30%, var(--surface))); }
  .video-visual .tile span { position: absolute; left: 8px; bottom: 8px; font-size: .68rem; color: #fff; background: rgba(0,0,0,.35); padding: 2px 7px; border-radius: 6px; }
  .video-visual .vbar { padding: 10px; display: flex; justify-content: center; gap: 10px; border-top: 1px solid var(--line); }
  .video-visual .vbtn { width: 34px; height: 34px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted); }
  .video-visual .vbtn.end { background: #d9534f; color: #fff; border-color: #d9534f; }
  .lock-chip { position: absolute; top: 34px; right: 34px; z-index: 2; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 5px 11px; font-size: .74rem; color: var(--brand-deep); display: inline-flex; align-items: center; gap: 6px; box-shadow: var(--shadow); }

  /* Steps */
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
  @media (max-width: 820px) { .steps { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }
  .step { padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--surface); position: relative; }
  .step .n { font-family: var(--serif); font-size: 1.1rem; color: var(--brand-deep); background: var(--brand-soft); width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center; margin-bottom: 14px; font-variant-numeric: tabular-nums; }
  .step h3 { font-size: 1.06rem; margin-bottom: .35rem; }
  .step p { color: var(--muted); font-size: .92rem; }

  /* Security band */
  .secband { background: var(--band); color: var(--band-ink); border-radius: 24px; padding: 48px; }
  .secband .eyebrow { color: color-mix(in srgb, var(--band-ink) 72%, var(--brand)); }
  .secband h2 { color: #fff; }
  .secband p.lead { color: color-mix(in srgb, var(--band-ink) 80%, transparent); }
  .secgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 34px; }
  @media (max-width: 820px) { .secgrid { grid-template-columns: 1fr 1fr; } .secband { padding: 32px; } }
  @media (max-width: 480px) { .secgrid { grid-template-columns: 1fr; } }
  .secitem .si { color: #fff; margin-bottom: 10px; opacity: .95; }
  .secitem b { display: block; color: #fff; margin-bottom: 4px; }
  .secitem span { color: color-mix(in srgb, #EAF5F1 72%, transparent); font-size: .9rem; }

  /* Pricing */
  .price-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 20px; align-items: stretch; }
  @media (max-width: 760px) { .price-grid { grid-template-columns: 1fr; } }
  .plan { border: 1px solid var(--line); border-radius: 20px; padding: 30px; background: var(--surface); display: flex; flex-direction: column; }
  .plan.featured { border-color: var(--brand); box-shadow: var(--shadow-lg); position: relative; }
  .plan.featured .tag { position: absolute; top: 18px; right: 18px; background: var(--brand-soft); color: var(--brand-deep); font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
  .plan h3 { font-size: 1.25rem; }
  .plan .money { font-family: var(--serif); font-size: 2.6rem; margin: 10px 0 2px; letter-spacing: -.02em; }
  .plan .money small { font-family: var(--sans); font-size: .95rem; color: var(--muted); font-weight: 500; }
  .plan .pdesc { color: var(--muted); font-size: .95rem; margin-bottom: 18px; }
  .plan ul { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 11px; }
  .plan ul li { display: flex; gap: 10px; font-size: .95rem; align-items: flex-start; }
  .plan ul svg { color: var(--brand); flex: none; margin-top: 3px; }
  .plan .btn { width: 100%; justify-content: center; margin-top: auto; }

  /* FAQ */
  .faq { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
  details.qa { border: 1px solid var(--line); border-radius: 14px; background: var(--surface); padding: 4px 20px; }
  details.qa summary { cursor: pointer; list-style: none; padding: 16px 0; font-family: var(--serif); font-size: 1.08rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
  details.qa summary::-webkit-details-marker { display: none; }
  details.qa summary .chev { transition: transform .2s ease; color: var(--brand); flex: none; }
  details.qa[open] summary .chev { transform: rotate(45deg); }
  details.qa p { color: var(--muted); font-size: .96rem; padding: 0 0 18px; }

  /* Final CTA */
  .final { text-align: center; }
  .final h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.02em; }
  .final p { color: var(--muted); margin: 1rem auto 0; max-width: 46ch; }
  .final .hero-cta { justify-content: center; }

  /* Footer */
  footer { border-top: 1px solid var(--line); padding: 54px 0 40px; color: var(--muted); font-size: .9rem; }
  .foot-top { display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-bottom: 30px; }
  .foot-note { max-width: 62ch; }
  .disclaimer { font-size: .82rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 22px; margin-top: 22px; }

  /* Reveal */
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---- Subpáginas (legal / conformidade) ---- */
.subhead { padding: 60px 0 26px; border-bottom: 1px solid var(--line); background: var(--surface-2); }
.subhead .eyebrow { margin-bottom: 10px; }
.subhead h1 { font-size: clamp(2rem, 4.5vw, 3rem); letter-spacing: -.02em; }
.subhead p { color: var(--muted); margin-top: .8rem; max-width: 60ch; }
.subhead .updated { font-size: .82rem; color: var(--muted); margin-top: 14px; }

.prose { max-width: 74ch; padding: 48px 0 20px; }
.prose h2 { font-size: 1.5rem; margin: 40px 0 12px; letter-spacing: -.01em; }
.prose h3 { font-size: 1.15rem; margin: 26px 0 8px; }
.prose p { margin: 0 0 14px; }
.prose ul { margin: 0 0 16px; padding-left: 22px; display: grid; gap: 8px; }
.prose li { padding-left: 4px; }
.prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }
.prose .callout { border-left: 3px solid var(--brand); background: var(--brand-soft); padding: 14px 18px; border-radius: 0 10px 10px 0; margin: 18px 0; color: var(--ink); }
.toc { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 18px 22px; margin-bottom: 8px; }
.toc b { font-family: var(--sans); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 10px; }
.toc ol { margin: 0; padding-left: 20px; display: grid; gap: 6px; }
.toc a { color: var(--ink); text-decoration: none; }
.toc a:hover { color: var(--brand); }

/* ---- Selo / hero de conformidade (chamativo) ---- */
.seal-hero { padding: 84px 0 40px; background:
  radial-gradient(90% 120% at 85% -10%, color-mix(in srgb, var(--brand) 24%, var(--bg)) 0%, var(--bg) 55%); }
.seal-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
@media (max-width: 840px) { .seal-grid { grid-template-columns: 1fr; gap: 32px; } }
.seal-hero h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -.02em; }
.seal-hero h1 em { font-style: normal; color: var(--brand); }
.seal {
  aspect-ratio: 1; max-width: 320px; margin: 0 auto; border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, var(--surface) 58%, var(--brand-soft) 60%, var(--surface) 62%);
  border: 2px solid var(--brand); position: relative; display: grid; place-items: center; box-shadow: var(--shadow-lg);
}
.seal::before, .seal::after { content: ""; position: absolute; inset: 14px; border-radius: 50%; border: 1px dashed color-mix(in srgb, var(--brand) 45%, transparent); }
.seal::after { inset: 26px; border-style: solid; border-color: color-mix(in srgb, var(--brand) 22%, transparent); }
.seal .core { text-align: center; z-index: 2; padding: 20px; }
.seal .core .ico { color: var(--brand-deep); margin-bottom: 8px; }
.seal .core b { font-family: var(--serif); font-size: 1.35rem; display: block; line-height: 1.05; }
.seal .core span { font-family: var(--sans); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.badges-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.badges-row .b { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--brand-deep);
  background: var(--surface); border: 1px solid var(--line); padding: 7px 13px; border-radius: 999px; }
.badges-row .b svg { color: var(--brand); }

/* Feature "em breve" (desabilitada) */
.feat.soon { opacity: .7; }
.soon-badge { display: inline-block; font-size: .64rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); background: color-mix(in srgb, var(--muted) 15%, transparent); padding: 2px 8px; border-radius: 999px; margin-left: 8px; vertical-align: middle; }
