/* =========================================
   CURSOR CLONE — STYLE.CSS
   Colors: #000000, #0a0a0a, #141414, #1a1a1a
           #e8e8e8, #a3a3a3, #525252
   Accent: #ffffff (primary), blue tones for code
   Font: Geist, Geist Mono
========================================= */

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

:root {
  --bg-0: #000000;
  --bg-1: #080808;
  --bg-2: #0f0f0f;
  --bg-3: #141414;
  --bg-4: #1a1a1a;
  --bg-5: #222222;
  --text-0: #ffffff;
  --text-1: #e8e8e8;
  --text-2: #a3a3a3;
  --text-3: #525252;
  --border: rgba(255,255,255,0.08);
  --border-2: rgba(255,255,255,0.12);
  --accent: #ffffff;

  --code-kw: #c792ea;
  --code-fn: #82aaff;
  --code-str: #c3e88d;
  --code-var: #f07178;
  --code-type: #ffcb6b;
  --code-num: #f78c6c;
  --code-prop: #89ddff;
  --code-com: #546e7a;

  --font: 'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'Geist Mono', 'Fira Code', 'Cascadia Code', monospace;
  --nav-h: 60px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-0);
  color: var(--text-1);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ==================
   NAVBAR
================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  margin-right: 36px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-0);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--text-0); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-sign-in {
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  border-radius: 7px;
  transition: color 0.15s;
}

.btn-sign-in:hover { color: var(--text-0); }

.btn-download {
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  background: var(--text-0);
  color: var(--bg-0);
  text-decoration: none;
  border-radius: 7px;
  transition: background 0.15s, transform 0.1s;
}

.btn-download:hover { background: #e8e8e8; transform: translateY(-1px); }

/* ==================
   HERO
================== */
.hero {
  background: var(--bg-0);
  padding: 80px 24px 60px;
  text-align: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-4);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
}

.hero-title {
  font-size: 68px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-0);
  line-height: 1.0;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 36px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 60px;
}

.btn-cta-primary {
  display: inline-block;
  padding: 11px 22px;
  background: var(--text-0);
  color: var(--bg-0);
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.15s, transform 0.1s;
}

.btn-cta-primary:hover { background: #e8e8e8; transform: translateY(-1px); }
.btn-cta-primary.xl { font-size: 16px; padding: 14px 28px; border-radius: 10px; }

.btn-cta-ghost {
  display: inline-block;
  padding: 11px 18px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}

.btn-cta-ghost:hover { color: var(--text-0); }

/* Product screenshot */
.hero-screenshot {
  margin: 0 auto;
  max-width: 1000px;
}

.screenshot-chrome {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.04);
}

.chrome-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--bg-4);
  border-bottom: 1px solid var(--border);
}

.chrome-dots { display: flex; gap: 6px; }
.cdot { width: 10px; height: 10px; border-radius: 50%; }
.cdot.red { background: #ff5f57; }
.cdot.yellow { background: #ffbd2e; }
.cdot.green { background: #28ca41; }

.chrome-title {
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--mono);
}

.screenshot-body {
  display: flex;
  height: 440px;
}

/* Editor sidebar */
.editor-sidebar {
  width: 200px;
  background: var(--bg-2);
  border-right: 1px solid var(--border);
  display: flex;
}

.sidebar-icons {
  width: 44px;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--bg-1);
  border-right: 1px solid var(--border);
}

.sicon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--text-3);
  cursor: pointer;
}

.sicon.active { background: var(--bg-4); color: var(--text-2); }

.file-tree {
  flex: 1;
  padding: 12px 0;
  font-family: var(--mono);
  font-size: 11px;
}

.ftree-item {
  padding: 3px 12px;
  color: var(--text-3);
  cursor: pointer;
  white-space: nowrap;
}

.ftree-item:hover { color: var(--text-2); }
.ftree-item.indent { padding-left: 22px; }
.ftree-item.indent2 { padding-left: 32px; }
.ftree-item.active-file { color: var(--text-1); background: rgba(255,255,255,0.05); }

/* Editor code area */
.editor-code {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.code-tabs {
  display: flex;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  padding: 0 8px;
}

.code-tab {
  padding: 8px 14px;
  font-size: 11px;
  font-family: var(--mono);
  color: var(--text-3);
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.code-tab.active {
  color: var(--text-1);
  border-bottom-color: rgba(255,255,255,0.3);
}

.code-content {
  flex: 1;
  overflow: hidden;
  padding: 16px 20px;
}

.code-pre {
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.75;
  color: var(--text-2);
  white-space: pre;
}

/* Syntax highlighting */
.c-kw { color: var(--code-kw); }
.c-fn { color: var(--code-fn); }
.c-str { color: var(--code-str); }
.c-var { color: var(--code-var); }
.c-type { color: var(--code-type); }
.c-num { color: var(--code-num); }
.c-prop { color: var(--code-prop); }
.c-com { color: var(--code-com); }

.ai-suggestion {
  display: block;
  color: rgba(163,163,163,0.5);
  background: rgba(99,102,241,0.06);
  border-left: 2px solid rgba(99,102,241,0.3);
  padding-left: 8px;
  margin: 2px 0;
}

.ai-panel {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  background: var(--bg-4);
  border: 1px solid var(--border-2);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}

.ai-panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--bg-5);
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-2);
}

.ai-icon { color: rgba(255,255,255,0.6); font-size: 13px; }

.ai-panel-header kbd {
  margin-left: auto;
  background: var(--bg-3);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 10px;
  font-family: var(--mono);
  color: var(--text-3);
  border: 1px solid var(--border);
}

.ai-panel-body { padding: 10px 14px; }

.ai-input-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: var(--text-2);
}

.ai-submit {
  background: var(--bg-5);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 3px 8px;
  font-size: 11px;
  color: var(--text-3);
  cursor: pointer;
}

/* Editor chat */
.editor-chat {
  width: 260px;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-2);
}

.chat-title { font-weight: 500; }

.chat-messages {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.chat-msg {
  font-size: 11px;
  line-height: 1.55;
  padding: 10px 12px;
  border-radius: 8px;
}

.user-msg {
  background: rgba(255,255,255,0.05);
  color: var(--text-2);
  border: 1px solid var(--border);
  align-self: flex-end;
  max-width: 90%;
}

.ai-msg {
  background: var(--bg-4);
  border: 1px solid var(--border);
  color: var(--text-2);
}

.ai-msg-header {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--text-3);
  margin-bottom: 5px;
}

.ai-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

.chat-msg code {
  font-family: var(--mono);
  font-size: 10px;
  background: rgba(255,255,255,0.06);
  padding: 1px 4px;
  border-radius: 3px;
  color: var(--code-str);
}

.chat-code-block {
  margin-top: 8px;
  background: var(--bg-1);
  border-radius: 6px;
  padding: 8px 10px;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.7;
  color: var(--text-2);
}

.chat-input-row {
  padding: 10px 12px;
  border-top: 1px solid var(--border);
}

.chat-input {
  width: 100%;
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 7px 10px;
  font-size: 11px;
  color: var(--text-2);
  font-family: var(--font);
  outline: none;
}

.chat-input::placeholder { color: var(--text-3); }

/* ==================
   TRUSTED BY
================== */
.trusted-by {
  background: var(--bg-0);
  padding: 64px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.trusted-title {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-3);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.logo-item {
  color: var(--text-3);
  transition: color 0.2s;
}

.logo-item:hover { color: var(--text-2); }

/* ==================
   FEATURES
================== */
.features-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.feature-row.reverse { flex-direction: row-reverse; }

.feature-text { flex: 1; }

.feat-label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.feat-title {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-0);
  line-height: 1.15;
  margin-bottom: 16px;
}

.feat-desc {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 24px;
}

.feat-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feat-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}

.feature-visual { flex: 1; }

/* Feature mockups */
.feat-mockup {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.fm-bar {
  padding: 10px 14px;
  background: var(--bg-4);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.fm-dots { display: flex; gap: 5px; }

.fm-body { padding: 20px; }

.fm-code {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.75;
  color: var(--text-2);
  white-space: pre;
}

.tab-ghost {
  display: block;
  color: rgba(163,163,163,0.4);
  background: rgba(255,255,255,0.03);
  border-left: 2px solid rgba(255,255,255,0.15);
  padding-left: 6px;
}

.tab-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-3);
}

.tab-key {
  background: var(--bg-5);
  border: 1px solid var(--border-2);
  border-bottom-width: 2px;
  border-radius: 5px;
  padding: 2px 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-2);
}

/* Cmd+K mockup */
.cmdk-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-4);
  border: 1px solid var(--border-2);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-2);
}

.cmdk-icon { color: rgba(255,255,255,0.5); }

.cmdk-text { flex: 1; }

.cmdk-key {
  background: var(--bg-5);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 11px;
  font-family: var(--mono);
  color: var(--text-3);
}

.diff-view {
  background: var(--bg-2);
  border-radius: 7px;
  overflow: hidden;
  margin-bottom: 12px;
}

.diff-del, .diff-add {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px;
  font-family: var(--mono);
  font-size: 12px;
}

.diff-del { background: rgba(239,68,68,0.08); color: #ef4444; }
.diff-add { background: rgba(34,197,94,0.07); color: #4ade80; }

.diff-sym { font-weight: 700; opacity: 0.7; }

.diff-actions {
  display: flex;
  gap: 8px;
}

.diff-accept, .diff-reject {
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font);
  border: 1px solid;
}

.diff-accept {
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.3);
  color: #4ade80;
}

.diff-reject {
  background: transparent;
  border-color: var(--border);
  color: var(--text-3);
}

/* Chat mockup */
.fm-chat {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 220px;
}

.fmc-msg {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.6;
}

.fmc-msg.user {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-2);
  align-self: flex-end;
  max-width: 85%;
}

.fmc-msg.ai {
  background: var(--bg-4);
  border: 1px solid var(--border);
  color: var(--text-2);
}

.fmc-ai-label {
  font-size: 10px;
  color: var(--text-3);
  margin-bottom: 5px;
}

.fmc-msg code {
  font-family: var(--mono);
  font-size: 11px;
  background: rgba(255,255,255,0.06);
  padding: 1px 4px;
  border-radius: 3px;
  color: var(--code-str);
}

.fmc-ref {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-size: 10px;
  font-family: var(--mono);
  color: var(--text-3);
}

.fm-input {
  padding: 10px 12px;
  border-top: 1px solid var(--border);
}

.fm-input input {
  width: 100%;
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 12px;
  color: var(--text-2);
  font-family: var(--font);
  outline: none;
}

.chat-mockup { display: flex; flex-direction: column; }

/* ==================
   FEATURE CARDS
================== */
.cards-section {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 90px 24px;
}

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

.cards-header {
  text-align: center;
  margin-bottom: 52px;
}

.cards-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-0);
  margin-bottom: 14px;
}

.cards-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feat-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.feat-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.fc-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-5);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feat-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-0);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.feat-card p {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.65;
}

/* ==================
   TESTIMONIALS
================== */
.testimonials-section {
  background: var(--bg-0);
  padding: 90px 24px;
}

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

.testi-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-0);
  text-align: center;
  margin-bottom: 52px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testi-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.testi-stars {
  color: #fbbf24;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-quote {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-5);
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  flex-shrink: 0;
}

.testi-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
}

.testi-role {
  font-size: 12px;
  color: var(--text-3);
}

/* ==================
   USE CASES
================== */
.usecases-section {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 90px 24px;
}

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

.uc-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-0);
  text-align: center;
  margin-bottom: 48px;
}

.uc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.uc-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s;
}

.uc-card:hover { transform: translateY(-3px); }

.uc-card-top {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uc-1 { background: linear-gradient(135deg, #0a0a14 0%, #0d1a2e 100%); }
.uc-2 { background: linear-gradient(135deg, #0a140a 0%, #0d2e1a 100%); }
.uc-3 { background: linear-gradient(135deg, #14100a 0%, #2e1f0d 100%); }
.uc-4 { background: linear-gradient(135deg, #0f0a14 0%, #1a0d2e 100%); }

.uc-card-body { padding: 20px; }

.uc-card-body h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-0);
  margin-bottom: 8px;
}

.uc-card-body p {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.6;
  margin-bottom: 14px;
}

.uc-link {
  font-size: 12px;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.15s;
}

.uc-link:hover { color: var(--text-0); }

/* ==================
   CHANGELOG
================== */
.changelog-section {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  padding: 90px 24px;
}

.cl-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.cl-text { flex: 0 0 300px; }

.cl-title {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-0);
  margin-bottom: 14px;
  line-height: 1.15;
}

.cl-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 24px;
}

.btn-outline-sm {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--border-2);
  border-radius: 7px;
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}

.btn-outline-sm:hover { border-color: rgba(255,255,255,0.25); color: var(--text-0); }

.cl-list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cl-item {
  display: flex;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.cl-item:first-child { padding-top: 0; }

.cl-date {
  width: 72px;
  font-size: 12px;
  font-family: var(--mono);
  color: var(--text-3);
  flex-shrink: 0;
  padding-top: 2px;
}

.cl-content { flex: 1; }

.cl-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.cl-badge.new { background: rgba(34,197,94,0.1); color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }
.cl-badge.improved { background: rgba(99,102,241,0.1); color: #818cf8; border: 1px solid rgba(99,102,241,0.2); }
.cl-badge.fix { background: rgba(251,191,36,0.1); color: #fbbf24; border: 1px solid rgba(251,191,36,0.2); }

.cl-item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-0);
  margin-bottom: 5px;
}

.cl-item-desc {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
}

/* ==================
   ABOUT / TEAM
================== */
.about-section {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 90px 24px;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-visual { flex: 1; }

.about-mockup {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.about-grid-bg {
  background:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px),
    var(--bg-2);
  background-size: 32px 32px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.about-logo-large {
  width: 100px;
  height: 100px;
  background: var(--bg-4);
  border: 1px solid var(--border-2);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.about-stat-row {
  display: flex;
  gap: 40px;
}

.about-stat { text-align: center; }

.stat-num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-0);
}

.stat-label {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 3px;
}

.about-text { flex: 1; }

.about-title {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-0);
  line-height: 1.15;
  margin-bottom: 18px;
}

.about-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-desc:last-of-type { margin-bottom: 28px; }

/* ==================
   FINAL CTA
================== */
.final-cta-section {
  background: var(--bg-0);
  border-top: 1px solid var(--border);
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner { position: relative; max-width: 600px; margin: 0 auto; }

.final-cta-title {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--text-0);
  line-height: 1.05;
  margin-bottom: 18px;
}

.final-cta-sub {
  font-size: 16px;
  color: var(--text-3);
  margin-bottom: 36px;
}

.cta-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-3);
}

/* ==================
   FOOTER
================== */
.footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 60px 24px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  padding-bottom: 48px;
}

.footer-brand { width: 240px; flex-shrink: 0; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-0);
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.15s, border-color 0.15s;
}

.footer-social a:hover { color: var(--text-1); border-color: var(--border-2); }

.footer-cols {
  flex: 1;
  display: flex;
  gap: 40px;
}

.footer-col { flex: 1; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-0);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }

.footer-col ul li a {
  font-size: 13px;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col ul li a:hover { color: var(--text-1); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  font-size: 12px;
  color: var(--text-3);
}
