/* ============================================================
   index.css — Homepage specific styles
   ============================================================ */

/* ── Page offset for fixed navbar ── */
main {
  padding-top: var(--nav-height);
}

/* ════════════════════════════════════════════════════════════
   SECTION 1 — HERO
   Rich dark gradient, blobs, split layout
   ════════════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, #0A0E1A 0%, #161030 35%, #0F1825 65%, #0A1020 100%);
  padding: 100px 0 0;
  overflow: hidden;
  position: relative;
}

/* ── Decorative blobs ── */
.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}

.hero-blob-amber {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(59,130,246,0.45) 0%, transparent 70%);
  top: -80px;
  right: 5%;
  animation: blob-drift 12s ease-in-out infinite;
}

.hero-blob-purple {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(139,92,246,0.35) 0%, transparent 70%);
  bottom: 20%;
  left: -5%;
  animation: blob-drift 15s ease-in-out infinite reverse;
}

.hero-blob-teal {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(20,184,166,0.25) 0%, transparent 70%);
  top: 40%;
  left: 35%;
  animation: blob-drift 18s ease-in-out infinite 3s;
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(24px, -18px) scale(1.06); }
  66%       { transform: translate(-16px, 22px) scale(0.96); }
}

/* ── Dot grid overlay ── */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* ── Hero layout ── */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

/* ── Text column ── */
.hero-text-col {
  max-width: 560px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

.hero-label.loaded { opacity: 1; transform: translateY(0); }

.hero-label-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 3px rgba(59,130,246,0.3); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 6px rgba(59,130,246,0.1); }
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease 0.22s, transform 0.55s ease 0.22s;
}

.hero-headline.loaded { opacity: 1; transform: translateY(0); }

.hero-headline-accent {
  display: block;
  background: linear-gradient(90deg, var(--color-primary) 0%, #60A5FA 50%, #93C5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.72;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease 0.34s, transform 0.55s ease 0.34s;
}

.hero-sub.loaded { opacity: 1; transform: translateY(0); }

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease 0.46s, transform 0.5s ease 0.46s;
}

.hero-cta.loaded { opacity: 1; transform: translateY(0); }

.hero-btn-main {
  box-shadow: 0 0 32px rgba(59,130,246,0.45);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(4px);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,0.12);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}

/* Trust row */
.hero-trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0;
  transition: opacity 0.5s ease 0.58s;
}

.hero-trust-row.loaded { opacity: 1; }

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  padding: 5px 12px;
}

.hero-trust-icon {
  font-size: 0.7rem;
  color: var(--color-primary);
}

/* ── Visual column ── */
.hero-visual-col {
  position: relative;
  height: 440px;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s ease 0.4s, transform 0.7s ease 0.4s;
}

.hero-visual-col.loaded {
  opacity: 1;
  transform: translateX(0);
}

/* Main dashboard card */
.hero-visual-card {
  position: absolute;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.07);
}

.hero-visual-main {
  width: 320px;
  right: 20px;
  top: 0;
  padding: 20px;
}

.hvc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.hvc-logo {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

.hvc-date {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 3px 8px;
}

.hvc-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.hvc-metric {
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
}

.hvc-metric-amber { background: rgba(59,130,246,0.12); }
.hvc-metric-green { background: rgba(16,185,129,0.12); }
.hvc-metric-red   { background: rgba(239,68,68,0.10);  }

.hvc-metric-val {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 3px;
}

.hvc-metric-lbl {
  font-size: 0.56rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}

.hvc-metric-delta {
  font-size: 0.56rem;
  font-weight: 700;
}

.hvc-delta-up   { color: #34D399; }
.hvc-delta-down { color: #F87171; }

/* Mini bar chart */
.hvc-chart {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 12px;
}

.hvc-bar-group {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 52px;
  margin-bottom: 6px;
}

.hvc-bar {
  flex: 1;
  background: rgba(59,130,246,0.25);
  border-radius: 4px 4px 0 0;
  transition: var(--transition);
}

/* Individual bar heights */
.hvc-bar-b1 { height: 40%; }
.hvc-bar-b2 { height: 65%; }
.hvc-bar-b3 { height: 50%; }
.hvc-bar-b4 { height: 85%; }
.hvc-bar-b5 { height: 70%; }
.hvc-bar-b6 { height: 55%; }
.hvc-bar-b7 { height: 78%; }

.hvc-bar-active {
  background: var(--color-primary);
  box-shadow: 0 0 12px rgba(59,130,246,0.5);
}

.hvc-bar-today {
  background: rgba(59,130,246,0.55);
}

.hvc-chart-label {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* Notification floating card */
.hero-visual-notif {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 220px;
  left: 0;
  bottom: 80px;
  padding: 12px 14px;
  animation: float-notif 4s ease-in-out infinite;
}

@keyframes float-notif {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hvn-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hvn-text {
  flex: 1;
}

.hvn-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 2px;
}

.hvn-sub {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.5);
}

.hvn-time {
  font-size: 0.58rem;
  color: var(--color-primary);
  font-weight: 600;
  flex-shrink: 0;
}

/* Floating pill */
.hero-visual-pill {
  position: absolute;
  top: 50%;
  left: -20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--color-primary), #60A5FA);
  color: #1E3A8A;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  padding: 7px 14px;
  box-shadow: 0 8px 24px rgba(59,130,246,0.45);
  white-space: nowrap;
  animation: float-pill 5s ease-in-out infinite 1s;
}

@keyframes float-pill {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.hvp-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #1E3A8A;
  opacity: 0.6;
}

/* Decorative rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.12);
  pointer-events: none;
}

.hero-ring-1 {
  width: 380px;
  height: 380px;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}

.hero-ring-2 {
  width: 520px;
  height: 520px;
  top: 50%;
  right: -90px;
  transform: translateY(-50%);
  border-color: rgba(59,130,246,0.06);
}

/* Wave divider */
.hero-wave {
  position: relative;
  margin-bottom: -2px;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ════════════════════════════════════════════════════════════
   SECTION 2 — PRODUCTS
   ════════════════════════════════════════════════════════════ */
.products-section {
  padding: 96px 0;
  background-color: var(--color-light-gray);
}

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

.products-header .section-sub {
  margin: 16px auto 0;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

/* Product Card */
.product-card {
  background-color: var(--color-white);
  border-radius: 20px;
  border: 1.5px solid #E5E7EB;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

/* Amber accent banner on Solven card */
.product-card-accent {
  height: 6px;
  background: linear-gradient(90deg, #3B82F6, #60A5FA, #2563EB, #3B82F6);
  background-size: 200% 100%;
  animation: shimmer-accent 4s linear infinite;
  position: relative;
  overflow: hidden;
}

@keyframes shimmer-accent {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.product-card-accent-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0.25;
}

.pca-icon {
  font-size: 0.5rem;
  color: var(--color-white);
}

.product-card-body {
  padding: 32px 36px 24px;
}

.product-name-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.product-name {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.025em;
}

.product-tag {
  font-size: 0.72rem;
  font-weight: 600;
  background-color: #DBEAFE;
  color: #1D4ED8;
  border-radius: 100px;
  padding: 3px 10px;
}

.product-desc {
  font-size: 0.9875rem;
  color: var(--color-gray);
  line-height: 1.65;
  margin-bottom: 24px;
}

.product-microstats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.microstat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-dark);
  background-color: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 8px;
  padding: 5px 11px;
}

.microstat::before {
  content: '✓';
  color: var(--color-success);
  font-weight: 700;
}

.product-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  background-color: #DBEAFE;
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 20px;
}

.product-status::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-primary);
  animation: pulse 2s infinite;
}

/* Colored metric cards in mockup */
.dash-metric.dash-metric-amber { border-top: 2px solid var(--color-primary); }
.dash-metric.dash-metric-green { border-top: 2px solid var(--color-success); }
.dash-metric.dash-metric-red   { border-top: 2px solid var(--color-danger);  }

/* Transaction dot color indicators */
.dash-tx-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 2px;
}

.dash-tx-dot-amber { background-color: var(--color-primary); }
.dash-tx-dot-blue  { background-color: #60A5FA; }
.dash-tx-dot-green { background-color: var(--color-success); }

/* CSS Dashboard Mockup */
.dashboard-mockup {
  margin: 0 28px 28px;
  background-color: #F8FAFC;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  height: 220px;
  display: flex;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.dash-sidebar {
  width: 118px;
  background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
  padding: 16px 12px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-logo-mini {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}

.dash-nav-item {
  font-size: 0.63rem;
  color: rgba(255,255,255,0.45);
  padding: 6px 8px;
  border-radius: 6px;
}

.dash-nav-item.active-nav {
  background: linear-gradient(90deg, rgba(59,130,246,0.2), rgba(59,130,246,0.08));
  color: var(--color-primary);
  font-weight: 600;
  border-left: 2px solid var(--color-primary);
}

.dash-main {
  flex: 1;
  padding: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-greeting {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-dark);
}

.dash-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), #1D4ED8);
  box-shadow: 0 0 0 2px rgba(59,130,246,0.3);
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.dash-metric {
  background-color: var(--color-white);
  border-radius: 8px;
  padding: 8px;
  border: 1px solid #F0F0F0;
}

.dash-metric-label { font-size: 0.52rem; color: var(--color-gray); margin-bottom: 3px; }
.dash-metric-value { font-size: 0.68rem; font-weight: 700; color: var(--color-dark); }

.dash-metric-delta { font-size: 0.5rem; font-weight: 600; margin-top: 2px; }
.delta-up   { color: var(--color-success); }
.delta-down { color: var(--color-danger); }

.dash-transactions {
  background-color: var(--color-white);
  border-radius: 8px;
  border: 1px solid #F0F0F0;
  padding: 8px;
  flex: 1;
  overflow: hidden;
}

.dash-tx-title {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dash-tx-row {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 0;
  border-bottom: 1px solid #F3F4F6;
}

.dash-tx-row:last-child { border-bottom: none; }

.dash-tx-name   { font-size: 0.54rem; color: var(--color-gray); flex: 1; }
.dash-tx-amount { font-size: 0.54rem; font-weight: 700; color: var(--color-success); }

.product-card-footer {
  padding: 0 28px 32px;
}

/* Coming-soon card */
.product-card.coming-soon {
  opacity: 0.8;
  background: linear-gradient(135deg, #F9FAFB 0%, #F1F5F9 100%);
  border-style: dashed;
  border-color: #CBD5E1;
}

.product-card.coming-soon:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}

/* Coming-soon decorative graphic */
.coming-soon-graphic {
  margin: 28px 28px 0;
  height: 130px;
  background: linear-gradient(135deg, #EEF2FF 0%, #F0FDF4 100%);
  border-radius: 12px;
  border: 1px dashed #C7D2FE;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.csg-shape { position: absolute; border-radius: 4px; opacity: 0.35; }

.csg-circle-1 {
  width: 60px; height: 60px; border-radius: 50%;
  background: #A5B4FC; top: -15px; right: -15px;
}

.csg-circle-2 {
  width: 36px; height: 36px; border-radius: 50%;
  background: #86EFAC; bottom: -10px; left: 20px;
}

.csg-bar-1 { width: 45px; height: 8px; background: #A5B4FC; bottom: 38px; right: 24px; }
.csg-bar-2 { width: 30px; height: 8px; background: #FCA5A5; bottom: 22px; right: 24px; }
.csg-bar-3 { width: 55px; height: 8px; background: #86EFAC; bottom: 54px; right: 24px; }

.csg-question {
  font-size: 3rem;
  font-weight: 800;
  color: #C7D2FE;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 1;
}

.product-card.coming-soon .product-card-body {
  padding-top: 24px;
}

.product-card.coming-soon .product-name {
  color: #94A3B8;
  font-size: 1.375rem;
}

.product-card.coming-soon .product-tag {
  background-color: #E2E8F0;
  color: #64748B;
}

.btn-disabled {
  opacity: 0.4;
  pointer-events: none;
  border: 2px solid #CBD5E1;
  color: #94A3B8;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
}

/* ════════════════════════════════════════════════════════════
   SECTION 3 — PHILOSOPHY
   Colored cards, gradient background
   ════════════════════════════════════════════════════════════ */
.philosophy-section {
  padding: 96px 0;
  background: linear-gradient(160deg, #FFFFFF 0%, #F8F4FF 50%, #FFF8EC 100%);
  position: relative;
  overflow: hidden;
}

.philosophy-bg-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
  bottom: -200px;
  right: -150px;
  pointer-events: none;
}

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

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.principle-card {
  background-color: var(--color-white);
  border-radius: 18px;
  padding: 36px 32px;
  border: 1.5px solid #E9EAEC;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.principle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 18px 18px 0 0;
  transition: var(--transition);
}

.principle-card-amber::before { background: linear-gradient(90deg, #3B82F6, #60A5FA); }
.principle-card-blue::before  { background: linear-gradient(90deg, #3B82F6, #60A5FA); }
.principle-card-green::before { background: linear-gradient(90deg, #10B981, #34D399); }

.principle-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

/* Icon wrapper */
.principle-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.principle-icon-amber {
  background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
  color: #1D4ED8;
  box-shadow: 0 4px 12px rgba(59,130,246,0.25);
}

.principle-icon-blue {
  background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
  color: #1D4ED8;
  box-shadow: 0 4px 12px rgba(59,130,246,0.2);
}

.principle-icon-green {
  background: linear-gradient(135deg, #D1FAE5, #A7F3D0);
  color: #065F46;
  box-shadow: 0 4px 12px rgba(16,185,129,0.2);
}

.principle-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.principle-text {
  font-size: 0.9375rem;
  color: var(--color-gray);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   SECTION 4 — FOUNDER
   Dark dramatic background
   ════════════════════════════════════════════════════════════ */
.founder-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #0A0E1A 0%, #111827 40%, #0F1A2E 100%);
  position: relative;
  overflow: hidden;
}

.founder-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.founder-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 70%);
  top: -100px;
  left: -80px;
}

.founder-orb-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(139,92,246,0.2) 0%, transparent 70%);
  bottom: -80px;
  right: -60px;
}

.founder-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.07;
}

.fgl-h, .fgl-v {
  position: absolute;
  background: rgba(255,255,255,0.6);
}

.fgl-h { height: 1px; left: 0; right: 0; }
.fgl-v { width: 1px; top: 0; bottom: 0; }

.fgl-h1 { top: 35%; }
.fgl-h2 { top: 65%; }
.fgl-v1 { left: 20%; }
.fgl-v2 { left: 50%; }
.fgl-v3 { left: 80%; }

.founder-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-label-on-dark {
  color: var(--color-primary);
}

.founder-headline {
  color: var(--color-white) !important;
  margin-bottom: 40px;
}

.founder-quote-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 48px 52px;
  border-left: 4px solid var(--color-primary);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
}

.founder-quote-decoration {
  color: var(--color-primary);
  opacity: 0.5;
  margin-bottom: 20px;
}

.founder-quote-text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 28px;
}

.founder-attribution {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}

.founder-attribution::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
}

/* Stats row inside quote card */
.founder-stats-row {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
}

.founder-stat {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.founder-stat-val {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.founder-stat-lbl {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
}

.founder-stat-divider {
  width: 1px;
  background-color: rgba(255,255,255,0.08);
  flex-shrink: 0;
  margin: 4px 0;
}

/* ════════════════════════════════════════════════════════════
   SECTION — WHY INFOMATRICES
   Dark comparison table
   ════════════════════════════════════════════════════════════ */
.idx-why-section {
  padding: 96px 0;
  background: linear-gradient(160deg, #0F172A 0%, #1E1B4B 50%, #0F172A 100%);
  position: relative;
  overflow: hidden;
}

.idx-why-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.idx-why-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  top: -150px;
  right: -100px;
}

.idx-why-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 70%);
  bottom: -80px;
  left: -60px;
}

.idx-why-header {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.idx-why-label {
  color: var(--color-primary) !important;
}

.idx-why-headline {
  color: var(--color-white) !important;
}

.idx-why-sub {
  color: rgba(255,255,255,0.55) !important;
  margin: 16px auto 0;
}

.idx-why-br { display: block; }

/* Comparison table */
.idx-compare-table {
  max-width: 820px;
  margin: 0 auto 48px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  position: relative;
  z-index: 1;
}

.idx-compare-head {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

.idx-compare-head .idx-compare-feature,
.idx-compare-head .idx-compare-them,
.idx-compare-head .idx-compare-us {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 20px;
}

.idx-compare-head .idx-compare-feature { color: rgba(255,255,255,0.4); }

.idx-compare-them-label { color: rgba(255,255,255,0.5); }

.idx-compare-us-label {
  color: var(--color-primary);
  margin-right: 8px;
}

.idx-compare-us-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(59,130,246,0.15);
  color: var(--color-primary);
  border-radius: 100px;
  padding: 2px 8px;
  border: 1px solid rgba(59,130,246,0.3);
}

.idx-compare-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.3fr;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s ease;
}

.idx-compare-row:not(.idx-compare-head):hover {
  background: rgba(255,255,255,0.03);
}

.idx-compare-row-last {
  border-bottom: none !important;
}

.idx-compare-feature,
.idx-compare-them,
.idx-compare-us {
  padding: 18px 20px;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.idx-compare-feature {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.idx-compare-them {
  color: rgba(255,255,255,0.4);
  border-right: 1px solid rgba(255,255,255,0.06);
}

.idx-compare-us {
  color: rgba(255,255,255,0.85);
  background: rgba(59,130,246,0.05);
  font-weight: 500;
}

.idx-cmp-bad {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(239,68,68,0.15);
  color: #F87171;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.idx-cmp-good {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(59,130,246,0.18);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.idx-why-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

.idx-why-cta .btn-primary {
  box-shadow: 0 0 32px rgba(59,130,246,0.35);
}

/* ════════════════════════════════════════════════════════════
   SECTION — WHO IT'S FOR
   Light background, card grid
   ════════════════════════════════════════════════════════════ */
.idx-for-section {
  padding: 96px 0;
  background-color: var(--color-light-gray);
}

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

.idx-for-header .section-sub {
  margin: 16px auto 0;
}

.idx-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.idx-for-card {
  background-color: var(--color-white);
  border-radius: 18px;
  padding: 32px 28px;
  border: 1.5px solid #E9EAEC;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.idx-for-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}

.idx-for-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.idx-icon-amber  { background: linear-gradient(135deg,#DBEAFE,#BFDBFE); color:#1D4ED8; box-shadow:0 4px 12px rgba(59,130,246,0.2);  }
.idx-icon-red    { background: linear-gradient(135deg,#FEE2E2,#FECACA); color:#B91C1C; box-shadow:0 4px 12px rgba(239,68,68,0.2);   }
.idx-icon-blue   { background: linear-gradient(135deg,#DBEAFE,#BFDBFE); color:#1D4ED8; box-shadow:0 4px 12px rgba(59,130,246,0.2);  }
.idx-icon-green  { background: linear-gradient(135deg,#D1FAE5,#A7F3D0); color:#065F46; box-shadow:0 4px 12px rgba(16,185,129,0.2);  }
.idx-icon-purple { background: linear-gradient(135deg,#EDE9FE,#DDD6FE); color:#6D28D9; box-shadow:0 4px 12px rgba(139,92,246,0.2);  }
.idx-icon-teal   { background: linear-gradient(135deg,#CCFBF1,#99F6E4); color:#0F766E; box-shadow:0 4px 12px rgba(20,184,166,0.2);  }

.idx-for-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.idx-for-text {
  font-size: 0.9375rem;
  color: var(--color-gray);
  line-height: 1.65;
}

.idx-for-cta {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.idx-for-cta-text {
  font-size: 1rem;
  color: var(--color-gray);
}

/* ════════════════════════════════════════════════════════════
   SECTION 5 — NEWSLETTER
   Vibrant gradient CTA
   ════════════════════════════════════════════════════════════ */
.newsletter-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 40%, #1D4ED8 100%);
  position: relative;
  overflow: hidden;
}

.newsletter-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.newsletter-decor-1 {
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.08);
  top: -120px;
  right: -80px;
}

.newsletter-decor-2 {
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.06);
  bottom: -60px;
  left: 10%;
}

.newsletter-decor-3 {
  width: 120px;
  height: 120px;
  border: 2px solid rgba(255,255,255,0.12);
  top: 30%;
  left: 5%;
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Envelope icon graphic */
.newsletter-icon-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  height: 80px;
}

.nig-outer {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.25);
  box-shadow: 0 0 0 12px rgba(255,255,255,0.06);
}

.nig-inner {
  color: var(--color-white);
}

.nig-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
}

.nig-dot-1 { width: 8px; height: 8px; top: 6px;  left: calc(50% + 40px); }
.nig-dot-2 { width: 6px; height: 6px; top: 50%;  left: calc(50% + 52px); }
.nig-dot-3 { width: 5px; height: 5px; top: 20%;  left: calc(50% - 56px); }

.newsletter-label {
  color: rgba(255,255,255,0.75) !important;
}

.newsletter-headline {
  color: var(--color-white) !important;
  margin-bottom: 14px;
}

.newsletter-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 420px;
  margin-inline: auto;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.newsletter-input-wrap {
  flex: 1;
  min-width: 220px;
  position: relative;
}

.newsletter-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.25);
  font-size: 0.9375rem;
  color: var(--color-white);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  transition: var(--transition);
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.55);
}

.newsletter-input:focus {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.22);
}

.newsletter-input.error {
  border-color: #FCA5A5;
}

.field-error {
  display: none;
  font-size: 0.8125rem;
  color: #FEE2E2;
  margin-top: 6px;
  text-align: left;
}

.field-error.visible { display: block; }

.newsletter-btn {
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 700;
  background: var(--color-white);
  color: #1D4ED8;
  border: 2px solid var(--color-white);
  transition: var(--transition);
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: transparent;
  color: var(--color-white);
}

/* Success state */
.newsletter-success {
  display: none;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.newsletter-success.visible { display: block; }

.newsletter-success-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--color-white);
}

.newsletter-success h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}

.newsletter-success p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}

/* Credibility row */
.newsletter-cred {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.newsletter-cred-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.62);
  font-weight: 500;
}

.newsletter-cred-sep {
  color: rgba(255,255,255,0.3);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */



@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 60px;
    text-align: center;
  }

  .hero-text-col {
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-trust-row {
    justify-content: center;
  }

  .hero-visual-col {
    height: 360px;
    display: flex;
    justify-content: center;
  }

  .hero-visual-main {
    right: auto;
    position: relative;
    top: auto;
  }

  .hero-visual-notif {
    display: none;
  }

  .hero-visual-pill {
    left: auto;
    bottom: -20px;
    top: auto;
  }

  .hero-ring-1,
  .hero-ring-2 {
    display: none;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-inline: auto;
  }

  .principles-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .founder-quote-card {
    padding: 36px 32px;
  }

  .idx-compare-table {
    font-size: 0.875rem;
  }

  .idx-compare-row {
    grid-template-columns: 0.8fr 1fr 1fr;
  }

  .idx-for-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 80px 0 0;
  }

  .hero-visual-col {
    height: 280px;
  }

  .hero-visual-main {
    width: 280px;
    padding: 16px;
  }

  .founder-stats-row {
    flex-direction: column;
    gap: 20px;
  }

  .founder-stat-divider {
    width: auto;
    height: 1px;
    margin: 0;
  }

  .founder-quote-card {
    padding: 28px 24px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input-wrap {
    min-width: 0;
  }

  .dashboard-mockup {
    margin: 0 20px 24px;
    height: 190px;
  }

  .dash-sidebar {
    width: 92px;
  }

  .product-card-body {
    padding: 24px 20px 16px;
  }

  .product-card-footer {
    padding: 0 20px 24px;
  }

  .idx-compare-row {
    grid-template-columns: 1fr;
  }

  .idx-compare-head .idx-compare-feature {
    display: none;
  }

  .idx-compare-feature {
    display: none;
  }

  .idx-compare-them,
  .idx-compare-us {
    border-right: none;
  }

  .idx-compare-row {
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .idx-for-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
  }
}
