/* ============================================================
   Agência CB Digital · site institucional
   Fontes locais (@font-face) · sem CDN, sem Google Fonts
   Tokens em /css/tokens.css (sistema da Juliana)
   ============================================================ */

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/Sora-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/Sora-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/Sora-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/Sora-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/Inter-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/Inter-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/Inter-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/Inter-Bold.ttf') format('truetype');
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--text-primary);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin: 0;
  color: var(--text-primary);
}
p { margin: 0; }
a { color: var(--link); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--link-hover); }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--brand-purple-soft); outline-offset: 3px; border-radius: var(--radius-xs); }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   COMPONENTES REUSADOS DA IDENTIDADE
   ============================================================ */
.badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-display); font-weight: var(--fw-medium);
  font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: var(--ls-wider);
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-pill);
}
.badge--brand { background: var(--brand-purple-tint); color: var(--brand-purple); }
.badge--gold { background: rgba(201, 162, 39, 0.16); color: var(--accent-gold-deep); }
.badge--outline { background: transparent; border: 1px solid var(--border-strong); color: var(--text-secondary); }
.badge--dark { background: var(--ink-800); color: var(--paper); }
.badge--gold-dark { background: rgba(201, 162, 39, 0.18); color: var(--accent-gold-soft); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-body); font-weight: var(--fw-semibold);
  font-size: var(--fs-sm); line-height: 1;
  padding: var(--space-3) var(--space-6); border-radius: var(--radius-pill);
  border: 1px solid transparent; cursor: pointer;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base), box-shadow var(--t-base), transform var(--t-fast);
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brand-purple); color: var(--text-on-brand); box-shadow: var(--shadow-brand); }
.btn--primary:hover { background: var(--brand-purple-soft); color: var(--text-on-brand); }
.btn--ghost { background: transparent; border-color: var(--border-strong); color: var(--text-primary); }
.btn--ghost:hover { background: var(--ink-900); color: var(--paper); border-color: var(--ink-900); }
.btn--ghost-light { background: transparent; border-color: rgba(244, 241, 236, 0.4); color: var(--paper); }
.btn--ghost-light:hover { background: rgba(244, 241, 236, 0.12); color: var(--paper); }
.btn--lg { font-size: var(--fs-base); padding: var(--space-4) var(--space-7); }
.btn--whatsapp { background: #25D366; color: #06351c; box-shadow: 0 12px 32px rgba(37, 211, 102, 0.32); }
.btn--whatsapp:hover { background: #1fb959; color: #06351c; }

.eyebrow {
  display: inline-block; font-family: var(--font-display); font-weight: var(--fw-medium);
  font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: var(--ls-wider);
  color: var(--brand-purple); margin-bottom: var(--space-3);
}
.eyebrow--gold { color: var(--accent-gold-deep); }
.eyebrow--on-dark { color: var(--accent-gold); }

/* ============================================================
   HEADER STICKY
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: rgba(15, 15, 18, 0.88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ink-700);
}
.site-header .container {
  display: flex; align-items: center; gap: var(--space-5);
  padding-block: var(--space-3); min-height: 64px;
}
.brand-lockup { display: inline-flex; align-items: center; gap: var(--space-3); }
.brand-mono {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: var(--brand-purple); color: var(--paper-pure);
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: 1.05rem; letter-spacing: var(--ls-tight);
}
.brand-name {
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: var(--fs-md); color: var(--paper); letter-spacing: var(--ls-snug);
  line-height: 1.1;
}
.brand-name .cb { color: var(--accent-gold); }
.header-nav { display: flex; align-items: center; gap: var(--space-6); margin-left: auto; }
.header-nav a {
  color: var(--text-on-dark-muted); font-size: var(--fs-sm);
  font-weight: var(--fw-medium); font-family: var(--font-body);
}
.header-nav a:hover { color: var(--paper); }
.header-cta { margin-left: var(--space-5); }
.nav-toggle {
  display: none; margin-left: auto; background: transparent; border: 0;
  color: var(--paper); cursor: pointer; padding: var(--space-2);
}
.nav-toggle svg { display: block; }

@media (max-width: 880px) {
  .header-nav {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink-900); border-bottom: 1px solid var(--ink-700);
    margin-left: 0; padding: var(--space-4) var(--gutter) var(--space-6);
    transform: translateY(-120%); transition: transform var(--t-base);
    box-shadow: var(--shadow-lg);
  }
  .header-nav.open { transform: translateY(0); }
  .header-nav a { padding: var(--space-3) 0; border-bottom: 1px solid var(--ink-700); }
  .header-cta { margin: var(--space-4) 0 0; }
  .nav-toggle { display: inline-flex; }
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding-block: var(--section-y); }
.section--tint { background: var(--paper-pure); }
.section-head { max-width: 64ch; margin-bottom: var(--space-8); }
.section-head h2 { font-size: var(--fs-xl); }
.section-head p { margin-top: var(--space-4); color: var(--text-secondary); font-size: var(--fs-md); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ============================================================
   HERO ASSIMETRICO 7/5
   ============================================================ */
.hero { padding-block: clamp(2.5rem, 1.5rem + 4vw, 5rem); }
.hero-grid {
  display: grid; gap: var(--space-8);
  grid-template-columns: 7fr 5fr; align-items: center;
}
.hero-copy .eyebrow { color: var(--accent-gold-deep); }
.hero-copy h1 {
  font-size: var(--fs-display); max-width: 16ch; margin-top: var(--space-3);
}
.hero-copy h1 .accent { color: var(--brand-purple); }
.hero-copy .lede {
  margin-top: var(--space-5); font-size: var(--fs-md);
  color: var(--text-secondary); max-width: 46ch;
}
.hero-actions { margin-top: var(--space-7); display: flex; gap: var(--space-4); flex-wrap: wrap; }

.hero-visual {
  position: relative; aspect-ratio: 4 / 5; min-height: 360px;
  border-radius: var(--radius-xl); overflow: hidden;
  background: var(--ink-900);
  box-shadow: var(--shadow-lg);
}
.hero-visual::before {
  content: ""; position: absolute; inset: 0;
  background: var(--gradient-brand); opacity: 0.92;
}
.hero-visual::after {
  content: ""; position: absolute; inset: -30% -20% auto auto;
  width: 70%; height: 80%; background: var(--gradient-ink);
  opacity: 0.55; filter: blur(50px); border-radius: var(--radius-round);
}
.hero-visual .watermark {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: clamp(8rem, 20vw, 16rem); line-height: 1;
  letter-spacing: var(--ls-tight);
  color: transparent; -webkit-text-stroke: 2px rgba(244, 241, 236, 0.5);
  z-index: 1; user-select: none;
}
.hero-visual .visual-caption {
  position: absolute; left: var(--space-6); bottom: var(--space-6); right: var(--space-6);
  z-index: 2; color: var(--paper);
}
.hero-visual .visual-caption .vc-kicker {
  font-family: var(--font-display); font-weight: var(--fw-medium);
  font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: var(--ls-wider);
  color: var(--accent-gold-soft);
}
.hero-visual .visual-caption .vc-text {
  font-family: var(--font-display); font-weight: var(--fw-semibold);
  font-size: var(--fs-md); margin-top: var(--space-2); line-height: var(--lh-snug);
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 280px; }
  .hero-copy h1 { max-width: 100%; }
}

/* ============================================================
   PRA QUEM (3 colunas curtas)
   ============================================================ */
.audience-grid {
  display: grid; gap: var(--space-5);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.audience-card {
  background: var(--paper-pure); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: var(--space-6);
  box-shadow: var(--shadow-xs);
}
.audience-card .ac-tag {
  font-family: var(--font-display); font-weight: var(--fw-semibold);
  font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: var(--ls-wide);
  color: var(--brand-purple);
}
.audience-card h3 { font-size: var(--fs-md); font-weight: var(--fw-semibold); margin-top: var(--space-3); letter-spacing: var(--ls-snug); }
.audience-card p { margin-top: var(--space-3); color: var(--text-secondary); font-size: var(--fs-sm); }

/* ============================================================
   SERVICOS (4 cards numerados)
   ============================================================ */
.services-grid {
  display: grid; gap: var(--space-5);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.service-card {
  position: relative; background: var(--paper-pure);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-lg);
  padding: var(--space-6); box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  display: flex; flex-direction: column; gap: var(--space-3);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--mist-strong); }
.service-card .sc-head { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); }
.service-card .sc-num {
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: var(--fs-xl); color: var(--accent-gold-deep);
  letter-spacing: var(--ls-tight); line-height: 1;
}
.service-card .sc-icon {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand-purple-tint); color: var(--brand-purple); flex-shrink: 0;
}
.service-card .sc-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: var(--fs-md); font-weight: var(--fw-semibold); letter-spacing: var(--ls-snug); }
.service-card p { color: var(--text-secondary); font-size: var(--fs-sm); }

/* ============================================================
   LIVE SHOP (bloco escuro destacado)
   ============================================================ */
.liveshop {
  background: var(--gradient-ink); color: var(--paper);
  border-radius: var(--radius-xl); padding: clamp(2rem, 1.2rem + 4vw, 4.5rem);
  position: relative; overflow: hidden;
}
.liveshop::after {
  content: ""; position: absolute; inset: auto -8% -50% auto;
  width: 55%; height: 130%; background: var(--gradient-brand);
  opacity: 0.42; filter: blur(70px); border-radius: var(--radius-round); pointer-events: none;
}
.liveshop-inner { position: relative; z-index: 1; max-width: 60ch; }
.liveshop h2 { color: var(--paper); font-size: var(--fs-2xl); margin-top: var(--space-3); }
.liveshop .ls-lede { margin-top: var(--space-5); color: var(--text-on-dark-muted); font-size: var(--fs-md); }
.liveshop ul.ls-points { margin-top: var(--space-5); display: grid; gap: var(--space-3); }
.liveshop ul.ls-points li {
  display: flex; gap: var(--space-3); align-items: flex-start;
  color: var(--paper); font-size: var(--fs-sm);
}
.liveshop ul.ls-points li::before {
  content: ""; width: 8px; height: 8px; margin-top: 9px; flex-shrink: 0;
  border-radius: var(--radius-round); background: var(--accent-gold);
}
.liveshop .ls-cta { margin-top: var(--space-7); display: flex; gap: var(--space-4); flex-wrap: wrap; }

/* ============================================================
   METODO CB (timeline 5 etapas)
   ============================================================ */
.method-list { display: grid; gap: var(--space-5); }
.method-step {
  display: grid; grid-template-columns: auto 1fr; gap: var(--space-5);
  align-items: start; padding: var(--space-5) 0; position: relative;
}
.method-step + .method-step { border-top: 1px solid var(--border-subtle); }
.method-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--brand-purple); color: var(--paper-pure);
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: var(--fs-lg); letter-spacing: var(--ls-tight); flex-shrink: 0;
}
.method-step h3 { font-size: var(--fs-md); font-weight: var(--fw-semibold); letter-spacing: var(--ls-snug); }
.method-step p { margin-top: var(--space-2); color: var(--text-secondary); font-size: var(--fs-sm); }

/* ============================================================
   PROVA / FRENTES (numeros troféu)
   ============================================================ */
.proof-band {
  background: var(--gradient-ink); border-radius: var(--radius-xl);
  padding: clamp(2rem, 1.2rem + 3vw, 3.5rem);
  display: grid; gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.proof-block { text-align: center; padding: var(--space-4); }
.proof-block .pb-num {
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: var(--fs-3xl); color: var(--accent-gold);
  letter-spacing: var(--ls-tight); line-height: 1;
}
.proof-block .pb-cap {
  margin-top: var(--space-3); font-family: var(--font-body);
  font-weight: var(--fw-semibold); font-size: var(--fs-sm);
  text-transform: uppercase; letter-spacing: var(--ls-wide);
  color: var(--text-on-dark-muted);
}
.proof-block .pb-note { margin-top: var(--space-2); font-size: var(--fs-xs); color: var(--text-on-dark-muted); text-transform: none; letter-spacing: 0; }
.proof-disclaimer { margin-top: var(--space-6); text-align: center; color: var(--text-muted); font-size: var(--fs-sm); }

/* ============================================================
   CONTATO + FORM
   ============================================================ */
.contact-grid {
  display: grid; gap: var(--space-8);
  grid-template-columns: 1fr 1fr; align-items: start;
}
.contact-intro h2 { font-size: var(--fs-xl); }
.contact-intro p { margin-top: var(--space-4); color: var(--text-secondary); font-size: var(--fs-md); }
.contact-channels { margin-top: var(--space-6); display: grid; gap: var(--space-3); }
.contact-channels a, .contact-channels span {
  display: inline-flex; align-items: center; gap: var(--space-3);
  color: var(--text-secondary); font-size: var(--fs-sm); font-weight: var(--fw-medium);
}
.contact-channels .cc-icon { color: var(--brand-purple); display: inline-flex; }
.contact-channels .cc-icon svg { width: 18px; height: 18px; }

.contact-form {
  background: var(--paper-pure); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: var(--space-7); box-shadow: var(--shadow-md);
}
.contact-form .field { margin-bottom: var(--space-5); }
.contact-form label {
  display: block; font-family: var(--font-body); font-weight: var(--fw-semibold);
  font-size: var(--fs-sm); color: var(--text-primary); margin-bottom: var(--space-2);
}
.contact-form input, .contact-form textarea {
  width: 100%; font-family: var(--font-body); font-size: var(--fs-base);
  color: var(--text-primary); background: var(--paper);
  border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4); transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--brand-purple);
  box-shadow: 0 0 0 3px rgba(93, 40, 115, 0.16);
}
.contact-form textarea { resize: vertical; min-height: 96px; }
.contact-form .btn { width: 100%; }
.contact-form .form-note { margin-top: var(--space-3); font-size: var(--fs-xs); color: var(--text-muted); text-align: center; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAB WHATSAPP
   ============================================================ */
.fab-whatsapp {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  z-index: var(--z-overlay); width: 60px; height: 60px; border-radius: var(--radius-round);
  background: #25D366; color: #fff; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.42); transition: transform var(--t-base);
}
.fab-whatsapp:hover { transform: scale(1.08); color: #fff; }
.fab-whatsapp svg { width: 32px; height: 32px; }
.fab-whatsapp::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius-round);
  background: #25D366; opacity: 0.6; z-index: -1; animation: fab-pulse 2.4s var(--ease-out) infinite;
}
@keyframes fab-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  70% { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .fab-whatsapp::after { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink-900); color: var(--paper); padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem); }
.footer-grid {
  display: grid; gap: var(--space-8);
  grid-template-columns: 1.4fr 1fr 1fr;
}
.footer-brand .footer-wordmark {
  display: inline-flex; align-items: center; gap: var(--space-3);
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: var(--fs-md); color: var(--paper);
}
.footer-brand .footer-wordmark .cb { color: var(--accent-gold); }
.footer-brand .tagline { margin-top: var(--space-4); color: var(--text-on-dark-muted); font-size: var(--fs-sm); max-width: 34ch; }
.footer-col h4 {
  font-family: var(--font-display); font-weight: var(--fw-semibold);
  font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: var(--ls-wider);
  color: var(--text-on-dark-muted); margin-bottom: var(--space-4);
}
.footer-col ul { display: grid; gap: var(--space-3); }
.footer-col a, .footer-col span { color: var(--text-on-dark-muted); font-size: var(--fs-sm); }
.footer-col a:hover { color: var(--paper); }
.footer-base {
  margin-top: var(--space-8); padding-top: var(--space-5);
  border-top: 1px solid var(--ink-700);
  display: flex; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap;
  font-size: var(--fs-xs); color: var(--text-on-dark-muted); letter-spacing: var(--ls-wide);
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-7); }
}

/* ============================================================
   DOWNLOADS PAGE
   ============================================================ */
.downloads-hero {
  background: var(--gradient-ink); color: var(--paper);
  padding-block: clamp(3rem, 2rem + 4vw, 5rem);
}
.downloads-hero .eyebrow { color: var(--accent-gold); }
.downloads-hero h1 { color: var(--paper); font-size: var(--fs-2xl); max-width: 20ch; margin-top: var(--space-3); }
.downloads-hero p { margin-top: var(--space-4); color: var(--text-on-dark-muted); font-size: var(--fs-md); max-width: 56ch; }
.downloads-hero .back-link { display: inline-flex; align-items: center; gap: var(--space-2); margin-top: var(--space-6); color: var(--accent-gold-soft); font-size: var(--fs-sm); font-weight: var(--fw-medium); }

.downloads-grid {
  display: grid; gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.download-card {
  background: var(--paper-pure); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.download-card .dc-media {
  aspect-ratio: 16 / 10; background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center; color: var(--paper-pure);
  font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-xl);
  position: relative;
}
.download-card .dc-media.dc-media--gold { background: var(--gradient-ink); }
.download-card .dc-media .dc-mono {
  position: absolute; bottom: var(--space-3); right: var(--space-4);
  font-size: var(--fs-sm); opacity: 0.85; letter-spacing: var(--ls-tight);
}
.download-card .dc-body { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.download-card .dc-kicker {
  font-family: var(--font-display); font-weight: var(--fw-medium);
  font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: var(--ls-wider);
  color: var(--brand-purple);
}
.download-card h3 { font-size: var(--fs-md); font-weight: var(--fw-semibold); letter-spacing: var(--ls-snug); }
.download-card p { color: var(--text-secondary); font-size: var(--fs-sm); flex: 1; }
.download-card .dc-actions { margin-top: var(--space-2); display: flex; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.download-card .dc-soon {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--accent-gold-deep);
}
.download-card .dc-button {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--brand-purple); color: #FFFFFF;
  font-size: var(--fs-sm); font-weight: var(--fw-semibold);
  padding: var(--space-3) var(--space-5); border-radius: var(--radius-md);
  text-decoration: none; transition: background var(--transition-base);
}
.download-card .dc-button:hover { background: var(--brand-purple-deep); }
.download-card .dc-link {
  font-size: var(--fs-sm); font-weight: var(--fw-medium); color: var(--brand-purple);
  text-decoration: none; border-bottom: 1px solid var(--mist-strong); padding-bottom: 1px;
  transition: color var(--transition-base), border-color var(--transition-base);
}
.download-card .dc-link:hover { color: var(--brand-purple-deep); border-color: var(--brand-purple); }
