/* ═══════════════════════════════════════════════════════
   CORG — Light Mode Premium Landing Page
   Cursor / Linear aesthetic — white bg, warm tones
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,wght@0,300;0,400;0,500;1,400&display=swap');

/* ─── TOKENS ─── */
:root {
  --bg: #ffffff;
  --bg-warm: #f8f7f4;
  --bg-card: #f5f3ef;
  --bg-card-hover: #eceae4;
  --bg-dark: #1a1a1a;

  --text-primary: #1a1a1a;
  --text-secondary: #6b6b6b;
  --text-tertiary: #999999;
  --text-muted: #c0c0c0;
  --text-inverse: #ffffff;

  --border: #e8e6e1;
  --border-strong: #d4d2cc;

  --accent: #7c3aed;
  --accent-light: #a78bfa;
  --accent-bg: #f3f0ff;
  --accent-bg-strong: #ede9fe;
  --cyan: #0891b2;
  --emerald: #059669;
  --amber: #d97706;
  --rose: #e11d48;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  --section-gap: 140px;
  --content-max: 1080px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-serif);
  background: var(--bg);
  color: var(--text-secondary);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; }

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

/* ─── LOGO ─── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  position: relative;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-wordmark {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-tertiary);
  letter-spacing: 0px;
  transition: color 0.2s ease;
}

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

.nav-cta {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-inverse);
  background: var(--text-primary);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  letter-spacing: -0.1px;
}

.nav-cta:hover {
  background: #333;
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  text-align: center;
  padding: 160px 24px 80px;
  position: relative;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 500;
  letter-spacing: -2.5px;
  line-height: 1.05;
  color: var(--text-primary);
  max-width: 780px;
  margin: 0 auto 12px;
}

.hero-tagline .cmd-key {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.85em;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px 14px;
  vertical-align: middle;
  box-shadow: 0 2px 0 var(--border);
  position: relative;
  top: -2px;
  letter-spacing: 0;
}

.hero-tagline .accent-text {
  color: var(--accent);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 24px auto 44px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  background: var(--text-primary);
  color: var(--text-inverse);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.2px;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.2px;
  border: 1px solid var(--border);
  transition: all 0.25s ease;
  cursor: pointer;
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
  background: var(--bg-warm);
}

/* ═══════════════════════════════════════════════════════
   ⌘C ANIMATION
   ═══════════════════════════════════════════════════════ */
.cmd-demo {
  margin-top: 80px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.cmd-demo-window {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 12px 40px rgba(0,0,0,0.06);
}

.cmd-demo-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.cmd-demo-dots {
  display: flex;
  gap: 6px;
}

.cmd-demo-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.cmd-demo-dots span:nth-child(1) { background: #ff5f57; }
.cmd-demo-dots span:nth-child(2) { background: #febc2e; }
.cmd-demo-dots span:nth-child(3) { background: #28c840; }

.cmd-demo-title {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 400;
}

.cmd-demo-body {
  padding: 32px;
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Animation Flow */
.anim-timeline {
  display: flex;
  align-items: stretch;
  gap: 0;
  position: relative;
}

.anim-step {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
  position: relative;
  opacity: 0.3;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-step.active {
  opacity: 1;
}

.anim-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all 0.5s ease;
}

.anim-step.active .anim-step-icon {
  background: var(--accent-bg);
  border-color: var(--accent-light);
  box-shadow: 0 0 0 4px var(--accent-bg);
}

.anim-step-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.anim-step-desc {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-tertiary);
}

/* Arrow between steps */
.anim-arrow {
  display: flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 18px;
  padding: 0 4px;
}

.anim-arrow.active {
  color: var(--accent);
}

/* Live capture card */
.capture-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 20px;
  background: var(--bg-warm);
  animation: cardSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s ease;
}

.capture-card.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.capture-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.capture-source {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.capture-source-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.capture-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
}

.capture-text {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.55;
  margin-bottom: 10px;
}

.capture-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.capture-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.tag-domain { background: #e0f2fe; color: #0369a1; }
.tag-ai { background: var(--accent-bg); color: var(--accent); }
.tag-type { background: #ecfdf5; color: #059669; }
.tag-intent { background: #fef3c7; color: #92400e; }

/* ═══════════════════════════════════════════════════════
   SECTION TYPOGRAPHY
   ═══════════════════════════════════════════════════════ */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 500;
  letter-spacing: -1.2px;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 520px;
}

/* ═══════════════════════════════════════════════════════
   FEATURES GRID
   ═══════════════════════════════════════════════════════ */
.features {
  padding: var(--section-gap) 24px;
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-header .section-subtitle { margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.feature-card {
  padding: 36px 28px;
  background: var(--bg);
  transition: background 0.2s ease;
}

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

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.feature-card h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.feature-card p {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   SMART SCREENSHOTS
   ═══════════════════════════════════════════════════════ */
.screenshots-section {
  padding: var(--section-gap) 24px;
  background: var(--bg-warm);
}

.screenshots-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.screenshots-text .section-subtitle {
  margin-bottom: 24px;
}

.screenshot-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.screenshot-benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.screenshot-benefit-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  background: var(--bg);
  border: 1px solid var(--border);
}

.screenshot-benefit-text h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.2px;
  margin-bottom: 2px;
}

.screenshot-benefit-text p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Screenshot visual demo */
.screenshot-visual {
  position: relative;
}

.screenshot-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.screenshot-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
}

.screenshot-card-meta {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.screenshot-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.screenshot-meta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  min-width: 60px;
}

.screenshot-meta-value {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 400;
}

.screenshot-overlay-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: white;
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.vs-label {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
  font-weight: 500;
  background: var(--bg-warm);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════
   DEEP FEATURES (AI Narratives, Heatmap, Cosmos)
   ═══════════════════════════════════════════════════════ */
.deep-features {
  padding: var(--section-gap) 24px;
}

.deep-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: var(--section-gap);
}

.deep-feature:last-child { margin-bottom: 0; }

.deep-feature.reverse { direction: rtl; }
.deep-feature.reverse > * { direction: ltr; }

.deep-feature-text h3 {
  font-family: var(--font-sans);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.deep-feature-text p {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.feature-bullets li {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
  margin-bottom: 8px;
}

.feature-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 13px;
}

/* Narrative Card */
.narrative-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-warm);
  padding: 28px;
}

.narrative-card-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.narrative-card-text {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.narrative-card-text .highlight {
  color: var(--text-primary);
  font-weight: 500;
}

.narrative-pills {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.narrative-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

/* Heatmap */
.heatmap-visual {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-warm);
  padding: 28px;
}

.heatmap-month-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

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

.heatmap-cell {
  aspect-ratio: 1;
  border-radius: 3px;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: transform 0.15s ease;
}

.heatmap-cell:hover { transform: scale(1.3); }

.heatmap-cell.l1 { background: #ede9fe; border-color: #ddd6fe; }
.heatmap-cell.l2 { background: #c4b5fd; border-color: #a78bfa; }
.heatmap-cell.l3 { background: #8b5cf6; border-color: #7c3aed; }
.heatmap-cell.l4 { background: #6d28d9; border-color: #5b21b6; }

.heatmap-legend {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-tertiary);
  justify-content: flex-end;
}

.heatmap-legend-cell {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

/* Cosmos */
.cosmos-visual {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-dark);
  height: 360px;
  position: relative;
  overflow: hidden;
}

.cosmos-star {
  position: absolute;
  border-radius: 50%;
  animation: starPulse 3s ease-in-out infinite alternate;
}

@keyframes starPulse {
  0% { opacity: 0.5; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1.15); }
}

.cosmos-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   BENTO GRID
   ═══════════════════════════════════════════════════════ */
.bento-section {
  padding: var(--section-gap) 24px;
  background: var(--bg-warm);
}

.bento-header {
  text-align: center;
  margin-bottom: 56px;
}

.bento-header .section-subtitle { margin: 0 auto; }

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.bento-card {
  background: var(--bg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: background 0.2s ease;
}

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

.bento-card.span-8 { grid-column: span 8; }
.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-6 { grid-column: span 6; }

.bento-card-header {
  margin-bottom: 16px;
}

.bento-card-header h4 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.bento-card-header p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-tertiary);
}

.bento-card-visual {
  flex: 1;
  border-radius: var(--radius-md);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  padding: 16px;
  min-height: 160px;
}

/* Format demo */
.format-demo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.format-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.format-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.format-label {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--text-primary);
  font-size: 13px;
}

.format-desc {
  font-family: var(--font-mono);
  color: var(--text-tertiary);
  font-size: 11px;
}

/* Domain tags */
.domain-ring {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.domain-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-secondary);
}

.domain-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Privacy */
.privacy-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.privacy-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

.privacy-text {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.privacy-text strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* Keyboard */
.keyboard-shortcut {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 6px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  box-shadow: 0 2px 0 var(--border);
}

/* ═══════════════════════════════════════════════════════
   COMPARISON
   ═══════════════════════════════════════════════════════ */
.comparison {
  padding: var(--section-gap) 24px;
}

.comparison-header {
  text-align: center;
  margin-bottom: 56px;
}

.comparison-header .section-subtitle { margin: 0 auto; }

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--bg-warm);
  font-weight: 500;
  color: var(--text-tertiary);
  font-size: 12px;
  letter-spacing: 0.3px;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 400;
  color: var(--text-secondary);
  font-family: var(--font-serif);
}

.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td { background: var(--bg); }

.corg-col {
  background: var(--accent-bg) !important;
  border-left: 1px solid var(--accent-bg-strong);
  border-right: 1px solid var(--accent-bg-strong);
}

th.corg-col {
  color: var(--accent) !important;
  font-weight: 600 !important;
}

.check { color: var(--emerald); font-size: 14px; }
.cross { color: var(--text-muted); }
.partial { color: var(--amber); font-family: var(--font-mono); font-size: 11px; }

/* ═══════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════ */
.pricing {
  padding: var(--section-gap) 24px;
  background: var(--bg-warm);
}

.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}

.pricing-header .section-subtitle { margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.pricing-card {
  padding: 36px 28px;
  background: var(--bg);
  position: relative;
}

.pricing-card.featured {
  background: var(--accent-bg);
}

.pricing-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  background: var(--accent);
  color: white;
  border-radius: 0 0 6px 6px;
}

.pricing-card h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.pricing-desc {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}

.pricing-price { margin-bottom: 4px; }

.pricing-price .amount {
  font-family: var(--font-sans);
  font-size: 40px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -1.5px;
}

.pricing-price .period {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-tertiary);
}

.pricing-annual {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.pricing-features li {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--emerald);
  font-size: 12px;
  font-weight: 600;
}

.pricing-btn {
  width: 100%;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pricing-btn.outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.pricing-btn.outline:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
  background: var(--bg-warm);
}

.pricing-btn.filled {
  background: var(--text-primary);
  border: 1px solid var(--text-primary);
  color: var(--text-inverse);
}

.pricing-btn.filled:hover {
  background: #333;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════ */
.final-cta {
  text-align: center;
  padding: var(--section-gap) 24px;
}

.final-cta h2 {
  font-family: var(--font-sans);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -1.8px;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.rotating-word {
  display: inline-block;
  min-width: 80px;
  color: var(--accent);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.final-cta .section-subtitle {
  margin: 0 auto 36px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  background: var(--bg-warm);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-wordmark {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-tertiary);
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--text-primary); }

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

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-gap: 100px; }
  .bento-card.span-8, .bento-card.span-4 { grid-column: span 6; }
}

@media (max-width: 768px) {
  :root { --section-gap: 72px; }
  .nav-links { display: none; }
  .hero { padding: 120px 20px 60px; }
  .hero-tagline { letter-spacing: -1.5px; }
  .hero-ctas { flex-direction: column; }
  .features-grid { grid-template-columns: 1fr; }
  .screenshots-layout { grid-template-columns: 1fr; gap: 40px; }
  .deep-feature { grid-template-columns: 1fr; gap: 40px; }
  .deep-feature.reverse { direction: ltr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card.span-8, .bento-card.span-4, .bento-card.span-6 { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer .container { flex-direction: column; gap: 16px; text-align: center; }
  .anim-timeline { flex-direction: column; }
  .anim-arrow { transform: rotate(90deg); justify-content: center; }
}

@media (max-width: 480px) {
  .hero-tagline { font-size: 34px; letter-spacing: -1px; }
  .section-title { font-size: 26px; letter-spacing: -0.8px; }
}
