/* ============================================================
   Zoras — Multi-page design system
   Aesthetic: dark + cyan/violet, Inter typography
   Structure: Shield53-style enterprise site
   ============================================================ */

:root {
  /* Surfaces */
  --bg-0: #05060A;
  --bg-1: #0A0C13;
  --bg-2: #10131C;
  --bg-3: #161A26;
  --bg-4: #1E2331;

  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);

  /* Text */
  --text-1: #F5F7FB;
  --text-2: #C2C8D6;
  --text-3: #8A92A6;
  --text-4: #5A6074;

  /* Accents — cyan primary, violet secondary */
  --cyan: #00D4FF;
  --cyan-soft: rgba(0, 212, 255, 0.15);
  --violet: #A855F7;
  --violet-soft: rgba(168, 85, 247, 0.15);
  --green: #22E8A9;
  --amber: #FFB020;
  --red: #FF5470;

  --gradient-primary: linear-gradient(135deg, #00D4FF 0%, #A855F7 100%);
  --gradient-soft: linear-gradient(135deg, rgba(0,212,255,.12) 0%, rgba(168,85,247,.12) 100%);
  --gradient-hero: radial-gradient(1200px 600px at 50% -10%, rgba(168,85,247,.25), transparent 60%),
                   radial-gradient(900px 500px at 10% 20%, rgba(0,212,255,.18), transparent 60%),
                   radial-gradient(700px 400px at 90% 10%, rgba(34,232,169,.10), transparent 60%);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;

  --shadow-lg: 0 20px 60px -20px rgba(0, 0, 0, 0.8);
  --glow-cyan: 0 0 40px rgba(0, 212, 255, 0.25);
  --glow-violet: 0 0 40px rgba(168, 85, 247, 0.25);

  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg-0);
  color: var(--text-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}
a { color: inherit; text-decoration: none; }

/* ============================================================
   Layout
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.container-sm { max-width: 840px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.container-lg { max-width: 1360px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

.section { padding: 96px 0; position: relative; }
.section-sm { padding: 64px 0; }
.section-xs { padding: 40px 0; }
.section-dark { background: var(--bg-1); }
.section-darker { background: var(--bg-0); }

/* ============================================================
   Light section system — inverts to white/off-white
   Applied as .section.section-light
   ============================================================ */
.section-light {
  background: #F6F8FB;
  color: #0A0C13;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.section-light h1, .section-light h2, .section-light h3, .section-light h4 { color: #0A0C13; }
.section-light .lead { color: #3A4254; }
.section-light .muted { color: #5A6478; }

.section-light .eyebrow { color: #0092B8; }
.section-light .eyebrow-violet { color: #7E33C9; }
.section-light .eyebrow-green { color: #0A8F68; }
.section-light .eyebrow-amber { color: #B8840F; }

.section-light .text-gradient {
  background: linear-gradient(135deg, #0092B8 0%, #7E33C9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Cards on light */
.section-light .card {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 3px rgba(10, 12, 19, 0.04);
}
.section-light .card:hover {
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 12px 32px rgba(10, 12, 19, 0.08);
}
.section-light .card p { color: #5A6478; }

.section-light .card-icon {
  background: rgba(0, 146, 184, 0.1);
  border-color: rgba(0, 146, 184, 0.25);
  color: #0092B8;
}
.section-light .card-icon.violet { background: rgba(126, 51, 201, 0.1); border-color: rgba(126, 51, 201, 0.25); color: #7E33C9; }
.section-light .card-icon.green { background: rgba(10, 143, 104, 0.1); border-color: rgba(10, 143, 104, 0.25); color: #0A8F68; }
.section-light .card-icon.amber { background: rgba(184, 132, 15, 0.1); border-color: rgba(184, 132, 15, 0.25); color: #B8840F; }

/* Pillars on light */
.section-light .pillar {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 3px rgba(10, 12, 19, 0.04);
}
.section-light .pillar:hover {
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 12px 32px rgba(10, 12, 19, 0.08);
}
.section-light .pillar-intro { color: #3A4254; }
.section-light .pillar-features { border-top-color: rgba(0, 0, 0, 0.07); }
.section-light .pillar-features li { color: #3A4254; }
.section-light .pillar-features li::before {
  background: rgba(0, 146, 184, 0.12);
  border-color: #0092B8;
}
.section-light .pillar-link { color: #0092B8; }
.section-light .pillar-link:hover { color: #7E33C9; }

/* Pillar tags on light */
.section-light .pillar-tag.live {
  background: rgba(10, 143, 104, 0.1);
  color: #0A8F68;
  border-color: rgba(10, 143, 104, 0.3);
}
.section-light .pillar-tag.beta {
  background: rgba(0, 146, 184, 0.1);
  color: #0092B8;
  border-color: rgba(0, 146, 184, 0.3);
}
.section-light .pillar-tag.soon {
  background: rgba(126, 51, 201, 0.1);
  color: #7E33C9;
  border-color: rgba(126, 51, 201, 0.3);
}

/* Buttons on light */
.section-light .btn-secondary {
  background: #FFFFFF;
  color: #0A0C13;
  border-color: rgba(0, 0, 0, 0.12);
}
.section-light .btn-secondary:hover {
  background: #F0F4FA;
  border-color: rgba(0, 0, 0, 0.2);
}
.section-light .btn-ghost { color: #3A4254; }
.section-light .btn-ghost:hover { color: #0A0C13; }

/* Stats strip on light */
.section-light.stats-strip,
.section-light .stats-strip { background: #F6F8FB; border-color: rgba(0, 0, 0, 0.06); }
.section-light .stat-cell { border-right-color: rgba(0, 0, 0, 0.08); }
.section-light .stat-cell .v {
  background: linear-gradient(135deg, #0092B8 0%, #7E33C9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-light .stat-cell .l { color: #5A6478; }

/* Integration tiles on light */
.section-light .integration-tile {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.07);
  color: #5A6478;
}
.section-light .integration-tile:hover {
  background: #F0F4FA;
  border-color: #0092B8;
  color: #0A0C13;
}

/* Badges on light */
.section-light .badge {
  background: #FFFFFF;
  border-color: rgba(0, 0, 0, 0.1);
  color: #3A4254;
}
.section-light .badge-cyan { background: rgba(0, 146, 184, 0.1); color: #0092B8; border-color: rgba(0, 146, 184, 0.3); }
.section-light .badge-violet { background: rgba(126, 51, 201, 0.1); color: #7E33C9; border-color: rgba(126, 51, 201, 0.3); }
.section-light .badge-green { background: rgba(10, 143, 104, 0.1); color: #0A8F68; border-color: rgba(10, 143, 104, 0.3); }
.section-light .badge-amber { background: rgba(184, 132, 15, 0.1); color: #B8840F; border-color: rgba(184, 132, 15, 0.3); }

/* Live/beta tags on light */
.section-light .live-tag {
  background: rgba(10, 143, 104, 0.1);
  color: #0A8F68;
  border-color: rgba(10, 143, 104, 0.4);
}

/* Trust bar on light */
.section-light.trust,
.trust.section-light { background: #F6F8FB; }
.section-light .trust-label { color: #5A6478; border-right-color: rgba(0, 0, 0, 0.1); }
.section-light .trust-logo { color: #3A4254; opacity: 0.75; }
.section-light .trust-logo:hover { color: #0A0C13; opacity: 1; }

/* Section header adjustments */
.section-light .section-header h2 { color: #0A0C13; }
.section-light .section-header .lead { color: #3A4254; }

/* Feature list on light */
.section-light .feature-item .ico {
  background: rgba(0, 146, 184, 0.1);
  border-color: rgba(0, 146, 184, 0.25);
  color: #0092B8;
}
.section-light .feature-item p { color: #5A6478; }

/* CTA block on light — use slightly tinted bg */
.section-light .cta-block {
  background: linear-gradient(135deg, rgba(0, 146, 184, 0.06) 0%, rgba(126, 51, 201, 0.06) 100%);
  border-color: rgba(0, 0, 0, 0.08);
}
.section-light .cta-block::before {
  background: radial-gradient(600px 300px at 50% 0%, rgba(126, 51, 201, 0.08), transparent);
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.075rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}
.eyebrow-violet { color: var(--violet); }
.eyebrow-green { color: var(--green); }
.eyebrow-amber { color: var(--amber); }

.muted { color: var(--text-3); }
.lead { font-size: 1.175rem; color: var(--text-2); max-width: 680px; line-height: 1.6; }
.lead-lg { font-size: 1.25rem; }

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   Nav — Shield53-style flat horizontal
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 6, 10, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1360px;
  margin: 0 auto;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-svg { display: block; filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4)); }
.logo-text { font-weight: 800; letter-spacing: -0.02em; font-size: 1.15rem; color: var(--text-1); }
.logo-text-muted { color: var(--text-3); font-weight: 500; }

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.925rem;
  color: var(--text-2);
  transition: color .2s;
  font-weight: 400;
  padding: 4px 0;
  position: relative;
}
.nav-links a:hover { color: var(--text-1); }
.nav-links a.active { color: var(--text-1); font-weight: 500; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

.nav-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-inner { padding: 16px 20px; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--r-md);
  font-weight: 500;
  font-size: 0.925rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
  font-family: inherit;
}
.btn-primary {
  background: var(--gradient-primary);
  color: #05060A;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.15);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(168, 85, 247, 0.25);
}
.btn-secondary {
  background: var(--bg-3);
  color: var(--text-1);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  background: var(--bg-4);
  border-color: rgba(255,255,255,.2);
}
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  padding: 12px 16px;
}
.btn-ghost:hover { color: var(--text-1); }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

.btn svg { transition: transform .2s ease; }
.btn-primary:hover svg, .btn-secondary:hover svg { transform: translateX(3px); }

/* ============================================================
   Page hero (non-homepage) — smaller, consistent
   ============================================================ */
.page-hero {
  padding: 96px 0 72px;
  background:
    radial-gradient(800px 400px at 15% 0%, rgba(0,212,255,.12), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(168,85,247,.14), transparent 60%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero .container { max-width: 1200px; }
.page-hero h1 { margin-bottom: 20px; font-size: clamp(2.25rem, 4.5vw, 3.5rem); }
.page-hero .lead { margin-bottom: 32px; max-width: 720px; }
.page-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.page-hero-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-3);
}
.page-hero-meta > div { display: flex; flex-direction: column; gap: 4px; }
.page-hero-meta .label { color: var(--text-4); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.68rem; }
.page-hero-meta .value { color: var(--text-1); font-size: 0.9rem; font-family: var(--font-sans); font-weight: 500; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-3); transition: color .2s; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb .sep { color: var(--text-4); }
.breadcrumb .current { color: var(--text-2); }

/* ============================================================
   Homepage hero rotator (carousel)
   ============================================================ */
.hero-rotator {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility 0s linear .7s;
  pointer-events: none;
  padding: 112px 0 140px;
  display: flex;
  align-items: flex-start;
}
.hero-panel.active {
  opacity: 1;
  visibility: visible;
  transition: opacity .7s ease, visibility 0s linear 0s;
  pointer-events: auto;
  z-index: 2;
}
.hero-panel .container { width: 100%; }
.hero-panel-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-panel-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--cyan);
}
.beta-tag {
  background: var(--gradient-primary);
  color: #05060A;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  margin-left: 8px;
}
.live-tag {
  background: rgba(34, 232, 169, 0.15);
  color: var(--green);
  border: 1px solid rgba(34, 232, 169, 0.4);
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
  margin-left: 8px;
}
.hero-panel h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  margin-bottom: 22px;
  max-width: 820px;
}
.hero-panel h1 .break { display: block; }
.hero-panel .lead { max-width: 640px; margin-bottom: 40px; color: var(--text-2); font-size: 1.125rem; }

.hero-panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 720px;
  margin-bottom: 36px;
}
@media (max-width: 720px) { .hero-panel-stats { grid-template-columns: 1fr; } }
.hero-panel-stat {
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.hero-panel-stat .v {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-panel-stat .l { color: var(--text-3); font-size: 0.8rem; line-height: 1.4; }
.hero-panel-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Panel background variants */
.panel-chat {
  background:
    radial-gradient(900px 500px at 85% 30%, rgba(34,232,169,.18), transparent 60%),
    radial-gradient(800px 400px at 15% 70%, rgba(0,212,255,.12), transparent 60%);
}
.panel-code {
  background:
    radial-gradient(900px 500px at 15% 30%, rgba(0,212,255,.18), transparent 60%),
    radial-gradient(800px 400px at 85% 70%, rgba(168,85,247,.12), transparent 60%);
}
.panel-api {
  background:
    radial-gradient(900px 500px at 85% 30%, rgba(168,85,247,.22), transparent 60%),
    radial-gradient(700px 400px at 15% 70%, rgba(255,176,32,.10), transparent 60%);
}

.hero-panel-visual {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  opacity: .5;
  pointer-events: none;
}
@media (max-width: 1100px) { .hero-panel-visual { display: none; } }

/* Rotator nav */
.hero-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 18px 32px;
  display: flex;
  gap: 10px;
  justify-content: center;
  background: linear-gradient(to top, rgba(5,6,10,.95), rgba(5,6,10,.4));
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}
.hero-dot {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-3);
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-dot:hover { color: var(--text-1); background: rgba(255,255,255,.04); }
.hero-dot.active {
  background: var(--gradient-primary);
  color: #05060A;
  font-weight: 700;
}
.hero-dot .num { font-size: 0.65rem; opacity: 0.6; }

.hero-progress {
  position: absolute;
  bottom: 58px;
  left: 0;
  height: 2px;
  background: var(--gradient-primary);
  z-index: 11;
  width: 0;
  transition: width .2s linear;
}

@media (max-width: 720px) {
  .hero-rotator { min-height: 960px; }
  .hero-panel { padding: 96px 0 120px; }
  .hero-nav { padding: 14px 16px; flex-wrap: wrap; }
  .hero-dot { padding: 6px 12px; font-size: 0.65rem; }
}

/* ============================================================
   Trust bar
   ============================================================ */
.trust {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg-1);
}
.trust-inner {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.trust-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-4);
  padding-right: 20px;
  border-right: 1px solid var(--border);
}
.trust-logos { display: flex; gap: 36px; align-items: center; flex-wrap: wrap; }
.trust-logo {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-3);
  letter-spacing: -0.01em;
  opacity: 0.75;
  transition: opacity .2s, color .2s;
}
.trust-logo:hover { opacity: 1; color: var(--text-1); }

/* ============================================================
   Section headers
   ============================================================ */
.section-header { text-align: center; margin-bottom: 64px; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-header.left { text-align: left; margin-left: 0; }
.section-header h2 { margin-bottom: 16px; }
.section-header .lead { margin: 0 auto; }
.section-header.left .lead { margin-left: 0; }

/* ============================================================
   Grids
   ============================================================ */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all .25s ease;
}
.card:hover { border-color: var(--border-strong); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--cyan-soft);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--cyan);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 22px; height: 22px; }
.card-icon.violet { background: var(--violet-soft); border-color: rgba(168,85,247,.3); color: var(--violet); }
.card-icon.green { background: rgba(34,232,169,.12); border-color: rgba(34,232,169,.3); color: var(--green); }
.card-icon.amber { background: rgba(255,176,32,.12); border-color: rgba(255,176,32,.3); color: var(--amber); }

.card h4 { margin-bottom: 12px; font-size: 1.1rem; }
.card p { color: var(--text-3); font-size: 0.95rem; line-height: 1.6; }

/* ============================================================
   Product pillar / service card
   ============================================================ */
.pillar {
  padding: 36px 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 480px;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity .25s;
}
.pillar:hover::before { opacity: 1; }
.pillar:hover { border-color: var(--border-strong); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pillar-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pillar-tag.live { background: rgba(34,232,169,.12); color: var(--green); border: 1px solid rgba(34,232,169,.4); }
.pillar-tag.beta { background: var(--cyan-soft); color: var(--cyan); border: 1px solid rgba(0,212,255,.4); }
.pillar-tag.soon { background: var(--violet-soft); color: var(--violet); border: 1px solid rgba(168,85,247,.4); }
.pillar h3 { margin-bottom: 14px; font-size: 1.5rem; }
.pillar-intro { color: var(--text-2); margin-bottom: 24px; font-size: 0.95rem; line-height: 1.6; }
.pillar-features { list-style: none; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border); }
.pillar-features li { padding: 8px 0; display: flex; align-items: flex-start; gap: 12px; font-size: 0.875rem; color: var(--text-2); }
.pillar-features li::before {
  content: '';
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--cyan-soft);
  border: 1px solid var(--cyan);
  flex-shrink: 0;
  margin-top: 3px;
}
.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cyan);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.pillar-link:hover { gap: 12px; color: var(--violet); }

/* ============================================================
   Split / feature rows
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 960px) { .split { grid-template-columns: 1fr; gap: 48px; } }
.split-reverse > :first-child { order: 2; }
@media (max-width: 960px) { .split-reverse > :first-child { order: 0; } }

/* ============================================================
   Mock frames
   ============================================================ */
.mock {
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-3);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--bg-4); }

.code-block {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-mono);
  font-size: 0.825rem;
  overflow: hidden;
}
.code-header {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-3);
}
.code-dots { display: flex; gap: 6px; }
.code-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--bg-4); }
.code-body { padding: 20px; overflow-x: auto; color: var(--text-2); line-height: 1.7; }
.code-body .k { color: var(--violet); }
.code-body .s { color: var(--green); }
.code-body .c { color: var(--text-4); }
.code-body .f { color: var(--cyan); }

/* ============================================================
   Stats
   ============================================================ */
.stats-strip {
  padding: 56px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-cell {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--border);
}
.stat-cell:last-child { border-right: none; }
.stat-cell .v {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.stat-cell .l { color: var(--text-3); font-size: 0.85rem; }

/* ============================================================
   Feature list (2-column)
   ============================================================ */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 48px;
}
@media (max-width: 720px) { .feature-list { grid-template-columns: 1fr; } }
.feature-item { display: flex; gap: 16px; }
.feature-item .ico {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--cyan-soft);
  border: 1px solid rgba(0,212,255,.3);
  color: var(--cyan);
  display: grid;
  place-items: center;
}
.feature-item .ico svg { width: 18px; height: 18px; }
.feature-item h4 { margin-bottom: 6px; font-size: 1rem; }
.feature-item p { color: var(--text-3); font-size: 0.9rem; line-height: 1.55; margin: 0; }

/* ============================================================
   Integrations strip
   ============================================================ */
.integrations-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media (max-width: 960px) { .integrations-strip { grid-template-columns: repeat(3, 1fr); } }
.integration-tile {
  aspect-ratio: 2/1;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-3);
  font-weight: 500;
  transition: all .2s;
  padding: 12px;
}
.integration-tile:hover { border-color: var(--cyan); color: var(--text-1); background: var(--bg-3); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  color: var(--text-1);
  font-weight: 500;
  font-size: 1.05rem;
}
.faq-q:hover { color: var(--cyan); }
.faq-q .plus { color: var(--cyan); font-size: 1.5rem; font-weight: 300; line-height: 1; flex-shrink: 0; }
.faq-a { margin-top: 12px; color: var(--text-3); font-size: 0.95rem; line-height: 1.6; max-width: 820px; }

/* ============================================================
   Form
   ============================================================ */
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  color: var(--text-1);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-soft);
}
.form-field textarea { min-height: 120px; resize: vertical; font-family: inherit; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 720px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   CTA block
   ============================================================ */
.cta-block {
  padding: 80px 40px;
  background: var(--gradient-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 50% 0%, rgba(168,85,247,.15), transparent);
  pointer-events: none;
}
.cta-block > * { position: relative; }
.cta-block h2 { margin-bottom: 16px; }
.cta-block .lead { margin: 0 auto 32px; }
.cta-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Sister brand callout
   ============================================================ */
.sister-brand {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  background: linear-gradient(135deg, rgba(16,185,129,.06) 0%, rgba(245,158,11,.06) 100%);
  border: 1px solid rgba(16,185,129,.2);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
@media (max-width: 960px) { .sister-brand { grid-template-columns: 1fr; padding: 36px 28px; gap: 28px; } }
.sister-brand h3 { font-size: 1.625rem; margin-bottom: 12px; }
.text-gradient-af {
  background: linear-gradient(135deg, #10B981, #F59E0B);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn-af {
  background: linear-gradient(135deg, #10B981, #F59E0B);
  color: #05060A;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--r-md);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}
.btn-af:hover { transform: translateY(-1px); box-shadow: 0 12px 36px rgba(245,158,11,.3); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
  background: var(--bg-0);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--text-3); font-size: 0.9rem; margin: 12px 0 20px; max-width: 320px; }
.footer h4 {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer ul { list-style: none; }
.footer li { padding: 6px 0; }
.footer a { color: var(--text-3); font-size: 0.9rem; transition: color .2s; }
.footer a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============================================================
   Badges
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--bg-3);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--text-2);
  letter-spacing: 0.05em;
}
.badge-cyan { background: var(--cyan-soft); border-color: rgba(0,212,255,.3); color: var(--cyan); }
.badge-violet { background: var(--violet-soft); border-color: rgba(168,85,247,.3); color: var(--violet); }
.badge-green { background: rgba(34,232,169,.12); border-color: rgba(34,232,169,.3); color: var(--green); }
.badge-amber { background: rgba(255,176,32,.12); border-color: rgba(255,176,32,.3); color: var(--amber); }

/* ============================================================
   Testimonials
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 960px) { .testi-grid { grid-template-columns: 1fr; } }
.testi { padding: 28px; background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-lg); display: flex; flex-direction: column; gap: 16px; }
.stars { color: var(--amber); letter-spacing: .1em; font-size: 0.95rem; }
.testi blockquote { color: var(--text-2); font-size: 0.95rem; line-height: 1.6; font-style: italic; }
.testi cite { color: var(--text-3); font-size: 0.85rem; font-style: normal; }
.testi cite strong { color: var(--text-1); }

/* ============================================================
   Utility
   ============================================================ */
.mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-gap-12 { gap: 12px; }
.flex-gap-16 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }
