/* ─── Icey Clip AI — Landing Page ─────────────────────────────────────────── */

:root {
  --bg-base:        #070B12;
  --bg-surface:     #0C1220;
  --bg-elevated:    #111A2C;
  --bg-card:        #0F172A;
  --accent-cyan:    #06B6D4;
  --accent-sky:     #38BDF8;
  --accent-emerald: #10B981;
  --accent-rose:    #F43F5E;
  --accent-blue:    #60A5FA;
  --accent-purple:  #A78BFA;
  --accent-yellow:  #F59E0B;
  --text-primary:   #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted:     #475569;
  --border-subtle:  rgba(255,255,255,0.05);
  --border-cyan:    rgba(6,182,212,0.2);
  --font-ui:        'Inter', sans-serif;
  --font-mono:      'JetBrains Mono', monospace;
  --glow-cyan:      0 0 40px rgba(6,182,212,0.3);
  --glow-cyan-lg:   0 0 80px rgba(6,182,212,0.2);
  --glow-emerald:   0 0 30px rgba(16,185,129,0.3);
  --shadow-card:    0 8px 40px rgba(0,0,0,0.6);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--accent-cyan); text-decoration: none; }
img { max-width: 100%; display: block; }

.font-mono { font-family: var(--font-mono); }

/* ─── Color Utility Classes ──────────────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-sky) 60%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-emerald { color: var(--accent-emerald); }
.text-cyan    { color: var(--accent-cyan); }
.text-sky     { color: var(--accent-sky); }
.text-rose    { color: var(--accent-rose); }
.text-yellow  { color: var(--accent-yellow); }
.text-purple  { color: var(--accent-purple); }

/* ─── Container ──────────────────────────────────────────────────────────── */

.home-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── Nav ────────────────────────────────────────────────────────────────── */

.home-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(7,11,18,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.home-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.home-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.home-nav-logo {
  height: 36px;
  width: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.home-nav-brand-text {
  display: flex;
  align-items: center;
  gap: 7px;
}

.home-nav-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.home-nav-badge {
  font-size: 0.62rem;
  font-weight: 700;
  background: rgba(6,182,212,0.12);
  color: var(--accent-cyan);
  border: 1px solid rgba(6,182,212,0.28);
  border-radius: 5px;
  padding: 1px 6px;
}

.home-nav-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
}

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

.home-nav-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.15s ease;
}
.home-nav-links a:hover { color: var(--text-primary); }

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

.btn-nav-ghost {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 9px;
  transition: all 0.15s ease;
}
.btn-nav-ghost:hover { color: var(--text-primary); border-color: var(--border-cyan); }

.btn-nav-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #000;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-sky));
  border-radius: 9px;
  transition: all 0.15s ease;
}
.btn-nav-primary:hover { filter: brightness(1.1); box-shadow: var(--glow-cyan); color: #000; }

/* ─── Hero ───────────────────────────────────────────────────────────────── */

.home-hero {
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Animated background grid */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6,182,212,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 600px; height: 600px;
  top: -200px; left: -100px;
  background: radial-gradient(ellipse, rgba(6,182,212,0.12) 0%, transparent 70%);
}
.hero-orb-2 {
  width: 500px; height: 500px;
  top: -100px; right: -100px;
  background: radial-gradient(ellipse, rgba(167,139,250,0.1) 0%, transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-cyan);
  background: rgba(6,182,212,0.07);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.hero-badge-pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-emerald);
  box-shadow: 0 0 0 0 rgba(16,185,129,0.4);
  animation: pulse-ring 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.hero-heading {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero-heading-gradient {
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-sky) 50%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-actions { display: flex; align-items: center; gap: 12px; margin-bottom: 44px; flex-wrap: wrap; }

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #000;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-sky));
  border-radius: 11px;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(6,182,212,0.35);
}
.btn-hero-primary:hover {
  filter: brightness(1.12);
  box-shadow: 0 6px 30px rgba(6,182,212,0.5);
  transform: translateY(-1px);
  color: #000;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 11px;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.btn-hero-ghost:hover { color: var(--text-primary); border-color: var(--border-cyan); }

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-size: 1.75rem;
  font-weight: 900;
  font-family: var(--font-mono);
  color: var(--accent-cyan);
  line-height: 1;
  margin-bottom: 3px;
  letter-spacing: -0.02em;
}
.hero-stat-lbl { font-size: 0.78rem; color: var(--text-muted); }
.hero-stat-sep { width: 1px; height: 44px; background: var(--border-subtle); }

/* ─── Hero Preview Window ────────────────────────────────────────────────── */

.hero-preview { position: relative; }

.preview-window {
  background: var(--bg-card);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card), var(--glow-cyan-lg);
}

.preview-window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-subtle);
}

.preview-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.preview-dot-red    { background: #FF5F57; }
.preview-dot-yellow { background: #FFBD2E; }
.preview-dot-green  { background: #28C840; }

.preview-window-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 8px;
  font-family: var(--font-mono);
}

.preview-content { padding: 16px; }

/* ─── Preview Clip Cards ─────────────────────────────────────────────────── */

.preview-clips-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.preview-clip-card {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 9px;
  padding: 10px 12px;
  transition: border-color 0.2s ease;
}
.preview-clip-card:hover { border-color: var(--border-cyan); }

.preview-clip-thumb {
  width: 44px;
  height: 78px;
  border-radius: 6px;
  background: linear-gradient(145deg, #1a2e4a, #0d1a2e);
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 4px;
}
.preview-clip-thumb-2 { background: linear-gradient(145deg, #2a1a3a, #150d2a); }
.preview-clip-thumb-3 { background: linear-gradient(145deg, #0d2a2a, #061a1a); }

.preview-clip-score {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 8px;
  white-space: nowrap;
  position: absolute;
  top: 4px;
  right: 2px;
}
.score-high { background: rgba(16,185,129,0.25); color: var(--accent-emerald); }
.score-mid  { background: rgba(56,189,248,0.2); color: var(--accent-sky); }

.preview-clip-duration {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.5);
  padding: 1px 4px;
  border-radius: 4px;
}

.preview-clip-meta { flex: 1; min-width: 0; }
.preview-clip-hook {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.preview-clip-bar-wrap {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.preview-clip-bar {
  height: 100%;
  border-radius: 2px;
  transition: width 1s ease;
}

/* ─── Preview Processing Bar ─────────────────────────────────────────────── */

.preview-processing-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(6,182,212,0.06);
  border: 1px solid rgba(6,182,212,0.15);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.75rem;
  color: var(--accent-cyan);
}

.preview-progress-track {
  flex: 1;
  height: 4px;
  background: rgba(6,182,212,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.preview-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-sky));
  border-radius: 2px;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-pct {
  font-size: 0.72rem;
  color: var(--accent-cyan);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── Section Shared ─────────────────────────────────────────────────────── */

.home-section { padding: 96px 0; }

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 14px;
}

.section-heading {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

/* ─── Product / Analytics Preview Section ────────────────────────────────── */

.product-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.product-hero-band {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(6,182,212,0.04) 100%);
  border: 1px solid var(--border-subtle);
  border-left: 2px solid var(--accent-cyan);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.product-hero-left { flex: 1; min-width: 280px; }

.product-hero-heading {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.product-hero-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
}

.btn-band-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #000;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-sky));
  border-radius: 10px;
  transition: all 0.2s ease;
  flex-shrink: 0;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(6,182,212,0.3);
}
.btn-band-cta:hover { filter: brightness(1.1); box-shadow: var(--glow-cyan); color: #000; transform: translateY(-1px); }

/* ─── Dashboard Layout ───────────────────────────────────────────────────── */

.product-dashboard {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
  align-items: start;
}

.dash-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow-card);
}

/* ─── Chart Card ─────────────────────────────────────────────────────────── */

.dash-chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.dash-chart-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.dash-chart-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dash-chart-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.dash-accuracy-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-emerald);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  padding: 5px 14px;
  border-radius: 7px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

/* ─── SVG Chart ──────────────────────────────────────────────────────────── */

.dash-chart-area {
  width: 100%;
  overflow: hidden;
  margin-bottom: 16px;
}

.home-chart-svg {
  width: 100%;
  height: 220px;
  display: block;
}

.chart-grid-line {
  stroke: rgba(255,255,255,0.04);
  stroke-width: 1;
}

.chart-axis-label {
  font-family: var(--font-mono);
  font-size: 10px;
  fill: var(--text-muted);
  text-anchor: middle;
}

.chart-line {
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-line-actual {
  stroke: #F43F5E;
  stroke-dasharray: 6 4;
  filter: drop-shadow(0 0 4px rgba(244,63,94,0.5));
}

.chart-line-predicted {
  stroke: #A78BFA;
  filter: drop-shadow(0 0 4px rgba(167,139,250,0.4));
}

.chart-dot { stroke-width: 2; }
.chart-dot-actual   { fill: #F43F5E; stroke: rgba(244,63,94,0.3); r: 5; }
.chart-dot-predicted { fill: #A78BFA; stroke: rgba(167,139,250,0.3); r: 4; }

.chart-x-label { font-size: 9px; }

.dash-chart-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.legend-dot-actual    { background: #F43F5E; box-shadow: 0 0 6px rgba(244,63,94,0.6); }
.legend-dot-predicted { background: #A78BFA; box-shadow: 0 0 6px rgba(167,139,250,0.6); }

/* ─── Triggers Card ──────────────────────────────────────────────────────── */

.dash-right { display: flex; flex-direction: column; }

.dash-triggers-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}

.dash-triggers-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dash-triggers-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.dash-trigger-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.dash-trigger-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.dash-trigger-name {
  font-size: 0.83rem;
  color: var(--text-primary);
  font-weight: 500;
}

.dash-trigger-val {
  font-size: 0.78rem;
  font-weight: 700;
}

.dash-trigger-track {
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  overflow: hidden;
}

.dash-trigger-fill {
  height: 100%;
  border-radius: 3px;
  width: 0%;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.fill-emerald { background: linear-gradient(90deg, var(--accent-emerald), #34d399); box-shadow: 0 0 8px rgba(16,185,129,0.4); }
.fill-cyan    { background: linear-gradient(90deg, var(--accent-cyan), var(--accent-sky)); box-shadow: 0 0 8px rgba(6,182,212,0.4); }
.fill-sky     { background: linear-gradient(90deg, var(--accent-sky), #7dd3fc); box-shadow: 0 0 8px rgba(56,189,248,0.4); }
.fill-yellow  { background: linear-gradient(90deg, var(--accent-yellow), #fcd34d); box-shadow: 0 0 8px rgba(245,158,11,0.4); }

.dash-ai-insight {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 9px;
  padding: 12px 14px;
}

.dash-insight-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

.dash-insight-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.dash-insight-text strong { color: var(--text-primary); }

/* ─── How It Works ───────────────────────────────────────────────────────── */

.how-section { background: var(--bg-base); }

.how-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-top: 48px;
}

.how-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 24px 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.how-step-card:hover {
  border-color: var(--border-cyan);
  box-shadow: 0 0 24px rgba(6,182,212,0.1);
}

.how-step-num {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent-cyan);
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.18);
  border-radius: 5px;
  padding: 2px 8px;
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.how-step-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.how-step-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.how-step-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.how-connector-h {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  padding-top: 60px;
  color: var(--accent-cyan);
  opacity: 0.35;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.how-connector-h::before { content: '→'; }

/* ─── Features Bento Grid ────────────────────────────────────────────────── */

.features-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.features-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.bento-card:hover { border-color: var(--border-cyan); box-shadow: 0 0 30px rgba(6,182,212,0.08); }

.bento-large { grid-column: 1; grid-row: 1 / 3; }
.bento-wide  { grid-column: 1 / -1; }

.bento-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.bento-icon-cyan    { background: rgba(6,182,212,0.1); color: var(--accent-cyan); }
.bento-icon-blue    { background: rgba(96,165,250,0.1); color: var(--accent-blue); }
.bento-icon-purple  { background: rgba(167,139,250,0.1); color: var(--accent-purple); }
.bento-icon-emerald { background: rgba(16,185,129,0.1); color: var(--accent-emerald); }

.bento-tag {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.bento-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.bento-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
}

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

.bento-bullets li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.bento-bullets li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-size: 0.55rem;
  top: 5px;
}

/* ─── Platforms ──────────────────────────────────────────────────────────── */

.platforms-section { background: var(--bg-base); }

.platforms-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 11px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.18s ease;
}
.platform-chip:hover {
  border-color: rgba(6,182,212,0.3);
  background: rgba(6,182,212,0.04);
  box-shadow: 0 0 20px rgba(6,182,212,0.1);
  transform: translateY(-1px);
}
.platform-chip-icon { width: 24px; height: 24px; }

/* ─── CTA Section ────────────────────────────────────────────────────────── */

.home-cta-section {
  padding: 96px 0;
  background: var(--bg-base);
}

.cta-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(6,182,212,0.25);
  border-radius: 24px;
  padding: 80px 64px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-card), var(--glow-cyan-lg);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-cyan) 30%, var(--accent-sky) 60%, var(--accent-purple) 100%);
  opacity: 0.9;
}

.cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(6,182,212,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(167,139,250,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.cta-orb-1 {
  width: 500px; height: 300px;
  top: -100px; left: -100px;
  background: rgba(6,182,212,0.07);
  animation: orb-float 8s ease-in-out infinite;
}
.cta-orb-2 {
  width: 400px; height: 300px;
  bottom: -100px; right: -50px;
  background: rgba(167,139,250,0.07);
  animation: orb-float 10s ease-in-out infinite reverse;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(10px); }
}

.cta-inner { position: relative; z-index: 1; }

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-emerald);
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.cta-badge-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-emerald);
  animation: pulse-ring 2s ease-in-out infinite;
  flex-shrink: 0;
}

.cta-heading {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.cta-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 800;
  color: #000;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-sky));
  border-radius: 12px;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(6,182,212,0.4), 0 0 0 1px rgba(6,182,212,0.2);
  animation: glow-pulse 3s ease-in-out infinite;
}
.btn-cta-primary:hover {
  filter: brightness(1.12);
  box-shadow: 0 12px 40px rgba(6,182,212,0.6);
  transform: translateY(-2px);
  color: #000;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(6,182,212,0.4), 0 0 0 1px rgba(6,182,212,0.2); }
  50% { box-shadow: 0 8px 48px rgba(6,182,212,0.6), 0 0 0 1px rgba(6,182,212,0.3); }
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  padding: 16px 24px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.btn-cta-ghost:hover { color: var(--text-primary); border-color: var(--border-cyan); }

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-trust-item {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */

.home-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logo {
  height: 30px;
  width: 30px;
  border-radius: 6px;
  object-fit: cover;
}

.footer-brand-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
}
.footer-brand-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--text-primary); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-preview { display: none; }
  .product-dashboard { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .how-connector-h { display: none; }
  .bento-large { grid-column: 1 / -1; grid-row: auto; }
  .bento-wide  { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .home-nav-links { display: none; }
  .hero-heading { font-size: 2.4rem; }
  .section-heading { font-size: 1.8rem; }
  .cta-heading { font-size: 2rem; }
  .cta-card { padding: 48px 24px; }
  .how-grid { grid-template-columns: 1fr; }
  .features-bento { grid-template-columns: 1fr; }
  .product-hero-band { flex-direction: column; gap: 20px; }
}

@media (max-width: 600px) {
  .home-container { padding: 0 20px; }
  .home-nav-inner { padding: 0 20px; }
  .hero-heading { font-size: 1.9rem; }
  .hero-stats-row { gap: 16px; }
  .hero-stat-sep { display: none; }
  .home-section { padding: 64px 0; }
  .home-cta-section { padding: 64px 0; }
  .cta-heading { font-size: 1.6rem; }
}
