/* ==============================
   sections.css — Hero, Features, Tools, Platforms, Privacy, Download, Footer, Changelog
   ============================== */

/* ==============================
   HERO
   ============================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 5rem;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: 
    radial-gradient(circle at 20% 30%, rgba(74, 111, 165, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(123, 143, 184, 0.1) 0%, transparent 40%),
    var(--bg-base);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.3;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.1); }
}

.hero-content {
  flex: none;
  width: 100%;
  max-width: 800px;
  animation: fadeUp 0.8s ease both;
  z-index: 2;
  margin: 0 auto;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-visual {
  flex: none;
  width: 100%;
  max-width: 1100px;
  position: relative;
  z-index: 1;
}

.hero-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.05);
  background: #050608;
  border: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.4s ease, border-color var(--transition), border-radius var(--transition);
}

.hero-main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.title-highlight {
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.br-desk { display: block; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: none;
  border: none;
  white-space: nowrap;
}

.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow-strong);
}
.btn-primary:hover {
  background: var(--accent-bright);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--border-strong);
  background: var(--bg-card);
}

.btn-lg {
  padding: 0.85rem 1.8rem;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  width: 100%;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem;
}

.stat:first-child { padding-left: 0; }

.stat-num {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

.stat-plus {
  font-size: 1rem;
  color: var(--accent-bright);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: 0.15rem;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-strong);
  flex-shrink: 0;
}

/* Terminal */
.terminal-wrap {
  flex: 0 0 440px;
  position: relative;
  animation: fadeUp 0.8s 0.2s ease both;
}

.terminal {
  background: var(--bg-terminal);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255,255,255,0.03);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}

.t-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.t-red    { background: #ff5f57; }
.t-yellow { background: #ffbd2e; }
.t-green  { background: #28ca41; }

.t-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: auto;
  margin-right: auto;
}

.terminal-body {
  padding: 1.2rem 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.6;
}

.t-line {
  display: block;
  animation: termLine 0.3s ease both;
}

.t-gap { height: 0.6rem; }

.t-prompt {
  color: var(--green);
  margin-right: 0.6rem;
  font-weight: 600;
}

.t-cmd { color: #e8eaf0; }
.t-out { color: #6b7585; padding-left: 1.6rem; }
.t-accent { color: var(--accent-bright); }
.t-hash { color: var(--yellow); font-size: 0.78rem; }

.t-cursor {
  display: inline-block;
  color: var(--accent-bright);
  animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.terminal-glow {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

/* ==============================
   COMMAND PALETTE SECTION
   (full styles → see EMBEDDED PALETTE block near end of file)
   ============================== */

.palette-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-bright);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.palette-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.palette-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

/* ==============================
   FEATURES SECTION — SHOWCASE LAYOUT
   ============================== */
.features-section {
  padding: 7rem 2rem;
}

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-bright);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 3.5rem;
  line-height: 1.1;
}

.features-showcase {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 1rem;
}

/* ---- Showcase Row ---- */
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  min-height: 260px;
}

.showcase-row--flipped .showcase-text  { order: 2; }
.showcase-row--flipped .showcase-visual { order: 1; }

.showcase-row--center {
  grid-template-columns: 1fr;
  text-align: center;
  min-height: auto;
}

/* ---- Text Side ---- */
.showcase-text { min-width: 0; }

.showcase-text--center {
  max-width: 560px;
  margin: 0 auto;
}

.feat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  background: linear-gradient(135deg, var(--accent-glow), transparent);
  border: 1px solid rgba(59, 130, 246, 0.18);
}

.showcase-row:hover .feat-icon-wrap {
  background: linear-gradient(135deg, var(--accent-glow-strong), transparent);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 24px var(--accent-glow);
}

.feat-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.showcase-text h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.showcase-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 440px;
}

.showcase-row--center .showcase-text p {
  max-width: 100%;
  margin-bottom: 1rem;
}

/* ---- Code Block ---- */
.feat-code-block {
  margin-top: 1.4rem;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.7;
  max-width: 360px;
}

.code-c { color: #5a6478; }
.code-k { color: var(--purple); }

/* ---- Mode Pills ---- */
.mode-pills {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.4rem;
  justify-content: center;
}

.mode-pill {
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
}

.dark-pill {
  background: #14171c;
  color: #8b909e;
  border: 1px solid #2a2f3a;
}

.light-pill {
  background: #f0f2f7;
  color: #4a5063;
  border: 1px solid #dce0ea;
}

/* ---- Visual Side ---- */
.showcase-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-glow-card {
  width: 100%;
  min-height: 240px;
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-row:hover .showcase-glow-card {
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 8px 48px rgba(0,0,0,0.35);
}

/* Glow accents */
.showcase-glow-offline {
  box-shadow: inset 0 0 80px rgba(52, 211, 153, 0.06), 0 0 60px rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.18);
}
.showcase-row:hover .showcase-glow-offline {
  box-shadow: inset 0 0 80px rgba(52, 211, 153, 0.1), 0 0 80px rgba(52, 211, 153, 0.2);
  border-color: rgba(52, 211, 153, 0.3);
}

.showcase-glow-native {
  box-shadow: inset 0 0 80px rgba(59, 130, 246, 0.06), 0 0 60px rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.18);
}
.showcase-row:hover .showcase-glow-native {
  box-shadow: inset 0 0 80px rgba(59, 130, 246, 0.1), 0 0 80px rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.3);
}

.showcase-glow-tabs {
  box-shadow: inset 0 0 80px rgba(251, 191, 36, 0.06), 0 0 60px rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.18);
}
.showcase-row:hover .showcase-glow-tabs {
  box-shadow: inset 0 0 80px rgba(251, 191, 36, 0.1), 0 0 80px rgba(251, 191, 36, 0.2);
  border-color: rgba(251, 191, 36, 0.3);
}

.showcase-glow-editor {
  box-shadow: inset 0 0 80px rgba(167, 139, 250, 0.06), 0 0 60px rgba(167, 139, 250, 0.12);
  border-color: rgba(167, 139, 250, 0.18);
}
.showcase-row:hover .showcase-glow-editor {
  box-shadow: inset 0 0 80px rgba(167, 139, 250, 0.1), 0 0 80px rgba(167, 139, 250, 0.2);
  border-color: rgba(167, 139, 250, 0.3);
}

/* ---- Terminal Mock (Offline) ---- */
.showcase-terminal {
  background: #0d0f13;
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 100%;
  max-width: 380px;
  border: 1px solid rgba(255,255,255,0.06);
}

.showcase-terminal-bar {
  display: flex;
  gap: 6px;
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.showcase-terminal-body {
  padding: 1rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.8;
}

.t-prompt { color: var(--green); margin-right: 0.5rem; font-weight: 600; }
.t-cmd    { color: #e8eaf0; }
.t-out    { color: #5a6478; padding-left: 1.4rem; display: block; }
.t-hash   { color: var(--yellow); font-size: 0.74rem; }

/* ---- Metric Mock (Native) ---- */
.showcase-metric {
  width: 100%;
  max-width: 280px;
  font-family: var(--font-mono);
}

.showcase-metric-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
}

.showcase-metric-label { color: var(--text-secondary); }
.showcase-metric-val   { color: var(--accent-bright); font-weight: 600; }

.showcase-bar-bg {
  margin-top: 1rem;
  height: 6px;
  background: var(--bg-base);
  border-radius: 3px;
  overflow: hidden;
}

.showcase-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease;
}

.showcase-bar-fast { width: 92%; background: linear-gradient(90deg, var(--accent), var(--green)); }

/* ---- Tabs Mock (Tab Workflow) ---- */
.showcase-tabs-mock {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  max-width: 360px;
}

.showcase-tab {
  padding: 0.5rem 1rem;
  border-radius: 8px 8px 0 0;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-bottom: none;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--text-secondary);
}

.showcase-tab-active {
  background: var(--bg-card-hover);
  color: var(--accent-bright);
  border-color: rgba(59, 130, 246, 0.3);
  position: relative;
}

.showcase-tab-active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}

/* ---- Editor Mock (Code Editor) ---- */
.showcase-editor-mock {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.9;
  width: 100%;
  max-width: 380px;
  position: relative;
}

.ce-key    { color: var(--purple); }
.ce-fn     { color: #e8eaf0; }
.ce-param  { color: var(--yellow); }
.ce-meth   { color: var(--accent-bright); }
.ce-val    { color: var(--green); }
.ce-num    { color: #f59e0b; }

.showcase-editor-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--accent-bright);
  animation: cursorBlink 1s step-end infinite;
  vertical-align: text-bottom;
  margin-left: 2px;
}

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-bright);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
  line-height: 1.1;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-top: -2rem;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--purple) 100%);
  opacity: 0.3;
}

.feat-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.16);
}

.feat-card:hover::before { opacity: 1; }

.feat-large { grid-column: span 2; grid-row: span 2; }
.feat-wide  { grid-column: span 2; }

.feat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--accent-glow), transparent);
  border: 1px solid rgba(59, 130, 246, 0.15);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feat-card:hover .feat-icon-wrap {
  background: linear-gradient(135deg, var(--accent-glow-strong), transparent);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 0 20px var(--accent-glow);
}

.feat-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.feat-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.feat-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}

.feat-code-block {
  margin-top: 1.25rem;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.7;
}

.code-c { color: #5a6478; }
.code-k { color: var(--purple); }

.mode-pills {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.mode-pill {
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
}

.dark-pill {
  background: #14171c;
  color: #8b909e;
  border: 1px solid #2a2f3a;
}

.light-pill {
  background: #f0f2f7;
  color: #4a5063;
  border: 1px solid #dce0ea;
}

/* ==============================
   TOOLS SECTION
   ============================== */
.tools-section {
  padding: 7rem 2rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.tool-category {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.8rem 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}

.tool-category:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.14);
}

.tc-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.tc-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-glow), transparent);
  border: 1px solid rgba(59, 130, 246, 0.15);
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.tool-category:hover .tc-icon-wrap {
  background: linear-gradient(135deg, var(--accent-glow-strong), transparent);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 0 16px var(--accent-glow);
}

.tc-icon { font-size: 1.15rem; line-height: 1; }

.tc-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex: 1;
  letter-spacing: -0.01em;
}

.tc-count {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-bright);
  background: var(--accent-glow);
  border: 1px solid rgba(96, 165, 250, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.tc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-secondary);
  background: var(--bg-base);
  border: 1px solid var(--border);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  transition: all var(--transition);
  pointer-events: none;
}

.tool-category:hover .tag {
  color: var(--text-primary);
  border-color: rgba(96, 165, 250, 0.25);
}

.tag-more {
  color: var(--accent-bright);
  border-color: rgba(96, 165, 250, 0.25);
  background: var(--accent-glow);
}

.tc-desc {
  margin-top: auto;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  transition: color var(--transition), border-color var(--transition);
}

.tool-category:hover .tc-desc {
  color: var(--text-primary);
  border-color: rgba(96, 165, 250, 0.15);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.tool-category {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.7rem;
}

.tool-category:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.14);
}

.tc-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.tc-icon { font-size: 1.1rem; }

.tc-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  flex: 1;
  letter-spacing: -0.01em;
}

.tc-count {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-bright);
  background: var(--accent-glow);
  border: 1px solid rgba(96, 165, 250, 0.2);
  padding: 0.15rem 0.55rem;
  border-radius: 100px;
}

.tc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-secondary);
  background: var(--bg-base);
  border: 1px solid var(--border);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  transition: all var(--transition);
}

.tag:hover {
  color: var(--text-primary);
  border-color: var(--accent);
}

.tag-more {
  color: var(--accent-bright);
  border-color: rgba(96, 165, 250, 0.25);
  background: var(--accent-glow);
  cursor: pointer;
}
.tag-more:hover {
  background: rgba(96,165,250,0.18) !important;
  border-color: var(--accent-bright) !important;
  color: var(--accent-bright) !important;
  transform: scale(1.04);
}

/* ==============================
   PLATFORMS SECTION
   ============================== */
.platforms-section {
  padding: 5rem 2rem;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  position: relative;
  overflow: hidden;
}

.platform-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-glow), transparent 70%);
  opacity: 0;
  pointer-events: none;
}

.platform-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.platform-card:hover::after {
  opacity: 0.25;
}

.platform-featured {
  border-color: rgba(74, 111, 165, 0.25);
  background: linear-gradient(180deg, var(--accent-glow) 0%, var(--bg-card) 60%);
  box-shadow: 0 0 20px rgba(74, 111, 165, 0.08);
}

.platform-featured::after {
  opacity: 0.25;
}

.platform-featured:hover {
  border-color: var(--border-strong);
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.featured-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.platform-device {
  width: 100%;
  margin-bottom: 1rem;
  z-index: 1;
}

.platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 128px;
  margin: 0 auto 0.25rem;
  background: var(--bg-card-hover, rgba(255,255,255,0.05));
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--text-primary);
}

.platform-icon svg {
  width: 84px;
  height: 84px;
}

.platform-card:hover .platform-icon {
  background: var(--accent-glow, rgba(74,111,165,0.15));
  border-color: var(--accent, #4a6fa5);
  color: var(--accent, #4a6fa5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.platform-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  z-index: 1;
}

.platform-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  z-index: 1;
}

.store-badge-wrap {
  margin-top: auto;
  z-index: 1;
}

.store-badge-img {
  height: 40px;
  transition: transform 0.2s;
}

.store-badge-img:hover {
  transform: scale(1.05);
}

.platform-btn {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
}

.platform-btn:hover {
  background: var(--accent-bright);
}

/* ==============================
   PRIVACY SECTION
   ============================== */
.privacy-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
  transition: background var(--transition);
}

.privacy-inner { max-width: 1000px; margin: 0 auto; }

.privacy-layout {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.privacy-visual {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.privacy-shield-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-glow), transparent);
  border-radius: 50%;
  border: 1px solid var(--border-strong);
}

.shield-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  animation: pulseGlow 4s infinite alternate;
}

.privacy-icon {
  font-size: 8rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px var(--accent-glow));
}

.privacy-text-content {
  flex: 1;
  text-align: left;
}

.privacy-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.privacy-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.privacy-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.75rem;
}

.priv-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  padding: 0.4rem 0.9rem 0.4rem 0.4rem;
  border-radius: 100px;
  transition: border-color var(--transition), background var(--transition);
}

.priv-pill:hover {
  background: var(--bg-card-hover);
  border-color: rgba(52, 211, 153, 0.5);
}

.priv-pill-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

@media (max-width: 860px) {
  .privacy-layout {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  .privacy-visual {
    flex: 0 0 auto;
  }
  .privacy-shield-wrap {
    width: 160px;
    height: 160px;
  }
  .shield-glow {
    inset: -15px;
  }
  .privacy-icon {
    font-size: 5.5rem;
  }
  .privacy-text-content {
    text-align: center;
  }
  .privacy-pills {
    justify-content: center;
  }
}

/* ==============================
   DOWNLOAD CTA
   ============================== */
.download-section {
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
}

.download-inner { max-width: 700px; margin: 0 auto; position: relative; }

.dl-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.dl-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.dl-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.dl-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dl-version {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
}

.dl-version a {
  color: var(--accent-bright);
}

.dl-version a:hover {
  text-decoration: underline;
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
  transition: background var(--transition);
}

.footer-inner { max-width: 900px; margin: 0 auto; }

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.footer-tagline a { color: var(--accent-bright); }
.footer-tagline a:hover { text-decoration: underline; }

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--accent-bright); }

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==============================
   HERO VISUAL (SCREENSHOT)
   ============================== */
.hero-visual {
  flex: none;
  width: 100%;
  max-width: 1100px;
  position: relative;
  z-index: 1;
}

/* ---- Platform Tabs ---- */
.hero-platform-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
  padding: 0 1rem;
}

.hpt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--text-secondary);
  min-width: 0;
}

.hpt-btn:hover {
  border-color: var(--accent);
  color: var(--text-primary);
  background: var(--bg-card-hover);
}

.hpt-btn.hpt-active {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 2px 12px var(--accent-glow-strong);
}

.hpt-icon { width: 13px; height: 13px; flex-shrink: 0; }

.hero-platform-frame {
  position: relative;
  background: #0a0a0a;
  border: 1.5px solid rgba(255,255,255,0.1);
  padding: 12px;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-platform-frame[data-platform="ipad"] {
  padding: 14px;
  /* border-radius: 30px; */
}

/* Hide legacy frame elements */
.hero-frame-bar, .hero-frame-camera {
  display: none !important;
}

/* light-theme adjustments for hero frame - retain black bezel */
[data-theme="light"] .hero-platform-frame {
  background: #0a0a0a;
  border-color: rgba(0,0,0,0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}


/* ---- Image Container ---- */
.hero-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  transition: box-shadow 0.4s ease;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
}

.hero-main-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

/* ---- Theme Slider ---- */
.hero-light-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-light-clip .hero-main-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  clip-path: inset(0 0 0 80%);
  transition: clip-path 0s;
}

.hero-theme-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 80%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255,255,255,0.55);
  z-index: 10;
  pointer-events: all;
  cursor: col-resize;
  transition: background 0.2s;
}

.hero-theme-handle:hover { background: rgba(255,255,255,0.85); }

.hth-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.45);
  color: #334;
  pointer-events: none;
  flex-shrink: 0;
}

.hth-label {
  position: absolute;
  top: 12px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  pointer-events: none;
}

.hth-label-dark  { right: calc(100% + 6px); }
.hth-label-light { left: calc(100% + 6px); }

.hero-visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--accent-glow-strong) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  opacity: 0.6;
}

/* ==============================
   WHY DEVELOPERS LOVE IT — SIMPLE GRID
   ============================== */
.features-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.why-item {
  padding: 2.5rem 2.25rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.why-item:hover { background: var(--bg-card); }

.why-icon-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid var(--accent-glow-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--accent-bright);
  flex-shrink: 0;
}

.why-icon-badge svg { width: 18px; height: 18px; }

.why-item h3 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.why-item p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 340px;
}

@media (max-width: 900px) {
  .features-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .features-why-grid { grid-template-columns: 1fr; }
  .why-item { padding: 2rem 1.5rem; }
}

/* ==============================
   TOOLBOX — PER-CATEGORY ACCENT COLORS
   ============================== */
.tool-category[data-cat="converters"]      { --tc-rgb: 74, 144, 217; }
.tool-category[data-cat="code-generators"] { --tc-rgb: 52, 211, 153; }
.tool-category[data-cat="encoders"]        { --tc-rgb: 245, 158, 11; }
.tool-category[data-cat="crypto"]          { --tc-rgb: 167, 139, 250; }
.tool-category[data-cat="utilities"]       { --tc-rgb: 251, 146, 60; }
.tool-category[data-cat="validators"]      { --tc-rgb: 34, 211, 238; }
.tool-category[data-cat="viewers"]         { --tc-rgb: 236, 72, 153; }
.tool-category[data-cat="qr"]              { --tc-rgb: 129, 140, 248; }

.tool-category { --tc-rgb: 74, 111, 165; } /* fallback */

/* New icon placement — standalone large icon at top */
.tc-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(var(--tc-rgb), 0.12);
  border: 1px solid rgba(var(--tc-rgb), 0.22);
  color: rgb(var(--tc-rgb));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
  transition: background var(--transition), box-shadow var(--transition);
}

.tool-category:hover .tc-icon-wrap {
  background: rgba(var(--tc-rgb), 0.2);
  box-shadow: 0 0 18px rgba(var(--tc-rgb), 0.28);
}

.tc-icon-wrap svg { width: 22px; height: 22px; }

.tc-meta {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

/* ==============================
   IPAD QR CODE SECTION
   ============================== */
.ipad-badge-wrap {
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.ipad-qr-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.9rem 0.55rem 0.6rem;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  color: inherit;
  font: inherit;
  text-align: left;
}

.ipad-qr-row:hover,
.ipad-qr-row:focus-visible {
  border-color: rgba(96, 165, 250, 0.35);
  background: rgba(96, 165, 250, 0.08);
  outline: none;
}

.ipad-qr-img {
  width: 54px;
  height: 54px;
  border-radius: 7px;
  padding: 5px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  display: block;
  flex-shrink: 0;
}

.ipad-qr-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-align: left;
}

.qr-or {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.qr-scan-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.qr-expand-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  color: var(--accent-bright);
  text-transform: uppercase;
}

/* Tighten features section title gap before the bordered grid */
.features-section .section-title { margin-bottom: 0; }

/* Knob icon color */
.hth-knob svg { color: #444; }

/* ==============================
   PLATFORM DEVICE FRAMES
   ============================== */
.platform-device {
  width: 100%;
  margin-bottom: 1.25rem;
}

/* ==============================
   STORE BADGES
   ============================== */
.store-badge-wrap {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  justify-content: center;
}
.store-badge-img {
  height: 38px;
  width: auto;
  display: block;
}
.store-badge-img:hover {
  opacity: 0.85;
}

/* ==============================
    CHANGELOG PAGE
    ============================== */
.changelog-hero {
  padding: 10rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.changelog-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.changelog-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1rem;
}

.changelog-sub {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

.changelog-section {
  padding: 2rem 2rem 8rem;
}

.changelog-inner {
  max-width: 760px;
  margin: 0 auto;
}

.cl-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cl-timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--purple), transparent);
  opacity: 0.3;
}

.cl-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 2.25rem;
  overflow: hidden;
}

.cl-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--purple) 100%);
  opacity: 0.4;
}

.cl-card:hover {
  background: var(--bg-card);
}

.cl-card:hover::before {
  opacity: 0.4;
}

.cl-card-glow {
  display: none;
}

.cl-card:hover .cl-card-glow {
  display: none;
}

.cl-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.cl-version-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cl-version-num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.cl-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.cl-date {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.cl-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.cl-tag-latest {
  color: var(--green);
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.cl-card-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cl-group {}

.cl-group-label-inner {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-bright);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.cl-group-label-fixes {
  color: var(--yellow);
}

.cl-group-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cl-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.6;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
}

.cl-item:hover {
  background: transparent;
}

.cl-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.cl-item-feat {
  color: var(--green);
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.cl-item-fix {
  color: var(--yellow);
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
}

@media (max-width: 640px) {
  .cl-card {
    padding: 1.5rem 1.25rem;
  }

  .cl-version-num {
    font-size: 1.4rem;
  }

  .cl-timeline::before {
    display: none;
  }

  .cl-item {
    padding: 0.35rem 0.5rem;
  }
}
