﻿/* ═══════════════════════════════════════════
   SECTIONS.CSS — Per-section layout & styles
   ═══════════════════════════════════════════ */

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background: radial-gradient(ellipse 80% 80% at 50% -20%, rgba(107,62,232,0.22) 0%, transparent 60%),
              radial-gradient(ellipse 60% 60% at 80% 50%, rgba(0,200,215,0.12) 0%, transparent 50%),
              var(--bg-void);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100vh;
  padding-top: 96px;
  gap: var(--space-12);
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  max-width: 560px;
}

.hero-eyebrow {
  align-self: flex-start;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text-primary);
}

.hero-headline .highlight {
  background-image: linear-gradient(135deg, #00C8D7 0%, #7B4FFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-subheadline {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: var(--text-muted);
  flex-wrap: wrap;
}

.trust-divider {
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.18);
}

/* ─── Hero Announcement Badge ─── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 5px 14px 5px 5px;
  background: rgba(17, 19, 24, 0.90);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(123, 79, 255, 0.28);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  box-shadow: 0 2px 16px rgba(0,0,0,0.40), 0 0 0 1px rgba(0,200,215,0.05), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: all var(--duration-base) var(--ease-out);
  align-self: flex-start;
}

.hero-badge:hover {
  border-color: rgba(123,79,255,0.55);
  box-shadow: 0 4px 24px rgba(123,79,255,0.20), 0 0 0 1px rgba(0,200,215,0.08);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.hero-badge-label {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-cyan));
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
  flex-shrink: 0;
}

.hero-badge svg {
  flex-shrink: 0;
  opacity: 0.45;
  transition: opacity var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
}

.hero-badge:hover svg {
  opacity: 1;
  transform: translateX(3px);
}

/* ─── Hero Geometric Line-Art Background ─── */
.hero-geo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-geo-bg svg {
  width: 100%;
  height: 100%;
}

.hero-right {
  position: relative;
  height: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-canvas-wrap {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: visible;
}

/* Data chip positions */
.data-chip--ytd  { top: 15%; right: -20px; animation-delay: 0s; }
.data-chip--aum  { top: 50%; right: -30px; animation-delay: -1.5s; }
.data-chip--ai   { bottom: 20%; left: -20px; animation-delay: -3s; }

/* ─── TICKER STRIP ─── */
#ticker-section {
  padding: 16px 0;
  background: rgba(10,11,18,0.96);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  position: relative;
}

#ticker-section::before,
#ticker-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

#ticker-section::before {
  left: 0;
  background: linear-gradient(90deg, rgba(10,11,18,1), transparent);
}

#ticker-section::after {
  right: 0;
  background: linear-gradient(-90deg, rgba(10,11,18,1), transparent);
}

.ticker-track {
  display: flex;
  gap: var(--space-12);
  white-space: nowrap;
  will-change: transform;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.ticker-symbol {
  color: var(--text-muted);
  font-weight: 500;
}

.ticker-price {
  color: var(--text-primary);
  font-weight: 600;
}

.ticker-change {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.ticker-change.up {
  color: var(--accent-green);
  background: rgba(0,201,138,0.1);
}

.ticker-change.down {
  color: var(--accent-pink);
  background: rgba(212,49,138,0.08);
}

/* ─── STATS ─── */
#stats {
  padding: var(--space-20) 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: '';
  position: relative;
}

.stats-grid .stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(0,0,0,0.08);
}

.stat-card { position: relative; }

/* ─── FEATURES ─── */
/* ─── FEATURES — Card Scrollytelling ─── */
#features {
  position: relative;
  background: var(--bg-void);
}

/* ─── FEATURES BENTO GRID ─── */
#features {
  padding: var(--space-32) 0;
  background: var(--bg-void);
  position: relative;
}

.features-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto var(--space-16);
}

/* Bento grid: [tall left] [sm] [sm] / [————wide bottom right————] */
.bento-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  grid-template-rows: 300px 220px;
  gap: var(--space-5);
}

/* ─── Bento card base ─── */
.bento-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  transition: box-shadow var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
}

.bento-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.50);
  border-color: rgba(107,62,232,0.18);
  transform: translateY(-2px);
}

/* ─── Grid placement ─── */
.bento-grid > .bento-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
  padding: var(--space-10);
}

.bento-grid > .bento-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.bento-grid > .bento-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

.bento-grid > .bento-card:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2;
  flex-direction: row;
  align-items: center;
  gap: var(--space-10);
}

/* ─── Card internals ─── */
.bento-card-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}

.bento-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-violet);
  margin: 0;
}

.bento-eyebrow--cyan  { color: var(--accent-cyan); }
.bento-eyebrow--green { color: var(--accent-green); }

.bento-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.15;
  margin: 0;
}

.bento-grid > .bento-card:nth-child(1) .bento-title {
  font-size: clamp(1.55rem, 2vw, 2.1rem);
}

.bento-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.72;
  margin: 0;
}

.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
  padding: 0;
  list-style: none;
}

.bento-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-violet);
  background: rgba(107,62,232,0.06);
  border: 1px solid rgba(107,62,232,0.13);
  border-radius: var(--radius-full);
  padding: 4px 12px;
}

/* ─── Illustrations ─── */
.bento-card-illo {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-shrink: 0;
}

.bento-card-illo svg {
  max-height: 88px;
  width: auto;
  opacity: 0.9;
}

.bento-card-illo--ai svg {
  opacity: 1;
  filter: drop-shadow(0 0 16px rgba(123,79,255,0.40)) drop-shadow(0 0 6px rgba(0,200,215,0.30));
}

/* Tall card: illustration centered, given more room */
.bento-grid > .bento-card:nth-child(1) .bento-card-illo {
  justify-content: center;
  align-items: center;
  padding-top: var(--space-4);
  flex: 1;
}

.bento-grid > .bento-card:nth-child(1) .bento-card-illo svg {
  max-height: 185px;
  width: 100%;
  max-width: 210px;
}

/* Wide card: illo right-aligned, fixed size */
.bento-grid > .bento-card:nth-child(4) .bento-card-illo svg {
  max-height: 120px;
  min-width: 120px;
}

/* ─── Mobile: stack single column ─── */
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: var(--space-4);
  }

  .bento-grid > .bento-card:nth-child(1),
  .bento-grid > .bento-card:nth-child(2),
  .bento-grid > .bento-card:nth-child(3),
  .bento-grid > .bento-card:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
    min-height: 180px;
  }

  .bento-grid > .bento-card:nth-child(1) { min-height: 320px; }
  .bento-grid > .bento-card:nth-child(4) { flex-direction: column; }

  .bento-card-illo svg { max-height: 80px; }

  .bento-grid > .bento-card:nth-child(1) .bento-card-illo svg {
    max-height: 130px;
  }
}

/* ─── DASHBOARD SHOWCASE ─── */
#product-preview {
  padding: var(--space-32) 0;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(107,62,232,0.06) 0%, transparent 70%);
}

.preview-header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.preview-header .section-subheading { margin: 0 auto; }

/* Sliding utility ticker */
.dash-utility-ticker {
  overflow: hidden;
  padding: var(--space-4) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin: var(--space-12) 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.dash-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: dash-ticker 28s linear infinite;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  white-space: nowrap;
}

.tick-sep { color: var(--accent-cyan); opacity: 0.7; }

@keyframes dash-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Annotated laptop wrapper */
.dash-annotated-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.dash-annotated {
  display: grid;
  grid-template-columns: 230px 1fr 230px;
  gap: 0 var(--space-6);
  align-items: center;
}

/* Annotation columns */
.dash-anno-col {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
  gap: var(--space-10);
}

.dash-anno-col--left .dash-anno {
  flex-direction: row;
  text-align: right;
}

.dash-anno-col--right .dash-anno {
  flex-direction: row;
  text-align: left;
}

/* Individual annotation item */
.dash-anno {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  opacity: 0;
}

.dash-anno-content {
  flex: 1;
}

.dash-anno-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-violet);
  margin-bottom: var(--space-1);
}
.dash-anno-num--cyan  { color: var(--accent-cyan); }
.dash-anno-num--green { color: var(--accent-green); }

.dash-anno-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.dash-anno-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Connector: line + dot */
.dash-anno-connector {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0;
}

.dash-anno-col--left .dash-anno-connector {
  flex-direction: row; /* line → dot (dot points toward laptop) */
}
.dash-anno-col--right .dash-anno-connector {
  flex-direction: row; /* dot → line */
}

.dash-anno-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, rgba(123,79,255,0.15), rgba(123,79,255,0.55));
}
.dash-anno-line--cyan  { background: linear-gradient(90deg, rgba(0,200,215,0.15), rgba(0,200,215,0.55)); }
.dash-anno-line--green { background: linear-gradient(90deg, rgba(0,201,138,0.15), rgba(0,201,138,0.55)); }

.dash-anno-col--right .dash-anno-line {
  background: linear-gradient(90deg, rgba(123,79,255,0.55), rgba(123,79,255,0.15));
}
.dash-anno-col--right .dash-anno-line--cyan {
  background: linear-gradient(90deg, rgba(0,200,215,0.55), rgba(0,200,215,0.15));
}
.dash-anno-col--right .dash-anno-line--green {
  background: linear-gradient(90deg, rgba(0,201,138,0.55), rgba(0,201,138,0.15));
}

.dash-anno-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-violet);
  box-shadow: 0 0 10px rgba(123,79,255,0.7);
  flex-shrink: 0;
}
.dash-anno-dot--cyan  { background: var(--accent-cyan);  box-shadow: 0 0 10px rgba(0,200,215,0.7); }
.dash-anno-dot--green { background: var(--accent-green); box-shadow: 0 0 10px rgba(0,201,138,0.7); }

/* Laptop image — center column */
.dash-laptop-center {
  position: relative;
  padding: var(--space-4) 0;
}

.dash-laptop-img {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  box-shadow: none;
  will-change: transform;
  transform-origin: center center;
}

.dash-laptop-glow {
  position: absolute;
  inset: 5% -15% -25% -15%;
  background: radial-gradient(ellipse at 50% 80%, rgba(107,62,232,0.30) 0%, rgba(0,200,215,0.08) 45%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .dash-annotated {
    grid-template-columns: 180px 1fr 180px;
    gap: 0 var(--space-4);
  }
  .dash-anno-title { font-size: 0.78rem; }
  .dash-anno-desc  { font-size: 0.68rem; }
  .dash-anno-line  { width: 22px; }
}

@media (max-width: 768px) {
  .dash-annotated {
    grid-template-columns: 1fr;
    gap: var(--space-8) 0;
  }
  .dash-anno-col { flex-direction: row; flex-wrap: wrap; gap: var(--space-4); justify-content: center; }
  .dash-anno-col--left .dash-anno,
  .dash-anno-col--right .dash-anno { flex-direction: column; text-align: center; }
  .dash-anno-connector { display: none; }
  .dash-anno { opacity: 1 !important; transform: none !important; }
  .dash-laptop-center { order: -1; }
}

/* ─── MOBILE APP SECTION ─── */
#mobile-app {
  padding: var(--space-32) 0;
  overflow: hidden;
  background: radial-gradient(ellipse 60% 55% at 85% 50%, rgba(0,200,215,0.06) 0%, transparent 65%);
}

.mobile-showcase {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

.mobile-showcase-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.mobile-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.mobile-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.mobile-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(0,200,215,0.10);
  border: 1px solid rgba(0,200,215,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-cyan);
}

.mobile-feature-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.mobile-feature-item p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}

/* Phone mockup visual */
.mobile-showcase-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.phone-mockup-img {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  box-shadow: none;
  will-change: transform;
}

.phone-glow {
  position: absolute;
  inset: -25% -35%;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,200,215,0.20) 0%, rgba(107,62,232,0.10) 40%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  animation: phone-glow-pulse 4s ease-in-out infinite;
}

@keyframes phone-glow-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.08); }
}

/* Floating stat chips on phone */
.phone-stat-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 14px;
  background: rgba(15,17,22,0.82);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  animation: chip-float 4s ease-in-out infinite;
}

.phone-stat-chip--top    { top: 12%;  right: -24%; }
.phone-stat-chip--bottom { bottom: 16%; left: -22%; animation-delay: -2s; }

.phone-stat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .dash-showcase {
    grid-template-columns: 1fr;
  }
  .dash-laptop-wrap { order: -1; }
  .dash-utils .dash-util { opacity: 1; transform: none; }
}

@media (max-width: 768px) {
  .mobile-showcase {
    grid-template-columns: 1fr;
  }
  .mobile-showcase-visual { margin-top: var(--space-8); }
  .phone-mockup-wrap { width: 58%; }
  .phone-stat-chip--top    { right: -10%; }
  .phone-stat-chip--bottom { left: -10%; }
}

/* ─── HOW IT WORKS ─── */
#how-it-works {
  background: var(--bg-surface);
  overflow: hidden;
}

.how-header {
  text-align: center;
  padding: var(--space-32) 0 var(--space-20);
}

.how-header .section-subheading {
  max-width: 560px;
  margin: 0 auto;
}

/* ── Slideshow steps ── */
.hiw-step {
  padding: var(--space-6) 0;
  position: relative;
  overflow: hidden;
}

.hiw-step:nth-child(even) {
  background: rgba(255, 255, 255, 0.012);
}

/* watermark step number */
.hiw-step::before {
  content: attr(data-step);
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(180px, 22vw, 320px);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.018);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  top: 50%;
  transform: translateY(-50%);
}

.hiw-step--left::before { right: -20px; }
.hiw-step--right::before { left: -20px; }

.hiw-step-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  min-height: 200px;
}

/* ── Image side ── */
.hiw-visual {
  position: relative;
}

.hiw-img-wrap {
  position: relative;
}

.hiw-img {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  box-shadow: none;
}

.hiw-visual-glow {
  position: absolute;
  inset: -40%;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.22;
  filter: blur(80px);
  z-index: -1;
}

.hiw-visual-glow--violet { background: var(--accent-violet); }
.hiw-visual-glow--cyan   { background: var(--accent-cyan); }
.hiw-visual-glow--green  { background: var(--accent-green); }

/* ── Text side ── */
.hiw-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.hiw-step-num {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-violet);
}

.hiw-step-num--cyan  { color: var(--accent-cyan); }
.hiw-step-num--green { color: var(--accent-green); }

.hiw-step-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 3.2vw, var(--text-5xl));
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.1;
}

.hiw-step-desc {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 440px;
}

.hiw-step-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.hiw-step-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.hiw-step-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-violet);
  flex-shrink: 0;
}

.hiw-step-features--cyan  li::before { background: var(--accent-cyan); }
.hiw-step-features--green li::before { background: var(--accent-green); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hiw-step-inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
    min-height: unset;
  }
  .hiw-step--right .hiw-visual { order: -1; }
  .how-header { padding: var(--space-20) 0 var(--space-12); }
  .hiw-step { padding: var(--space-14) 0; }
  .hiw-step-desc { max-width: unset; }
}

@media (max-width: 480px) {
  .hiw-step-title { font-size: var(--text-2xl); }
  .hiw-step::before { display: none; }
}
/* ─── TESTIMONIALS ─── */
#testimonials {
  padding: var(--space-32) 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* ─── PRICING ─── */
#pricing {
  padding: var(--space-32) 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(107,62,232,0.05) 0%, transparent 60%);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.billing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.billing-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 500;
}

.billing-label.active { color: var(--text-primary); }

.toggle-track {
  width: 52px;
  height: 28px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  cursor: pointer;
  transition: background var(--duration-base) var(--ease-out);
}

.toggle-track.on {
  background: rgba(0,240,255,0.2);
  border-color: rgba(0,240,255,0.3);
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: all var(--duration-base) var(--ease-out);
}

.toggle-track.on .toggle-thumb {
  transform: translateX(24px);
  background: var(--accent-cyan);
}

.save-badge {
  font-size: var(--text-xs);
  color: var(--accent-green);
  background: rgba(0,201,138,0.1);
  border: 1px solid rgba(0,201,138,0.2);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: stretch;
}

/* ─── CTA SECTION ─── */
#cta-section {
  padding: var(--space-32) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

#cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text-primary);
  max-width: 720px;
}

.cta-sub {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* ─── FOOTER ─── */
#footer {
  padding: var(--space-20) 0 var(--space-8);
  background: var(--bg-surface);
  border-top: 1px solid var(--border-glass);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer-logo-img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: var(--space-4);
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--duration-fast);
}

.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-glass);
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer-legal {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 600px;
}

.footer-social {
  display: flex;
  gap: var(--space-4);
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--duration-fast);
}

.social-link:hover {
  background: rgba(0,200,215,0.12);
  border-color: rgba(0,240,255,0.2);
  color: var(--accent-cyan);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 120px; }
  .hero-right { min-height: 400px; }
  .hero-canvas-wrap { height: 400px; }

  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-layout { grid-template-columns: 1fr; }
  .db-sidebar { display: none; }
}

@media (max-width: 768px) {
  .hero-headline { font-size: 2.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-connector { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .db-row { grid-template-columns: 1fr; }
}










