/* ─────────────────────────────────────────────
   WIKORI LANDING PAGE · style.css
   Design: refined editorial, sage-forest palette
   Font: Satoshi + DM Serif Display
───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700&display=swap');

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

:root {
  --sage:        #4a7c59;
  --sage-dark:   #3d6b4a;
  --sage-deep:   #1a3326;
  --sage-forest: #0f2118;
  --sage-light:  hsl(145, 25%, 96%);
  --sage-mid:    hsl(145, 20%, 88%);
  --sage-subtle: hsl(145, 15%, 94%);

  --ink:         #0f1a14;
  --ink-80:      #1e2e24;
  --slate-700:   #334155;
  --slate-600:   #475569;
  --slate-500:   #64748b;
  --slate-400:   #94a3b8;
  --slate-200:   #e2e8f0;
  --slate-100:   #f1f5f9;
  --slate-50:    #f8fafc;
  --white:       #ffffff;

  --green-600:   #16a34a;

  --font-body:    'Satoshi', system-ui, -apple-system, sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;

  --max-w:  1160px;
  --nav-h:  68px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Utility ── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 17px;
  color: var(--slate-500);
  max-width: 560px;
  line-height: 1.65;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 12px 24px;
  border-radius: 10px;
  transition: background 0.18s var(--ease-out), transform 0.15s var(--ease-out), box-shadow 0.18s;
  box-shadow: 0 1px 3px rgba(74,124,89,0.25), 0 4px 16px rgba(74,124,89,0.15);
}
.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(74,124,89,0.3), 0 8px 24px rgba(74,124,89,0.2);
}
.btn-primary.btn-large {
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-500);
  transition: color 0.15s;
}
.btn-ghost:hover { color: var(--sage); }

.btn-nav {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--sage);
  border: 1.5px solid var(--sage);
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.btn-nav:hover {
  background: var(--sage);
  color: var(--white);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 13px 26px;
  border-radius: 12px;
  transition: background 0.15s, border-color 0.15s;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--slate-200);
  transition: box-shadow 0.2s;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo { width: 32px; height: 32px; }
.nav-wordmark {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-500);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--ink); }

/* ── Hero ── */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 80px);
  overflow: hidden;
  background: linear-gradient(160deg, hsl(145,30%,97%) 0%, hsl(145,20%,99%) 40%, #fff 70%);
}

.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
  opacity: 0.5;
}

.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(74,124,89,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,124,89,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px 60px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--sage-mid);
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
  box-shadow: 0 1px 4px rgba(74,124,89,0.12);
  animation: fadeSlideDown 0.6s var(--ease-out) both;
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
  animation: fadeSlideDown 0.7s var(--ease-out) 0.1s both;
}
.hero-title em {
  font-style: italic;
  color: var(--sage);
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--slate-500);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 36px;
  animation: fadeSlideDown 0.7s var(--ease-out) 0.2s both;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  animation: fadeSlideDown 0.7s var(--ease-out) 0.3s both;
}

.hero-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  color: var(--slate-400);
  font-weight: 500;
  margin-bottom: 64px;
  animation: fadeSlideDown 0.7s var(--ease-out) 0.35s both;
}
.hero-platforms .dot { opacity: 0.4; }

/* Hero preview */
.hero-preview {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  animation: fadeSlideUp 0.9s var(--ease-out) 0.4s both;
}

.preview-chrome {
  background: var(--white);
  border-radius: 14px 14px 0 0;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.07),
    0 8px 40px rgba(0,0,0,0.1),
    0 40px 80px rgba(74,124,89,0.08);
  overflow: hidden;
}

.chrome-dots {
  background: #f0f0f0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid #e0e0e0;
}
.dot-red    { width: 12px; height: 12px; border-radius: 50%; background: #ff5f56; }
.dot-yellow { width: 12px; height: 12px; border-radius: 50%; background: #ffbd2e; }
.dot-green  { width: 12px; height: 12px; border-radius: 50%; background: #27c93f; }
.chrome-title {
  margin-left: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  flex: 1;
  text-align: center;
}

.chrome-body { display: flex; min-height: 360px; }

/* Mini sidebar */
.app-sidebar {
  width: 180px;
  flex-shrink: 0;
  background: #fafafa;
  border-right: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  padding-bottom: 12px;
}
.sb-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px 10px;
  border-bottom: 1px solid #f0f0f0;
}
.sb-logo-wrap {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2px;
}
.sb-logo { width: 24px; height: 24px; }
.sb-name { font-size: 11px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.sb-sub  { font-size: 9px; color: var(--slate-400); }
.sb-vault {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 600;
  color: var(--slate-700);
  border-bottom: 1px solid #f0f0f0;
  cursor: default;
}
.sb-nav {
  flex: 1;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.sb-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px;
  font-size: 10px;
  font-weight: 500;
  color: var(--slate-500);
  border-radius: 6px;
  cursor: default;
}
.sb-item.sb-active {
  background: var(--sage-light);
  color: var(--sage);
  font-weight: 600;
}
.sb-footer {
  padding: 10px 14px 4px;
  font-size: 9px;
  color: var(--slate-400);
}

/* Mini app area */
.app-main {
  flex: 1;
  padding: 20px 24px;
  background: #f8f9fa;
}
.app-page-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 4px;
}
.app-page-sub {
  font-size: 10px;
  color: var(--slate-500);
  margin-bottom: 16px;
  max-width: 380px;
  line-height: 1.5;
}
.app-card {
  background: var(--white);
  border: 1px solid #eaeaea;
  border-left: 3px solid hsl(145,10%,80%);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.card-icon-wrap {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-content { flex: 1; }
.card-title { font-size: 11px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.card-desc  { font-size: 9px; color: var(--slate-500); margin-bottom: 10px; }
.card-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 600;
  color: var(--sage-dark);
  background: var(--sage-light);
  border: 1px solid rgba(74,124,89,0.2);
  padding: 3px 8px;
  border-radius: 100px;
}
.status-indexed {
  font-size: 9px;
  font-weight: 700;
  background: var(--green-600);
  color: var(--white);
  padding: 3px 9px;
  border-radius: 100px;
}
.queue-ok {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  font-weight: 600;
  color: var(--green-600);
}

/* Float stats */
.float-stat {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.float-stat-1 {
  bottom: 60px;
  left: -28px;
  animation: floatA 4s ease-in-out infinite;
}
.float-stat-2 {
  top: 80px;
  right: -24px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatB 4s ease-in-out 1s infinite;
}
.fs-num { font-family: var(--font-display); font-size: 26px; color: var(--sage); line-height: 1; }
.fs-label { font-size: 11px; color: var(--slate-500); margin-top: 2px; white-space: nowrap; }
.fs-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-600);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ── Social Proof ── */
.social-proof {
  padding: 40px 32px;
  border-bottom: 1px solid var(--slate-100);
  text-align: center;
}
.sp-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 24px;
}
.sp-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.sp-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-400);
  transition: color 0.15s;
}
.sp-logo:hover { color: var(--slate-700); }

/* ── How it Works ── */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 64px;
}
.step {
  flex: 1;
  padding: 36px 32px;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  background: var(--slate-50);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.step:hover {
  border-color: var(--sage-mid);
  box-shadow: 0 4px 24px rgba(74,124,89,0.1);
  transform: translateY(-3px);
}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--sage-mid);
  line-height: 1;
  margin-bottom: 16px;
}
.step-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  margin-bottom: 20px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 12px;
}
.step p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.65;
  margin-bottom: 20px;
}
.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.step-tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: var(--white);
  border: 1px solid var(--slate-200);
  color: var(--slate-500);
  padding: 3px 9px;
  border-radius: 100px;
}

.step-arrow {
  color: var(--sage-mid);
  padding: 0 10px;
  margin-top: 100px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   FEATURES — clean symmetric 3×2 grid
═══════════════════════════════════════════════ */
.features {
  padding: 100px 0;
  background: var(--sage-subtle);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.feat {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.feat:hover {
  border-color: var(--sage-mid);
  box-shadow: 0 4px 24px rgba(74,124,89,0.08);
  transform: translateY(-3px);
}

.feat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  margin-bottom: 20px;
}
.feat h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 12px;
}
.feat p {
  font-size: 14px;
  color: var(--slate-500);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   FORMATS — dark showpiece with convergence flow
═══════════════════════════════════════════════ */
.formats-section {
  position: relative;
  padding: 120px 0;
  background: var(--sage-forest);
  overflow: hidden;
}

.formats-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
}

.formats-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.formats-header {
  text-align: center;
  margin-bottom: 72px;
}
.formats-section .section-eyebrow { color: #7dc99e; }
.formats-section .section-title   { color: var(--white); }
.formats-section .section-sub     { color: rgba(255,255,255,0.5); margin: 0 auto; }

/* Flow layout: sources → arrows → vault */
.formats-flow {
  display: flex;
  align-items: center;
  gap: 0;
}

.flow-sources {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fmt-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 20px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.fmt-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(125,201,158,0.25);
  transform: translateX(4px);
}

.fmt-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(125,201,158,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7dc99e;
  flex-shrink: 0;
}

.fmt-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  min-width: 86px;
  flex-shrink: 0;
}

.fmt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  flex: 1;
}
.fmt-tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}
.fmt-card:hover .fmt-tags span {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.15);
}

/* Convergence arrows */
.flow-arrows {
  width: 80px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  padding: 12px 0;
}

.flow-arrow-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, rgba(125,201,158,0.15), rgba(125,201,158,0.5));
  border-radius: 2px;
  position: relative;
}
.flow-arrow-line::after {
  content: '';
  position: absolute;
  right: -2px;
  top: -3px;
  width: 0; height: 0;
  border-left: 6px solid rgba(125,201,158,0.5);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* Center vault */
.flow-vault {
  width: 180px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  position: relative;
}

.vault-glow {
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,124,89,0.35), transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  50%     { opacity: 1;   transform: translate(-50%,-50%) scale(1.08); }
}

.vault-core {
  width: 80px; height: 80px;
  border-radius: 20px;
  background: rgba(125,201,158,0.12);
  border: 2px solid rgba(125,201,158,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
}

.vault-logo {
  width: 44px; height: 44px;
  filter: brightness(0) invert(1) opacity(0.85);
}

.vault-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.vault-sublabel {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.03em;
}

/* Count band */
.formats-count-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.count-item { text-align: center; }
.count-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: #7dc99e;
  line-height: 1;
  margin-bottom: 6px;
}
.count-label {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}
.count-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ── MCP Section ── */
.mcp-section {
  padding: 100px 0;
  background: var(--ink);
  color: var(--white);
}

.mcp-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mcp-section .section-eyebrow { color: #7dc99e; }
.mcp-section .section-title   { color: var(--white); }
.mcp-section .section-sub     { color: var(--slate-400); }

.mcp-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mcp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--slate-400);
  line-height: 1.5;
}
.mcp-list li svg { flex-shrink: 0; margin-top: 2px; }

.mcp-code-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.code-chrome {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 12px 48px rgba(0,0,0,0.4);
}
.code-chrome-top {
  background: #1e2a22;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.code-dots { display: flex; gap: 6px; }
.code-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.code-filename {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-family: 'SF Mono', 'Fira Code', monospace;
  flex: 1;
  text-align: center;
}
.code-block {
  background: #141f18;
  padding: 24px 28px;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-size: 13px;
  line-height: 1.8;
  white-space: pre;
  overflow-x: auto;
}
.c-brace  { color: rgba(255,255,255,0.35); }
.c-key    { color: #7dc99e; }
.c-colon  { color: rgba(255,255,255,0.3); }
.c-str    { color: #f0c070; }
.c-comma  { color: rgba(255,255,255,0.3); }

.mcp-status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  padding-left: 4px;
}
.mcp-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Security Band ── */
.security-band {
  padding: 60px 0;
  background: var(--sage-subtle);
  border-top: 1px solid var(--sage-mid);
  border-bottom: 1px solid var(--sage-mid);
}

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

.security-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.security-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--sage-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  flex-shrink: 0;
}

.security-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.security-item span {
  font-size: 13px;
  color: var(--slate-500);
  line-height: 1.55;
}

/* ── CTA Section ── */
.cta-section {
  position: relative;
  padding: 120px 32px;
  background: var(--sage-deep);
  text-align: center;
  overflow: hidden;
}
.cta-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,124,89,0.35), transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}
.cta-logo {
  width: 52px; height: 52px;
  margin: 0 auto 28px;
  filter: brightness(0) invert(1) opacity(0.9);
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
}
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cta-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── Footer ── */
.footer {
  background: var(--ink);
  padding: 40px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.footer-logo {
  width: 26px; height: 26px;
  filter: brightness(0) invert(1) opacity(0.85);
}
.footer-links {
  display: flex;
  gap: 24px;
  flex: 1;
}
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.15s;
}
.footer-links a:hover { color: rgba(255,255,255,0.75); }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin-left: auto;
}

/* ── Animations ── */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
.br-lg { display: block; }

@media (max-width: 1000px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mcp-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .steps {
    flex-direction: column;
  }
  .step-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
  .formats-flow {
    flex-direction: column;
    gap: 32px;
  }
  .flow-arrows {
    flex-direction: row;
    width: auto;
    gap: 12px;
    padding: 0 12px;
  }
  .flow-arrow-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, rgba(125,201,158,0.15), rgba(125,201,158,0.5));
  }
  .flow-arrow-line::after {
    right: auto;
    top: auto;
    bottom: -2px;
    left: -3px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid rgba(125,201,158,0.5);
    border-bottom: none;
  }
  .security-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-cta  { flex-direction: column; align-items: center; }
  .float-stat-1, .float-stat-2 { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .br-lg { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-copy { margin-left: 0; }
  .chrome-body { min-height: 280px; }
  .app-sidebar { width: 140px; }
  .formats-count-band { gap: 32px; }
  .count-num { font-size: 32px; }
  .fmt-card { flex-wrap: wrap; }
  .fmt-tags { flex-basis: 100%; margin-top: 4px; }
}
