/* =====================================================
   CleverCoder Landing Page — style.css
   Palette: Dark #0F0F14 | Accent #CC785C | Super #959CC3
   ===================================================== */

:root {
  --bg:          #0F0F14;
  --bg-card:     #1A1A24;
  --bg-alt:      #13131C;
  --accent:      #CC785C;
  --accent-h:    #E8906E;
  --super:       #959CC3;
  --text:        #F0EEE8;
  --text-sec:    #8A8A9A;
  --text-muted:  #6A6A7A;
  --border:      #2A2A3A;
  --check:       #CC785C;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-h); }

/* ── HERO ── */
.hero-split {
  display: grid;
  grid-template-columns: 380px 1fr;
  align-items: center;
  gap: 56px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 40px 52px;
}
.hero-brand-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero-logo-big {
  width: 350px;
  height: 350px;
  object-fit: contain;
  animation: logo-glow 3s ease-in-out infinite;
}
@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 0 24px rgba(204,120,92,0.55)); }
  50%       { filter: drop-shadow(0 0 60px rgba(204,120,92,0.95)); }
}
.hero-brand-name {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}
.hero-text-col h1 {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.hero-sub {
  color: var(--text-sec);
  font-size: 16px;
  margin-bottom: 32px;
}
.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 10px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(204,120,92,0.3);
}
.btn-cta:hover {
  background: var(--accent-h);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(204,120,92,0.45);
}
.hero-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Screenshot wrapper */
.hero-shot {
  position: relative;
  max-width: 1400px;
  margin: 0 auto 64px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  aspect-ratio: 1468/745;
  background: var(--bg-card);
}
.hero-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.hero-shot img.active { opacity: 1; }

/* ── HOOK STRIP ── */
.hook {
  background: var(--accent);
  padding: 28px 32px;
}
.hook-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.hook-item { text-align: center; flex: 1; }
.hook-item h3 { font-size: 34px; font-weight: 800; color: #fff; line-height: 1; }
.hook-item p { font-size: 13px; color: rgba(255,255,255,0.85); margin-top: 4px; }
.hook-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.3); }

/* ── SECTIONS COMMON ── */
section { padding: 80px 32px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 48px;
}
.alt-bg { background: var(--bg-alt); }

/* ── WHAT IS ── */
.what-body {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-sec);
  font-size: 16px;
  line-height: 1.8;
}

/* ── FEATURES GRID ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color .2s, transform .2s;
}
.feat-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.feat-emoji { font-size: 28px; margin-bottom: 12px; }
.feat-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.feat-card p { color: var(--text-sec); font-size: 14px; line-height: 1.7; }

/* ── TWO-COL SECTIONS ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col-text h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  margin-bottom: 16px;
}
.two-col-text p { color: var(--text-sec); font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.two-col-img {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.two-col-img img { width: 100%; display: block; }

/* Checkmarks */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-sec); }
.check-list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* Callout quote */
.callout {
  border-left: 3px solid var(--super);
  padding: 12px 16px;
  margin: 20px 0;
  background: rgba(149,156,195,0.07);
  border-radius: 0 8px 8px 0;
}
.callout p { color: var(--super); font-size: 15px; font-style: italic; margin: 0; }

/* ── OPUS 4.7 QUOTE ── */
.quote-intro {
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}
.opus-quote {
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  margin: 0;
  background: rgba(204,120,92,0.06);
  border-radius: 0 10px 10px 0;
}
.opus-quote p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 12px;
}
.opus-quote cite {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.4px;
}
.opus-quote-large {
  padding: 32px 36px;
  border-left-width: 4px;
}
.opus-quote-large p {
  font-size: 17px;
  margin-bottom: 18px;
}
.opus-quote-large p:last-of-type {
  margin-bottom: 20px;
}
.opus-quote code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.88em;
  font-style: normal;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(204,120,92,0.14);
  color: var(--accent);
}

/* ── HYPERCLEAR STEPS ── */
.hc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.steps-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.steps-list li {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-sec);
  align-items: flex-start;
}
.steps-list li:last-child { border-bottom: none; }
.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.hc-right h3 { font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.hc-right p { color: var(--text-sec); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }

/* ── DESIGNER TOOLS ── */
.dt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.dt-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color .2s, transform .2s;
}
.dt-card:hover { border-color: var(--super); transform: translateY(-3px); }
.dt-emoji { font-size: 28px; margin-bottom: 12px; }
.dt-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.dt-card p { color: var(--text-sec); font-size: 14px; line-height: 1.7; }

/* ── AI CONFIG CARDS ── */
.cfg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.cfg-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 18px;
  transition: border-color .2s;
}
.cfg-card:hover { border-color: var(--accent); }
.cfg-emoji { font-size: 22px; margin-bottom: 10px; }
.cfg-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.cfg-card p { color: var(--text-muted); font-size: 13px; line-height: 1.6; }

/* ── FULL LIST ── */
.full-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 40px;
  margin-top: 40px;
}
.full-list li {
  list-style: none;
  font-size: 14px;
  color: var(--text-sec);
  padding: 7px 0;
  border-bottom: 1px solid rgba(42,42,58,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── TOOLBAR TOUR ── */
.tb-frame {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  overflow-x: auto;
}
.tb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #22223A;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 12px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  white-space: nowrap;
  cursor: default;
  transition: border-color .15s;
  position: relative;
}
.tb-btn:hover { border-color: var(--accent); }
.tb-btn.primary { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 600; }
.tb-labels {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 0 2px;
}
.tb-label {
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
  text-align: center;
}
.tb-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.tb-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  transition: border-color .2s;
}
.tb-card:hover { border-color: var(--accent); }
.tb-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; font-family: 'JetBrains Mono', monospace; }
.tb-card p { color: var(--text-sec); font-size: 13px; line-height: 1.65; }

/* ── PRICING ── */
.pricing-card {
  max-width: 520px;
  margin: 40px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  border-radius: 18px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 8px 48px rgba(204,120,92,0.15);
}
.price-amount { font-size: 64px; font-weight: 900; line-height: 1; }
.price-beta {
  display: inline-block;
  background: var(--super);
  color: #0F0F14;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin: 8px 0 16px;
  letter-spacing: 0.5px;
}
.price-desc { color: var(--text-sec); font-size: 15px; margin-bottom: 24px; }
.price-divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.btn-buy {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(204,120,92,0.3);
  text-decoration: none;
}
.btn-buy:hover {
  background: var(--accent-h);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(204,120,92,0.45);
}
.price-note { font-size: 12px; color: var(--text-muted); margin-top: 16px; }

/* ── ABOUT ── */
.about-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  gap: 36px;
  align-items: flex-start;
}
.about-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-avatar img { width: 100%; height: 100%; object-fit: cover; }
.about-text h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.about-text p { color: var(--text-sec); font-size: 15px; line-height: 1.75; margin-bottom: 16px; }
.about-links { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #22223A;
  color: var(--text-sec);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.btn-social:hover { border-color: var(--accent); color: var(--text); }

/* ── ROADMAP ── */
.roadmap-list {
  list-style: none;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.roadmap-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-sec);
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.roadmap-list li::before {
  content: '→';
  color: var(--super);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.roadmap-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ── FAQ ── */
.faq-inner { max-width: 760px; }
.faq-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin: -12px auto 28px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0;
  transition: border-color .15s ease, background .15s ease;
}
.faq-item[open] {
  border-color: var(--accent, #5b8cff);
  background: var(--bg);
}
.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 48px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform .2s ease;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}
.faq-cta-note {
  text-align: center;
  margin-top: 8px;
}

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 24px 32px;
  font-size: 12px;
  color: var(--text-muted);
}
.lang-switch {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.lang-switch a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .15s ease;
}
.lang-switch a:hover {
  color: var(--text);
  text-decoration: underline;
}
.lang-switch .active {
  font-weight: 700;
  color: var(--text);
}
.lang-switch .sep {
  opacity: .5;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 20px 32px;
    text-align: center;
  }
  .hero-text-col { text-align: center; }
  .hero-text-col h1 { text-align: center; }
  .hero-logo-big { width: 260px; height: 260px; }
  .hero-brand-name { font-size: 2.6rem; }
  .hero-shot { order: -1; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .two-col.reverse { direction: ltr; }
  .two-col-img img { max-width: 100%; height: auto; }
  .hc-layout { grid-template-columns: 1fr; }
  .dt-grid { grid-template-columns: 1fr 1fr; }
  .cfg-grid { grid-template-columns: 1fr 1fr; }
  .full-list { grid-template-columns: 1fr 1fr; }
  .tb-cards { grid-template-columns: 1fr 1fr; }
  .hook-inner { flex-direction: column; gap: 20px; }
  .hook-divider { display: none; }
  section { padding: 48px 20px; }
}

@media (max-width: 600px) {
  .hero-split { padding: 32px 16px 24px; }
  .hero-text-col h1 { font-size: 28px; }
  .hero-sub { font-size: 15px; }
  .feat-grid { grid-template-columns: 1fr; }
  .dt-grid { grid-template-columns: 1fr; }
  .dt-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    padding: 18px 20px;
  }
  .dt-emoji {
    font-size: 22px;
    margin-bottom: 0;
    grid-row: 1;
    grid-column: 1;
    align-self: center;
    line-height: 1;
  }
  .dt-card h3 {
    grid-row: 1;
    grid-column: 2;
    margin-bottom: 0;
    align-self: center;
  }
  .dt-card p {
    grid-row: 2;
    grid-column: 1 / -1;
    margin-top: 10px;
  }
  .cfg-grid { grid-template-columns: 1fr; }
  .full-list { grid-template-columns: 1fr; }
  .tb-cards { grid-template-columns: 1fr; }
  .about-inner { flex-direction: column; }
  .pricing-card { padding: 28px 20px; }
  .section-title { font-size: clamp(22px, 5vw, 30px); }
  .opus-quote-large { padding: 20px 18px; }
  .opus-quote-large p { font-size: 15px; }
}

/* ── TOP NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 24px;
  min-height: 56px;
  background: rgba(15, 15, 20, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(42, 42, 58, 0.6);
}
.site-nav .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}
.site-nav .brand:hover { color: var(--text); }
.site-nav .brand-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.site-nav .brand-name {
  font-size: 1.02rem;
  letter-spacing: -0.2px;
}
.site-nav .nav-link {
  color: var(--text-sec);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 4px;
  margin-left: auto;
  transition: color .15s;
}
.site-nav .nav-link:hover {
  color: var(--text);
}
.btn-nav-buy {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 8px;
  transition: background .15s, transform .15s;
}
.btn-nav-buy:hover {
  background: var(--accent-h);
  color: #fff;
  transform: translateY(-1px);
}
@media (max-width: 480px) {
  .site-nav { padding: 8px 16px; min-height: 52px; gap: 10px; }
  .site-nav .brand-name { display: none; }
  .site-nav .nav-link { font-size: 13px; padding: 8px 2px; }
  .btn-nav-buy { padding: 8px 14px; font-size: 13px; }
}

/* ── MID-CTA BLOCK ── */
.mid-cta {
  padding: 48px 32px;
  text-align: center;
}
.mid-cta .section-inner {
  max-width: 680px;
}
.mid-cta-h {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.35;
}
@media (max-width: 600px) {
  .mid-cta { padding: 36px 20px; }
}

/* ── PRICING FEATURES LIST ── */
.price-features {
  list-style: none;
  margin: 8px auto 24px;
  padding: 0;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-sec);
  line-height: 1.5;
}
.price-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}


/* ── CHANGELOG PAGE ── */
.changelog-page {
  padding: 56px 32px 80px;
  background: var(--bg);
}
.cl-inner {
  max-width: 840px;
  margin: 0 auto;
}
.cl-title {
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.cl-sub {
  font-size: 16px;
  color: var(--text-sec);
  margin: 0 0 6px;
  line-height: 1.5;
}
.cl-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 40px;
  font-family: 'JetBrains Mono', Consolas, monospace;
}
.cl-updated time {
  color: var(--super);
}
.cl-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cl-release {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 26px;
}
.cl-release-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.cl-version {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
  font-family: 'JetBrains Mono', Consolas, monospace;
  letter-spacing: -0.01em;
}
.cl-date {
  font-size: 13px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', Consolas, monospace;
}
.cl-section {
  font-size: 14px;
  font-weight: 700;
  color: var(--super);
  margin: 18px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cl-section:first-child {
  margin-top: 0;
}
.cl-list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cl-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.55;
}
.cl-list li::before {
  content: '›';
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}
.cl-p {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 6px 0;
}
.cl-content code {
  background: var(--bg-alt);
  color: var(--super);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', Consolas, monospace;
  font-size: 0.88em;
}
.cl-content a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(204,120,92,0.35);
}
.cl-content a:hover {
  border-bottom-color: var(--accent);
}
.cl-content strong {
  color: var(--text);
  font-weight: 700;
}
.cl-content em {
  color: var(--text-sec);
  font-style: italic;
}
.cl-empty {
  color: var(--text-muted);
  font-style: italic;
  padding: 40px 0;
  text-align: center;
}

/* Footer site nav (Changelog link on homepage) */
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 10px 0 8px;
  font-size: 13px;
}
.footer-nav a {
  color: var(--text-sec);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-nav a:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .changelog-page { padding: 36px 18px 56px; }
  .cl-release { padding: 18px 18px; }
  .cl-release-head { gap: 8px; }
}

/* ── HERO: Download CTA + SmartScreen hint ── */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn-cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: border-color .2s, color .2s, background .2s, transform .15s;
}
.btn-cta-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(204,120,92,0.06);
  transform: translateY(-2px);
}
.hero-ss-hint {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
}
.hero-ss-hint strong {
  color: var(--text-sec);
  font-weight: 600;
}
.hero-tertiary-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.btn-tertiary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text-sec);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: color .15s, border-color .15s, background .15s;
}
.btn-tertiary:hover {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255,255,255,0.02);
}
.btn-tertiary .arrow-ext {
  color: var(--text-muted);
  font-size: 0.9em;
}
.btn-tertiary:hover .arrow-ext { color: var(--accent); }

/* Buy CTAs disabled state (TEMPORAL — usado cuando $buy_enabled = false en index.php) */
.btn-disabled,
.btn-disabled:hover {
  background: var(--text-muted) !important;
  color: #fff !important;
  cursor: not-allowed;
  box-shadow: none !important;
  transform: none !important;
  opacity: .55;
  filter: grayscale(40%);
  user-select: none;
  text-decoration: none;
}

/* Pricing card "Próximamente" replacement */
.price-soon { padding: 24px 8px; text-align: center; }
.price-soon-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
}
.price-soon-sub {
  font-size: 15px;
  color: var(--text-sec);
  margin: 0;
  line-height: 1.5;
}
