:root {
  --bg: #03040a;
  --bg2: #070910;
  --surface: #0b0d17;
  --surface2: #0f1120;
  --border: rgba(255,255,255,0.06);
  --border2: rgba(255,255,255,0.1);
  --accent: #5b6af5;
  --accent-glow: rgba(91,106,245,0.25);
  --orange: #f06a35;
  --orange-glow: rgba(240,106,53,0.2);
  --green: #1fd4a0;
  --green-glow: rgba(31,212,160,0.15);
  --gold: #f0b429;
  --text: #dde1f0;
  --muted: #636785;
  --muted2: #888caa;
  --white: #ffffff;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Space Grotesk', sans-serif; line-height: 1.1; }
.serif { font-family: 'Playfair Display', serif; }
code, .mono { font-family: 'JetBrains Mono', monospace; }

/* ─── NOISE OVERLAY ─── */
body::before {
  content:''; position:fixed; inset:0; pointer-events:none; z-index:999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 52px; height: 66px;
  background: rgba(3,4,10,0.75);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  font-weight: 700; font-size: 1.15rem; color: #fff;
}
.nav-logo-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800; color: #fff;
}
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  color: var(--muted2); text-decoration: none; font-size: .88rem;
  font-weight: 500; transition: color .2s; letter-spacing: .01em;
}
.nav-links a:hover { color: #fff; }
.nav-right { display: flex; gap: 10px; align-items: center; }
.btn-nav-ghost {
  padding: 7px 18px; border: 1px solid var(--border2); border-radius: 7px;
  color: var(--text); font-size: .82rem; text-decoration: none;
  font-weight: 500; transition: all .2s;
}
.btn-nav-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-nav-primary {
  padding: 8px 20px; background: var(--accent); color: #fff;
  border-radius: 7px; font-size: .82rem; text-decoration: none;
  font-weight: 600; transition: all .2s;
}
.btn-nav-primary:hover { background: #4757e8; transform: translateY(-1px); box-shadow: 0 4px 20px var(--accent-glow); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 130px 24px 100px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 100% 70% at 50% -10%, rgba(91,106,245,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 90% 70%, rgba(240,106,53,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 5% 80%, rgba(31,212,160,0.08) 0%, transparent 60%);
}
/* animated grid */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift { from{transform:translateY(0)} to{transform:translateY(60px)} }

.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(91,106,245,0.1); border: 1px solid rgba(91,106,245,0.28);
  border-radius: 999px; padding: 7px 18px; font-size: .8rem;
  color: #9aa3ff; margin-bottom: 36px; font-weight: 500;
  animation: fadeUp .6s ease both;
}
.pill-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

.hero-eyebrow {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .18em;
  color: var(--muted2); margin-bottom: 20px; font-weight: 500;
  animation: fadeUp .6s .05s ease both;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 6.2rem);
  font-weight: 700; letter-spacing: -0.03em;
  max-width: 980px;
  animation: fadeUp .7s .1s ease both;
  line-height: 1.0;
}
.hero h1 .line2 { display: block; }
.hero h1 .highlight {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 700;
  background: linear-gradient(90deg, var(--accent) 0%, var(--orange) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  max-width: 600px; margin: 28px auto 0; color: var(--muted2); font-size: 1.05rem;
  animation: fadeUp .7s .2s ease both; line-height: 1.75;
}
.hero-actions {
  display: flex; gap: 14px; margin-top: 44px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .7s .3s ease both;
}
.btn-hero-primary {
  padding: 14px 34px; background: var(--accent); color: #fff;
  border-radius: 9px; font-size: .95rem; text-decoration: none;
  font-weight: 600; transition: all .25s; font-family: 'Space Grotesk', sans-serif;
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px var(--accent-glow); background: #4757e8; }
.btn-hero-outline {
  padding: 14px 34px; border: 1px solid var(--border2); color: var(--text);
  border-radius: 9px; font-size: .95rem; text-decoration: none;
  font-weight: 500; transition: all .25s; font-family: 'Space Grotesk', sans-serif;
  display: flex; align-items: center; gap: 8px;
}
.btn-hero-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-hero-outline .badge-soon {
  background: rgba(240,106,53,0.15); color: var(--orange);
  border-radius: 4px; padding: 2px 7px; font-size: .68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
}

/* trust ticker */
.trust-bar {
  width: 100%; overflow: hidden; margin-top: 80px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0;
  animation: fadeIn .7s .5s ease both; opacity: 0;
  animation-fill-mode: both;
}
.trust-inner { display: flex; gap: 56px; align-items: center; width: max-content; animation: ticker 25s linear infinite; }
.trust-item { font-weight: 600; font-size: .88rem; color: var(--muted); white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.trust-item::before { content: '●'; color: var(--border2); font-size: .4rem; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── FULL-STACK PLATFORM ─── */
.platform-section {
  max-width: 1200px; margin: 0 auto; padding: 120px 48px;
}
.section-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(91,106,245,0.08); border: 1px solid rgba(91,106,245,0.2);
  border-radius: 999px; padding: 5px 14px;
  font-size: .72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; color: #9aa3ff; margin-bottom: 24px;
}
.platform-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 64px;
}
.platform-title { font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; letter-spacing: -.025em; }
.platform-title .serif { display: block; color: var(--orange); }
.platform-desc { color: var(--muted2); font-size: .98rem; line-height: 1.75; }

/* Three pillars */
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); border-radius: 20px; overflow: hidden; }
.pillar {
  background: var(--surface); padding: 40px 32px;
  position: relative; overflow: hidden; transition: background .25s;
}
.pillar:hover { background: var(--surface2); }
.pillar-icon { font-size: 2rem; margin-bottom: 20px; }
.pillar-label {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .14em;
  font-weight: 700; color: var(--muted2); margin-bottom: 10px;
}
.pillar h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 14px; }
.pillar p { font-size: .88rem; color: var(--muted2); line-height: 1.7; }
.pillar-models { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 20px; }
.model-chip {
  padding: 4px 12px; border-radius: 5px; font-size: .75rem; font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border2); color: var(--text);
  transition: all .2s; cursor: pointer;
}
.model-chip:hover { background: rgba(91,106,245,0.15); border-color: var(--accent); color: #9aa3ff; }
.pillar-accent { position: absolute; top: 0; right: 0; width: 120px; height: 120px; border-radius: 50%; filter: blur(60px); opacity: .4; pointer-events: none; }

/* ─── PRODUCTS DEEP DIVE ─── */
.products-section { max-width: 1200px; margin: 0 auto; padding: 100px 48px; }
.products-nav { display: flex; gap: 4px; background: rgba(255,255,255,0.04); border-radius: 12px; padding: 4px; width: fit-content; margin: 48px 0 48px; flex-wrap: wrap; }
.prod-tab {
  padding: 10px 22px; border-radius: 9px; font-size: .85rem; font-weight: 600;
  cursor: pointer; color: var(--muted); transition: all .2s; white-space: nowrap;
  user-select: none;
}
.prod-tab.active { background: var(--accent); color: #fff; box-shadow: 0 2px 12px var(--accent-glow); }
.prod-tab:hover:not(.active) { color: var(--text); background: rgba(255,255,255,0.06); }

.products-showcase { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.showcase-info h3 { font-size: 2rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 16px; }
.showcase-info p { color: var(--muted2); font-size: .95rem; line-height: 1.75; }
.feature-list { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; }
.feature-icon { width: 20px; height: 20px; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: .7rem; flex-shrink: 0; margin-top: 2px; }
.feature-text { font-size: .88rem; color: var(--muted2); line-height: 1.5; }
.feature-text strong { color: var(--text); font-weight: 600; }
.showcase-cta { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.btn-sm-primary {
  padding: 10px 22px; background: var(--accent); color: #fff;
  border-radius: 7px; font-size: .85rem; text-decoration: none; font-weight: 600; transition: all .2s;
}
.btn-sm-primary:hover { background: #4757e8; }
.btn-sm-ghost {
  padding: 10px 22px; border: 1px solid var(--border2); color: var(--text);
  border-radius: 7px; font-size: .85rem; text-decoration: none; font-weight: 500; transition: all .2s;
}
.btn-sm-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Tab panels: hidden by default, shown when active */
.tab-panel { display: none !important; }
.tab-panel.active { display: grid !important; }

/* demo card */
.showcase-visual {
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  padding: 28px; position: relative; overflow: hidden;
}
.vis-topbar { display: flex; gap: 6px; margin-bottom: 20px; }
.vis-dot { width: 10px; height: 10px; border-radius: 50%; }
.waveform-wrap { display: flex; align-items: center; justify-content: center; gap: 3px; height: 64px; margin: 20px 0; }
.w-bar { width: 4px; border-radius: 4px; background: var(--accent); animation: waveAnim 1.2s ease-in-out infinite; }
@keyframes waveAnim { 0%,100%{height:6px;opacity:.4} 50%{height:52px;opacity:1} }
.vis-text { font-family: 'JetBrains Mono', monospace; font-size: .78rem; color: var(--muted2); line-height: 1.8; padding: 16px; background: rgba(0,0,0,0.3); border-radius: 10px; border: 1px solid var(--border); }
.vis-text .highlight-word { color: var(--green); }
.lang-pills { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 16px; }
.lang-pill { padding: 4px 10px; border-radius: 5px; font-size: .73rem; font-weight: 500; border: 1px solid var(--border); color: var(--muted2); }
.vis-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 20px; }
.vis-stat { background: rgba(0,0,0,0.3); border: 1px solid var(--border); border-radius: 10px; padding: 12px; text-align: center; }
.vis-stat .num { font-size: 1.3rem; font-weight: 700; color: #fff; font-family: 'Space Grotesk', sans-serif; }
.vis-stat .lbl { font-size: .68rem; color: var(--muted); margin-top: 2px; }

/* ─── UNIFIED AGENT ─── */
.agent-section { max-width: 1200px; margin: 0 auto; padding: 100px 48px; }
.agent-diagram {
  margin-top: 60px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 24px; padding: 52px; position: relative; overflow: hidden;
}
.agent-flow { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.agent-node {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--bg); border: 1px solid var(--border2); border-radius: 16px;
  padding: 20px 24px; min-width: 130px; transition: all .25s; cursor: pointer; position: relative;
}
.agent-node:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 8px 32px var(--accent-glow); }
.agent-node .n-icon { font-size: 1.6rem; }
.agent-node .n-label { font-size: .75rem; font-weight: 600; text-align: center; color: var(--muted2); }
.agent-node .n-badge { position: absolute; top: -8px; right: -8px; background: var(--accent); color: #fff; font-size: .6rem; font-weight: 700; padding: 2px 6px; border-radius: 4px; }
.agent-arrow { color: var(--muted); font-size: 1.2rem; padding: 0 8px; flex-shrink: 0; }
.agent-center {
  background: linear-gradient(135deg, rgba(91,106,245,0.2), rgba(240,106,53,0.1));
  border: 1px solid rgba(91,106,245,0.4); border-radius: 20px; padding: 24px 32px;
  text-align: center; margin: 0 16px;
}
.agent-center .ac-title { font-size: 1.1rem; font-weight: 700; }
.agent-center .ac-sub { font-size: .78rem; color: var(--muted2); margin-top: 4px; }
.agent-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 400px; height: 200px; background: radial-gradient(ellipse, rgba(91,106,245,0.06) 0%, transparent 70%); pointer-events: none; }

/* ─── JOURNEY (3 paths) ─── */
.journey-section { max-width: 1200px; margin: 0 auto; padding: 100px 48px; }
.journey-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.journey-card {
  border: 1px solid var(--border); border-radius: 20px; padding: 36px 30px;
  position: relative; overflow: hidden; transition: all .25s; cursor: pointer;
}
.journey-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  border-radius: 20px 20px 0 0; opacity: 0; transition: opacity .25s;
}
.journey-card:nth-child(1)::before { background: linear-gradient(90deg, var(--accent), transparent); }
.journey-card:nth-child(2)::before { background: linear-gradient(90deg, var(--orange), transparent); }
.journey-card:nth-child(3)::before { background: linear-gradient(90deg, var(--green), transparent); }
.journey-card:hover { background: var(--surface); }
.journey-card:hover::before { opacity: 1; }
.journey-num { font-size: 4rem; font-weight: 800; letter-spacing: -.04em; opacity: .08; font-family: 'Playfair Display', serif; margin-bottom: 8px; }
.journey-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.journey-card h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted2); margin-bottom: 12px; font-weight: 600; }
.journey-card p { font-size: .88rem; color: var(--muted2); line-height: 1.7; }
.journey-card .j-cta { display: inline-block; margin-top: 24px; font-size: .85rem; font-weight: 600; color: var(--accent); text-decoration: none; }
.journey-card:nth-child(2) .j-cta { color: var(--orange); }
.journey-card:nth-child(3) .j-cta { color: var(--green); }

/* ─── SOLUTIONS GRID ─── */
.solutions-section { max-width: 1200px; margin: 0 auto; padding: 100px 48px; }
.solutions-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 56px; }
.sol-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 24px 20px; transition: all .2s; cursor: pointer; text-align: center;
}
.sol-card:hover { border-color: var(--accent); background: rgba(91,106,245,0.05); transform: translateY(-3px); }
.sol-card .sol-icon { font-size: 1.8rem; margin-bottom: 12px; }
.sol-card .sol-name { font-size: .82rem; font-weight: 600; color: var(--text); line-height: 1.3; }

/* ─── ENTERPRISE ─── */
.enterprise-section { max-width: 1200px; margin: 0 auto; padding: 100px 48px; }
.enterprise-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 24px;
  padding: 64px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px;
  align-items: center; position: relative; overflow: hidden;
}
.enterprise-card::after {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(91,106,245,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.enterprise-card h2 { font-size: 2.4rem; font-weight: 700; letter-spacing: -.025em; margin-bottom: 20px; }
.enterprise-card h2 em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--green); }
.enterprise-card p { color: var(--muted2); font-size: .95rem; line-height: 1.75; }
.security-badges { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 32px; }
.sec-badge {
  display: flex; align-items: center; gap: 12px;
  background: rgba(31,212,160,0.06); border: 1px solid rgba(31,212,160,0.15);
  border-radius: 12px; padding: 14px 16px;
}
.sec-badge .sb-icon { font-size: 1.3rem; }
.sec-badge .sb-title { font-size: .82rem; font-weight: 700; color: var(--green); }
.sec-badge .sb-sub { font-size: .72rem; color: var(--muted); margin-top: 2px; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: var(--bg); border: 1px solid var(--border2); border-radius: 16px;
  padding: 28px 24px; position: relative; overflow: hidden;
}
.stat-card .sc-num { font-size: 2.5rem; font-weight: 700; color: #fff; letter-spacing: -.03em; }
.stat-card .sc-unit { font-size: 1.2rem; color: var(--accent); }
.stat-card .sc-label { font-size: .8rem; color: var(--muted); margin-top: 6px; }
.stat-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; }
.stat-card:nth-child(1)::before { background: var(--accent); }
.stat-card:nth-child(2)::before { background: var(--orange); }
.stat-card:nth-child(3)::before { background: var(--green); }
.stat-card:nth-child(4)::before { background: var(--gold); }

/* ─── INFRA / DEPLOYMENT ─── */
.infra-section { max-width: 1200px; margin: 0 auto; padding: 100px 48px; }
.infra-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 60px; }
.infra-card {
  border: 1px solid var(--border); border-radius: 20px; padding: 40px 32px;
  transition: all .25s; cursor: pointer; position: relative; overflow: hidden;
}
.infra-card:hover { border-color: var(--border2); background: var(--surface); transform: translateY(-4px); }
.infra-card .ic-badge {
  display: inline-block; padding: 4px 12px; border-radius: 5px;
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 20px;
}
.infra-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.infra-card p { font-size: .88rem; color: var(--muted2); line-height: 1.7; }
.infra-card .ic-features { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.infra-card .ic-feat { font-size: .82rem; color: var(--muted2); display: flex; align-items: center; gap: 8px; }
.infra-card .ic-feat::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ─── TESTIMONIAL ─── */
.testimonials-section { max-width: 1200px; margin: 0 auto; padding: 100px 48px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 60px; }
.tcard {
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  padding: 36px 32px; position: relative;
}
.tcard::before { content: '"'; position: absolute; top: 20px; right: 28px; font-size: 5rem; color: rgba(255,255,255,0.04); font-family: 'Playfair Display', serif; line-height: 1; }
.tcard blockquote { font-size: .9rem; line-height: 1.75; color: var(--text); font-style: italic; }
.tcard .author { display: flex; align-items: center; gap: 14px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
.author-av { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .88rem; color: #fff; flex-shrink: 0; }
.author-name { font-weight: 600; font-size: .88rem; }
.author-role { font-size: .78rem; color: var(--muted); margin-top: 2px; }
.company-tag { font-size: .7rem; color: var(--accent); font-weight: 600; margin-top: 4px; }

/* ─── BLOG ─── */
.blog-section { max-width: 1200px; margin: 0 auto; padding: 100px 48px; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.blog-card { border-radius: 20px; overflow: hidden; background: var(--surface); border: 1px solid var(--border); transition: all .25s; cursor: pointer; }
.blog-card:hover { transform: translateY(-4px); border-color: var(--border2); }
.blog-img { width: 100%; height: 180px; object-fit: cover; display: block; filter: brightness(.85); }
.blog-body { padding: 24px; }
.blog-cat { font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: var(--accent); margin-bottom: 10px; }
.blog-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-date { font-size: .78rem; color: var(--muted); }

/* ─── FOUNDERS ─── */
.founders-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 48px;
}
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
  max-width: 1100px;
  width: 100%;
}
.founder-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: all .25s;
}
.founder-card:hover {
  border-color: var(--border2);
}
.founder-avatar {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  overflow: hidden;
}
.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.founder-title {
  font-size: .78rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.founder-bio {
  font-size: .82rem;
  color: var(--muted2);
  line-height: 1.65;
}

/* ─── CTA FINAL ─── */
.cta-section {
  max-width: 1200px; margin: 0 auto; padding: 60px 48px 120px;
}
.cta-inner {
  background: linear-gradient(135deg, rgba(91,106,245,0.12) 0%, rgba(240,106,53,0.08) 50%, rgba(31,212,160,0.06) 100%);
  border: 1px solid rgba(91,106,245,0.25); border-radius: 28px;
  padding: 80px; text-align: center; position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(91,106,245,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner h2 { font-size: clamp(2.2rem,5vw,3.8rem); font-weight: 700; letter-spacing: -.025em; max-width: 700px; margin: 0 auto 20px; }
.cta-inner h2 em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--accent); }
.cta-inner p { color: var(--muted2); max-width: 500px; margin: 0 auto; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }
.newsletter-row { display: flex; gap: 0; max-width: 420px; margin: 32px auto 0; }
.newsletter-input {
  flex: 1; padding: 12px 18px; background: rgba(255,255,255,0.06); border: 1px solid var(--border2);
  border-right: none; border-radius: 8px 0 0 8px; color: #fff; font-size: .88rem;
  font-family: 'Space Grotesk', sans-serif; outline: none;
}
.newsletter-input::placeholder { color: var(--muted); }
.newsletter-input:focus { border-color: var(--accent); }
.newsletter-btn {
  padding: 12px 22px; background: var(--accent); color: #fff; border: none;
  border-radius: 0 8px 8px 0; font-size: .88rem; font-weight: 600;
  font-family: 'Space Grotesk', sans-serif; cursor: pointer; transition: background .2s;
}
.newsletter-btn:hover { background: #4757e8; }
.newsletter-note { font-size: .72rem; color: var(--muted); margin-top: 10px; }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 72px 48px 36px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand .fb-logo { font-weight: 700; font-size: 1.2rem; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: .84rem; max-width: 280px; line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: .85rem;
  text-decoration: none; color: var(--muted); transition: all .2s;
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(91,106,245,0.08); }
.footer-cert-row { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.f-cert { padding: 4px 10px; border: 1px solid var(--border); border-radius: 5px; font-size: .72rem; color: var(--muted); }
.footer-col h4 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--muted2); font-size: .85rem; text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px; margin: 52px auto 0; padding-top: 24px;
  border-top: 1px solid var(--border); display: flex; justify-content: space-between;
  align-items: center; color: var(--muted); font-size: .78rem; flex-wrap: wrap; gap: 12px;
}
.footer-location { display: flex; align-items: center; gap: 6px; }

/* ─── SCROLL REVEALS ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media(max-width:900px){
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .platform-header { grid-template-columns: 1fr; gap: 24px; }
  .pillars { grid-template-columns: 1fr; }
  .products-showcase { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: repeat(2,1fr); }
  .enterprise-card { grid-template-columns: 1fr; padding: 36px; gap: 40px; }
  .infra-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .agent-flow { gap: 8px; }
  .cta-inner { padding: 48px 24px; }
  section, .platform-section, .products-section, .agent-section, .journey-section, .solutions-section, .enterprise-section, .infra-section, .testimonials-section, .blog-section, .founders-section, .cta-section { padding-left: 20px; padding-right: 20px; }
  footer { padding: 48px 20px 24px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}
