/* ================================================
   Whisper Dictate — getwhisperdictate.com
   Complete standalone stylesheet
   ================================================ */

/* ---- RESET & VARIABLES ---- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0D1931;
  --muted: #6b7a94;
  --border: #e5e7eb;
  --orange: #c94010;
  --orange-light: rgba(201,64,16,.06);
  --bg-alt: #f8f9fb;
  --radius: 12px;
}
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
  background: #fff;
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ---- STICKY NAV ---- */
.wd-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 2rem;
  transition: background .25s, box-shadow .25s, padding .25s;
}
.wd-nav.scrolled {
  background: rgba(255,255,255,.88);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 0 var(--border);
  padding-top: .65rem;
  padding-bottom: .65rem;
}
.wd-nav-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: -.01em;
}
.wd-nav-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
}
.wd-nav-dl {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--navy);
  color: #fff;
  font-size: .78rem;
  font-weight: 500;
  padding: .5rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity .15s;
}
.wd-nav-dl:hover { opacity: .75; }
.wd-nav-apple { width: 13px; height: 13px; }

/* ---- HERO ---- */
.wd-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, #fafbfd 0%, #fff 100%);
}
.wd-hero-inner { max-width: 680px; margin: 0 auto; }
.wd-hero-icon {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  margin: 0 auto 2rem;
  box-shadow: 0 12px 40px rgba(201,64,16,.2), 0 4px 12px rgba(0,0,0,.08);
}
.wd-h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.04em;
  margin-bottom: 1rem;
}
.wd-h1 em { font-style: normal; color: var(--orange); }
.wd-tagline {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 400;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}
.wd-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--navy);
  color: #fff;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 500;
  padding: .9rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(13,25,49,.2);
}
.wd-hero-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13,25,49,.25);
}
.wd-hero-apple { width: 16px; height: 16px; }
.wd-hero-sub {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: .75rem;
}
.wd-hero-screenshot {
  max-width: 800px;
  margin: 3.5rem auto 0;
  padding: 0 1rem;
}
.wd-hero-screenshot img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.06);
}

/* ---- TRUST BAR ---- */
.wd-trust {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.wd-trust-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 400;
}
.wd-trust-icon {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ---- FEATURE SECTIONS ---- */
.wd-feature {
  padding: 5rem 2rem;
}
.wd-feature-alt {
  background: var(--bg-alt);
}
.wd-feature-inner {
  max-width: 800px;
  margin: 0 auto;
}
.wd-feature-center { text-align: center; }
.wd-feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.wd-feature-rev { direction: rtl; }
.wd-feature-rev > * { direction: ltr; }
.wd-feature-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.05);
}
.wd-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .6rem;
}
.wd-h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-bottom: 1rem;
}
.wd-desc {
  font-size: .94rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.72;
  margin-bottom: .6rem;
}
.wd-desc:last-child { margin-bottom: 0; }
.wd-desc-narrow { max-width: 520px; }
.wd-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: .88rem;
  font-weight: 500;
  color: var(--orange);
  text-decoration: none;
  transition: opacity .15s;
}
.wd-link:hover { opacity: .7; }

/* ---- KBD ---- */
.wd-kbd {
  font-family: inherit;
  font-size: .78rem;
  background: #eef0f4;
  border: 1px solid #d8dce4;
  border-radius: 5px;
  padding: .1rem .4rem;
  color: var(--navy);
  font-weight: 500;
  white-space: nowrap;
}

/* ---- STEPS ---- */
.wd-steps {
  list-style: none;
  counter-reset: step;
  margin-top: 2rem;
}
.wd-steps li {
  counter-increment: step;
  display: flex;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.wd-steps li:last-child { border-bottom: none; }
.wd-steps li::before {
  content: counter(step, decimal-leading-zero);
  font-size: .72rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: .06em;
  padding-top: .25rem;
  flex-shrink: 0;
  min-width: 28px;
}
.wd-steps li strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .2rem;
}
.wd-steps li p {
  font-size: .88rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
}

/* ---- FEATURE GRID (cards) ---- */
.wd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}
.wd-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow .2s, transform .2s;
}
.wd-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  transform: translateY(-2px);
}
.wd-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.wd-card-icon svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}
.wd-card h3 {
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: .4rem;
  line-height: 1.3;
}
.wd-card p {
  font-size: .84rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.55;
}

/* ---- COMPARISON TABLE ---- */
.wd-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: .88rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.wd-table thead th {
  text-align: left;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .75rem 1.1rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.wd-table thead th.wd-col-wd {
  color: var(--orange);
  background: var(--orange-light);
}
.wd-table tbody td {
  padding: .8rem 1.1rem;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.wd-table tbody tr:last-child td { border-bottom: none; }
.wd-table td:first-child { font-weight: 500; }
.wd-table td.wd-col-wd { background: var(--orange-light); font-weight: 600; }
.wd-yes { color: #16a34a; }
.wd-no { color: #dc2626; font-weight: 400; }
.wd-muted { color: var(--muted); }

/* ---- PRIVACY BADGES ---- */
.wd-priv-badges {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.75rem;
}
.wd-priv-badge {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
}
.wd-priv-badge svg {
  width: 20px;
  height: 20px;
  color: #16a34a;
  flex-shrink: 0;
  margin-top: .1rem;
}
.wd-priv-badge strong {
  display: block;
  font-size: .88rem;
  font-weight: 600;
  color: #15803d;
  margin-bottom: .1rem;
}
.wd-priv-badge span {
  font-size: .82rem;
  color: #166534;
  font-weight: 400;
}

/* ---- PRICING ---- */
.wd-price {
  max-width: 420px;
  margin: 2rem auto 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  text-align: left;
}
.wd-price-head {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.wd-badge {
  display: inline-block;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(201,64,16,.25);
  background: var(--orange-light);
  padding: .25rem .7rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.wd-price-amount {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
}
.wd-price-amount sup { font-size: 1.1rem; font-weight: 500; vertical-align: .7em; }
.wd-price-period { font-size: .84rem; color: var(--muted); margin-top: .3rem; }
.wd-price-features {
  list-style: none;
  padding: 1.5rem 2rem;
}
.wd-price-features li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .55rem 0;
  font-size: .88rem;
  font-weight: 400;
  border-bottom: 1px solid var(--border);
}
.wd-price-features li:last-child { border-bottom: none; }
.wd-price-features li::before {
  content: '';
  width: 5px; height: 5px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #16a34a;
}
.wd-price-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin: 0 2rem 1.5rem;
  padding: .9rem;
  background: var(--navy);
  color: #fff;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(13,25,49,.18);
}
.wd-price-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13,25,49,.22);
}
.wd-price-apple { width: 15px; height: 15px; }
.wd-price-note {
  font-size: .76rem;
  color: var(--muted);
  text-align: center;
  padding: 0 2rem 1.5rem;
}

/* ---- FAQ ---- */
.wd-faq {
  margin-top: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.wd-faq-item { border-bottom: 1px solid var(--border); }
.wd-faq-item:last-child { border-bottom: none; }
.wd-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: background .15s;
}
.wd-faq-q:hover { background: var(--bg-alt); }
.wd-faq-chevron {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .25s;
}
.wd-faq-item.open .wd-faq-chevron { transform: rotate(180deg); }
.wd-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.wd-faq-item.open .wd-faq-a { max-height: 300px; }
.wd-faq-a p {
  padding: 0 1.25rem 1.25rem;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ---- FINAL CTA ---- */
.wd-cta-final {
  background: linear-gradient(135deg, #1a1207 0%, #3d1a05 50%, #5c2408 100%);
  padding: 5rem 2rem;
  text-align: center;
}
.wd-cta-final-inner { max-width: 560px; margin: 0 auto; }
.wd-cta-final-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  margin: 0 auto 1.5rem;
}
.wd-cta-final h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: .75rem;
}
.wd-cta-final p {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  font-weight: 400;
  margin-bottom: 2rem;
}
.wd-cta-final-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #fff;
  color: #1a1207;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 600;
  padding: .95rem 2.2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(201,64,16,.25);
}
.wd-cta-final-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,64,16,.35);
}
.wd-cta-final-apple { width: 16px; height: 16px; }

/* ---- FOOTER ---- */
.wd-footer {
  background: #080e1d;
  color: rgba(255,255,255,.7);
  padding: 3.5rem 2rem 0;
}
.wd-footer-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}
.wd-footer-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.wd-footer-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}
.wd-footer-brand strong {
  display: block;
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
}
.wd-footer-brand span {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.wd-footer-cols {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.wd-footer-col {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.wd-footer-title {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .25rem;
}
.wd-footer-col a {
  font-size: .84rem;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .15s;
}
.wd-footer-col a:hover { color: #fff; }
.wd-footer-social {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.wd-ig-icon { width: 16px; height: 16px; }
.wd-footer-bottom {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.25rem 0;
}
.wd-footer-bottom p {
  font-size: .74rem;
  color: rgba(255,255,255,.3);
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay { transition-delay: .15s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .wd-nav { padding: .75rem 1.25rem; }
  .wd-hero { padding: 6.5rem 1.5rem 3rem; }
  .wd-hero-icon { width: 72px; height: 72px; border-radius: 16px; }
  .wd-feature { padding: 3.5rem 1.5rem; }
  .wd-feature-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .wd-feature-rev { direction: ltr; }
  .wd-grid { grid-template-columns: 1fr; }
  .wd-trust { gap: 1.25rem; padding: 1.5rem; }
  .wd-trust-item { font-size: .78rem; }
  .wd-table { font-size: .8rem; }
  .wd-table thead th, .wd-table tbody td { padding: .65rem .75rem; }
  .wd-price { margin-left: 0; margin-right: 0; }
  .wd-price-head, .wd-price-features { padding-left: 1.5rem; padding-right: 1.5rem; }
  .wd-price-btn { margin-left: 1.5rem; margin-right: 1.5rem; }
  .wd-price-note { padding-left: 1.5rem; padding-right: 1.5rem; }
  .wd-cta-final { padding: 3.5rem 1.5rem; }
  .wd-footer-inner { flex-direction: column; gap: 2rem; }
  .wd-footer-cols { gap: 2rem; }
  .wd-priv-badges { gap: .5rem; }
}

@media (max-width: 480px) {
  .wd-nav-dl span { display: none; }
  .wd-trust { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .wd-grid { gap: .75rem; }
  .wd-card { padding: 1.25rem; }
  .wd-footer-cols { flex-direction: column; gap: 1.5rem; }
}


/* ---- WHAT'S NEW v1.1 ---- */
.wd-whatsnew {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
  border-top: 2px solid var(--orange);
}
.wd-whatsnew-inner {
  max-width: 800px;
  margin: 0 auto;
}
.wd-wn-header { text-align: center; margin-bottom: 2.5rem; }
.wd-wn-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  padding: .3rem .85rem;
  border-radius: 100px;
  margin-bottom: .75rem;
}
.wd-wn-version {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: .75rem;
}
.wd-wn-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.035em;
  margin-bottom: .85rem;
}
.wd-wn-subtitle {
  font-size: .95rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}
.wd-wn-hero {
  margin-bottom: 3rem;
}
.wd-wn-hero img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.06);
}
.wd-wn-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.wd-wn-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow .2s, transform .2s;
}
.wd-wn-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  transform: translateY(-2px);
}
.wd-wn-card-icon {
  display: flex;
  gap: .35rem;
  margin-bottom: 1rem;
}
.wd-wn-card-icon svg {
  width: 20px;
  height: 20px;
}
.wd-wn-icon-engine svg:first-child { color: #eab308; }
.wd-wn-icon-engine svg:last-child { color: #16a34a; }
.wd-wn-icon-chat svg { color: #6366f1; }
.wd-wn-icon-stats svg { color: var(--orange); }
.wd-wn-card h3 {
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.wd-wn-card p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.6;
}
.wd-wn-card p strong { color: var(--navy); font-weight: 500; }
.wd-wn-also {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  background: #fff;
}
.wd-wn-also-title {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.wd-wn-also-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.wd-wn-also-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .84rem;
  color: var(--navy);
  font-weight: 400;
}
.wd-wn-also-item svg {
  width: 16px;
  height: 16px;
  color: var(--muted);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .wd-wn-features { grid-template-columns: 1fr; }
  .wd-wn-also-grid { grid-template-columns: 1fr; }
  .wd-whatsnew { padding: 3.5rem 1.5rem; }
}


/* ---- CHANGELOG PAGE ---- */
.cl-header {
  padding: 7rem 2rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}
.cl-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.1;
  margin-bottom: .5rem;
}
.cl-subtitle {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 400;
}
.cl-timeline {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}
.cl-release {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}
.cl-release:first-child { border-top: none; }
.cl-release-aside {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  position: sticky;
  top: 5rem;
  align-self: start;
}
.cl-version {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
}
.cl-date {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 400;
}
.cl-badge-new {
  display: inline-block;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  padding: .2rem .6rem;
  border-radius: 100px;
  margin-top: .25rem;
  width: fit-content;
}
.cl-release-title {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.2;
  margin-bottom: .6rem;
}
.cl-release-intro {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.cl-hero-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.05);
  margin-bottom: 2rem;
}
.cl-section { margin-bottom: 1.75rem; }
.cl-section:last-child { margin-bottom: 0; }
.cl-section-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.cl-section-tag svg { width: 13px; height: 13px; }
.cl-tag-new {
  color: #16a34a;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.cl-tag-improved {
  color: #2563eb;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}
.cl-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.cl-list li {
  padding: .85rem 0;
  border-bottom: 1px solid var(--border);
}
.cl-list li:last-child { border-bottom: none; }
.cl-list li strong {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: .2rem;
}
.cl-list li p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}
.cl-list-compact li {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.5;
  padding: .5rem 0;
  padding-left: 1.1rem;
  position: relative;
}
.cl-list-compact li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .85rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
}
@media (max-width: 640px) {
  .cl-header { padding: 5.5rem 1.5rem 2rem; }
  .cl-timeline { padding: 0 1.5rem 3rem; }
  .cl-release {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .cl-release-aside {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
  }
  .cl-version { font-size: 1.2rem; }
}

/* ---- SHARED CLASSES (used by privacy/terms/support pages) ---- */
.nav-icon { width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0; }
.footer-icon { width: 20px; height: 20px; border-radius: 5px; opacity: .5; }
.wd-footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.wd-footer-links p { font-size: .78rem; color: var(--muted); font-weight: 300; }
.wd-footer-link {
  font-size: .78rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 300;
  transition: color .12s;
}
.wd-footer-link:hover { color: var(--navy); }
.wd-body-narrow { max-width: 480px; }
.wd-pp-nested { margin-top: .35rem; }

.wd-wn-changelog-link { margin-top: 1.5rem; text-align: center; display: block; }
