/* ==========================================================================
   DEGI — Design & Creative Collaboration
   Pure CSS · No external animation libraries
   ========================================================================== */

:root {
  --bg:           #0A0A0F;
  --surface:      #111118;
  --violet:       #7C3AED;
  --cyan:         #06B6D4;
  --gold:         #F59E0B;
  --text:         #F8F8FF;
  --text-muted:   #8888AA;
  --border:       rgba(255, 255, 255, 0.08);
  --violet-dim:   rgba(124, 58, 237, 0.15);
  --cyan-dim:     rgba(6, 182, 212, 0.12);
  --glass-blur:   blur(12px);
  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h:        72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  overflow-x: hidden;
  min-height: 100vh;
}

body.has-custom-cursor { cursor: none; }
body.has-custom-cursor a,
body.has-custom-cursor button { cursor: none; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Custom cursor (snappy dot + soft ring trail) ── */
#cursor-dot,
#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100000;
  opacity: 0;
  will-change: transform;
}

#cursor-dot {
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 10px var(--violet), 0 0 20px rgba(6, 182, 212, 0.35);
  z-index: 100001;
  transition: width 0.2s, height 0.2s, margin 0.2s, background 0.2s, box-shadow 0.2s;
}

#cursor-ring {
  width: 32px;
  height: 32px;
  margin: -16px 0 0 -16px;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.45);
  background: rgba(124, 58, 237, 0.06);
  z-index: 100000;
  transition: width 0.25s, height 0.25s, margin 0.25s, border-color 0.25s, background 0.25s;
}

#cursor-dot.is-visible,
#cursor-ring.is-visible { opacity: 1; }

#cursor-dot.is-hovering {
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}

#cursor-ring.is-hovering {
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border-color: rgba(6, 182, 212, 0.55);
  background: rgba(6, 182, 212, 0.08);
}

@media (max-width: 768px), (pointer: coarse) {
  #cursor-dot,
  #cursor-ring { display: none !important; }
  body.has-custom-cursor { cursor: auto; }
  body.has-custom-cursor a,
  body.has-custom-cursor button { cursor: pointer; }
}

/* ── Section divider ── */
.section-divider {
  height: 1px;
  max-width: min(90%, 720px);
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--violet), var(--cyan), transparent);
  opacity: 0.7;
}

/* ── Labels & headings ── */
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-sub {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
}

.section-header { margin-bottom: 3.5rem; }
.section-header--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-header--center .section-sub { margin-left: auto; margin-right: auto; }

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* Scroll reveal */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Glass cards ── */
.glass-card {
  background: rgba(17, 17, 24, 0.65);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 4px 24px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), transparent 40%, rgba(6, 182, 212, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.02) 2px,
    rgba(255, 255, 255, 0.02) 4px
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 48px rgba(124, 58, 237, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.45);
  border-color: rgba(124, 58, 237, 0.25);
}

.glass-card:hover::after { opacity: 1; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 10px;
  border: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--violet), #6d28d9);
  color: var(--text);
  position: relative;
  z-index: 0;
}

.btn-glow {
  animation: breathe-glow 3s ease-in-out infinite;
}

@keyframes breathe-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.4), 0 0 40px rgba(124, 58, 237, 0.15); }
  50%      { box-shadow: 0 0 32px rgba(124, 58, 237, 0.65), 0 0 60px rgba(6, 182, 212, 0.2); }
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan), var(--violet));
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
}

.btn-primary:hover::before {
  opacity: 1;
  animation: neon-trace 1.5s linear infinite;
}

@keyframes neon-trace {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(124, 58, 237, 0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(124, 58, 237, 0.4);
  background: var(--violet-dim);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  width: 100%;
}

.btn-outline:hover {
  border-color: var(--violet);
  color: var(--violet);
  background: var(--violet-dim);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 13px; }
.btn-full { width: 100%; }

.gold { color: var(--gold); }

/* ═══════════════════════════════════════
   NAVIGATION — glassmorphism
═══════════════════════════════════════ */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 clamp(1rem, 3vw, 2rem);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 15, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(-12px);
  animation: nav-enter 0.7s var(--ease) 0.1s forwards;
}

@keyframes nav-enter {
  to { opacity: 1; transform: translateY(0); }
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon { display: flex; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-link:hover { color: var(--text); }
.nav-link--muted { font-size: 12px; }

.btn-nav-cta {
  padding: 0.55rem 1.25rem;
  font-size: 11px;
  background: var(--violet);
  color: var(--text);
  border-radius: 8px;
}

.btn-nav-cta:hover {
  background: #8b5cf6;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.45);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav.is-scrolled {
  background: rgba(10, 10, 15, 0.88);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

/* ═══════════════════════════════════════
   1. HERO
═══════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--nav-h) + 3rem) clamp(1.25rem, 4vw, 2.5rem) 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(ellipse 55% 45% at 15% 25%, rgba(124, 58, 237, 0.28), transparent 52%),
    radial-gradient(ellipse 48% 42% at 85% 15%, rgba(6, 182, 212, 0.2), transparent 48%),
    radial-gradient(ellipse 42% 38% at 55% 85%, rgba(124, 58, 237, 0.14), transparent 42%),
    radial-gradient(ellipse 30% 25% at 70% 60%, rgba(245, 158, 11, 0.06), transparent 50%);
  animation: mesh-shift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, black 15%, transparent 72%);
  pointer-events: none;
  opacity: 0.6;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orb-float 20s ease-in-out infinite alternate;
}

.hero-orb--violet {
  width: 420px;
  height: 420px;
  top: 5%;
  left: -8%;
  background: rgba(124, 58, 237, 0.2);
}

.hero-orb--cyan {
  width: 360px;
  height: 360px;
  bottom: 10%;
  right: -6%;
  background: rgba(6, 182, 212, 0.16);
  animation-delay: -8s;
}

@keyframes orb-float {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -24px) scale(1.08); }
}

@keyframes mesh-shift {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(3%, -2%) scale(1.05); }
  66%  { transform: translate(-2%, 3%) scale(0.98); }
  100% { transform: translate(2%, 1%) scale(1.02); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.35;
  box-shadow: 0 0 8px var(--cyan);
}

.particle:nth-child(1)  { left: 8%;  top: 15%; animation: drift 22s -2s infinite ease-in-out; }
.particle:nth-child(2)  { left: 22%; top: 70%; animation: drift 26s -5s infinite ease-in-out; background: var(--violet); box-shadow: 0 0 8px var(--violet); }
.particle:nth-child(3)  { left: 45%; top: 25%; animation: drift 20s -1s infinite ease-in-out; }
.particle:nth-child(4)  { left: 68%; top: 55%; animation: drift 24s -8s infinite ease-in-out; }
.particle:nth-child(5)  { left: 85%; top: 20%; animation: drift 28s -3s infinite ease-in-out; background: var(--violet); }
.particle:nth-child(6)  { left: 12%; top: 45%; animation: drift 25s -6s infinite ease-in-out; }
.particle:nth-child(7)  { left: 55%; top: 82%; animation: drift 21s -4s infinite ease-in-out; }
.particle:nth-child(8)  { left: 78%; top: 38%; animation: drift 27s -7s infinite ease-in-out; }
.particle:nth-child(9)  { left: 35%; top: 12%; animation: drift 23s -9s infinite ease-in-out; background: var(--gold); box-shadow: 0 0 6px var(--gold); opacity: 0.5; }
.particle:nth-child(10) { left: 92%; top: 65%; animation: drift 19s -2s infinite ease-in-out; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0); opacity: 0.25; }
  25%      { transform: translate(24px, -32px); opacity: 0.5; }
  50%      { transform: translate(-16px, 20px); opacity: 0.35; }
  75%      { transform: translate(12px, 28px); opacity: 0.45; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem 0.45rem 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: rgba(17, 17, 24, 0.7);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  opacity: 0;
  animation: fade-up 0.6s var(--ease) 0.2s forwards;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.65; transform: scale(0.92); }
}

.hero-badge-sep { opacity: 0.4; }

.hero-label { margin-bottom: 1.25rem; opacity: 0; animation: fade-up 0.6s var(--ease) 0.35s forwards; }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-line {
  display: block;
}

.hero-line--gradient,
.hero-line--gradient .word {
  background: linear-gradient(105deg, var(--violet) 0%, #a78bfa 40%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.1em);
  animation: word-reveal 0.65s var(--ease) forwards;
}

@keyframes word-reveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
  opacity: 0;
  animation: fade-up 0.7s var(--ease) 0.9s forwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up 0.7s var(--ease) 1.05s forwards;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 2.75rem;
  opacity: 0;
  animation: fade-up 0.7s var(--ease) 1.15s forwards;
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  width: 32px;
  height: 32px;
  margin-left: -8px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.hero-avatar:first-child { margin-left: 0; }

.hero-avatar--more {
  background: var(--surface);
  color: var(--text-muted);
  font-size: 11px;
  border-color: var(--border);
}

.hero-trust-text {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-trust-text strong { color: var(--text); font-weight: 600; }

.hero-mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 940px;
  perspective: 1200px;
  opacity: 0;
  animation: fade-up 0.9s var(--ease) 1.25s forwards;
  transform-style: preserve-3d;
}

.mockup-shine {
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(105deg, rgba(124, 58, 237, 0.5), transparent 40%, rgba(6, 182, 212, 0.4));
  opacity: 0.35;
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}

.hero-mockup {
  width: 100%;
  padding: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.35s var(--ease);
  will-change: transform;
}

.mockup-toolbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 15, 0.6);
  font-size: 11px;
}

.mockup-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #34d399;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-right: 0.5rem;
}

.mockup-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  animation: badge-pulse 1.5s ease-in-out infinite;
}

.mockup-tab {
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  color: var(--text-muted);
}

.mockup-tab--active {
  color: var(--text);
  background: var(--violet-dim);
  border: 1px solid rgba(124, 58, 237, 0.35);
}

.mockup-svg {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.mockup-frame {
  animation: frame-glow 4s ease-in-out infinite alternate;
}

@keyframes frame-glow {
  0%   { stroke-opacity: 0.5; }
  100% { stroke-opacity: 1; }
}

.mockup-chart .chart-bar {
  transform-origin: bottom center;
  animation: bar-rise 1.2s var(--ease) backwards;
}

.mockup-chart .chart-bar:nth-child(1) { animation-delay: 1.6s; }
.mockup-chart .chart-bar:nth-child(2) { animation-delay: 1.72s; }
.mockup-chart .chart-bar:nth-child(3) { animation-delay: 1.84s; }
.mockup-chart .chart-bar:nth-child(4) { animation-delay: 1.96s; }
.mockup-chart .chart-bar:nth-child(5) { animation-delay: 2.08s; }

@keyframes bar-rise {
  from { transform: scaleY(0); opacity: 0; }
  to   { transform: scaleY(1); opacity: 1; }
}

.mockup-cursor {
  animation: cursor-bob 3s ease-in-out infinite;
}

.mockup-cursor--2 { animation-delay: -1.2s; }

@keyframes cursor-bob {
  0%, 100% { transform: translate(0, 0); opacity: 0.9; }
  50%      { transform: translate(4px, -6px); opacity: 1; }
}

.hero-float {
  position: absolute;
  z-index: 2;
  padding: 0.85rem 1.1rem;
  min-width: 140px;
  animation: float-drift 6s ease-in-out infinite alternate;
}

.hero-float--tl {
  top: 8%;
  left: -2%;
  animation-delay: 0s;
}

.hero-float--br {
  bottom: 12%;
  right: -2%;
  animation-delay: -3s;
}

@keyframes float-drift {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.hero-float-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.hero-float-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.hero-float-value--live {
  font-size: 1.25rem;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-float-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  color: var(--text-muted);
  opacity: 0;
  animation: fade-up 0.7s var(--ease) 1.5s forwards;
  transition: color 0.2s;
}

.hero-scroll-hint:hover { color: var(--text); }

.hero-scroll-line {
  width: 22px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero-scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--violet);
  border-radius: 2px;
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(10px); opacity: 0.35; }
}

.hero-scroll-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

/* ═══════════════════════════════════════
   2. SOCIAL PROOF
═══════════════════════════════════════ */
.social-proof-section {
  padding: 4rem clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
}

.social-proof-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.social-proof-label strong { color: var(--text); font-weight: 600; }

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
  margin-bottom: 1.75rem;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.25s;
}

.logo-item svg {
  width: 28px;
  height: 28px;
  opacity: 0.7;
}

.logo-item:hover { color: var(--text); }

.ratings-line {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════
   STATS
═══════════════════════════════════════ */
.stats-section {
  padding: 3rem clamp(1.25rem, 4vw, 2.5rem) 4rem;
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--violet);
  margin-left: 0.1rem;
}

.stat-item .stat-num,
.stat-item .stat-suffix { display: inline; }

.stat-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════
   3. FEATURES — Bento
═══════════════════════════════════════ */
.features-section {
  padding: 6rem 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1.25rem;
}

.bento-item {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bento-item--wide { grid-column: span 2; }
.bento-item--tall { grid-row: span 2; }

.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--violet);
  background: var(--violet-dim);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.2);
  margin-bottom: 0.25rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.feature-badge {
  align-self: flex-start;
  margin-top: auto;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

/* ═══════════════════════════════════════
   4. HOW IT WORKS — Timeline
═══════════════════════════════════════ */
.how-section {
  padding: 6rem 0;
  background: rgba(17, 17, 24, 0.35);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  list-style: none;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  opacity: 0.35;
}

.timeline-step {
  text-align: center;
  padding: 0 1rem;
}

.step-circle {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  position: relative;
  z-index: 1;
}

.step-circle::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  z-index: -1;
}

.step-circle::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--surface);
  z-index: -1;
}

.step-circle span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.timeline-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.timeline-step p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   5. TESTIMONIALS
═══════════════════════════════════════ */
.testimonials-section {
  padding: 6rem 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testi-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testi-card--highlight {
  border-color: rgba(124, 58, 237, 0.35);
  background: rgba(124, 58, 237, 0.08);
}

.testi-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}

.testi-quote {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  display: block;
}

.testi-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   6. PRICING
═══════════════════════════════════════ */
.pricing-section {
  padding: 6rem 0;
}

.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
}

.toggle-opt { transition: color 0.2s; }
.toggle-opt--active { color: var(--text); font-weight: 500; }

.toggle-track {
  width: 44px;
  height: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  position: relative;
  border: 1px solid var(--border);
}

.toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--violet);
  transition: transform 0.3s var(--ease);
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
}

.pricing-toggle[aria-pressed="true"] .toggle-thumb {
  transform: translateX(20px);
}

.save-tag {
  font-style: normal;
  font-size: 11px;
  color: var(--gold);
  margin-left: 0.25rem;
}

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

.pricing-card {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-card--featured {
  border-color: rgba(124, 58, 237, 0.55);
  box-shadow:
    0 0 0 1px rgba(124, 58, 237, 0.4),
    0 0 40px rgba(124, 58, 237, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: featured-pulse 4s ease-in-out infinite;
}

@keyframes featured-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.4), 0 0 32px rgba(124, 58, 237, 0.2), inset 0 1px 0 rgba(255,255,255,0.08); }
  50%      { box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.6), 0 0 48px rgba(124, 58, 237, 0.35), inset 0 1px 0 rgba(255,255,255,0.1); }
}

.popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  color: var(--text);
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.plan-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 0.5rem 0 1rem;
}

.plan-features li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--violet);
  font-size: 12px;
}

/* ═══════════════════════════════════════
   7. CTA BANNER
═══════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 6rem clamp(1.25rem, 4vw, 2.5rem);
  overflow: hidden;
}

.cta-mesh {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35) 0%, rgba(6, 182, 212, 0.2) 50%, rgba(124, 58, 237, 0.25) 100%);
  animation: mesh-shift 14s ease-in-out infinite alternate;
}

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

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-sub {
  color: rgba(248, 248, 255, 0.85);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════
   8. FOOTER
═══════════════════════════════════════ */
.site-footer {
  padding: 4rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 260px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

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

/* ── Demo section ── */
.demo-section {
  padding: 4rem clamp(1.25rem, 4vw, 2.5rem) 6rem;
  max-width: 520px;
  margin: 0 auto;
}

.demo-panel {
  padding: 2.5rem;
  text-align: center;
}

.demo-panel h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.demo-panel > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.demo-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.demo-form label span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.demo-form input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.demo-form input:focus {
  border-color: rgba(124, 58, 237, 0.5);
}

.demo-success {
  color: var(--cyan);
  font-weight: 500;
  margin-top: 1rem;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-item--wide { grid-column: span 2; }
  .bento-item--tall { grid-row: span 1; }
  .timeline { grid-template-columns: 1fr; gap: 3rem; }
  .timeline::before { display: none; }
  .pricing-grid,
  .testi-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-float--tl { left: 0; top: 4%; }
  .hero-float--br { right: 0; bottom: 6%; }
}

@media (max-width: 768px) {
  .hero-float { display: none; }
  .hero-mockup-wrap { max-width: 100%; }
  .mockup-toolbar { flex-wrap: wrap; font-size: 10px; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    width: min(85%, 320px);
    height: calc(100vh - var(--nav-h));
    height: calc(100dvh - var(--nav-h));
    flex-direction: column;
    align-items: stretch;
    padding: 2rem;
    gap: 1.25rem;
    background: rgba(17, 17, 24, 0.97);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }

  .nav-links.is-open { transform: translateX(0); }

  .btn-nav-cta { text-align: center; margin-top: 0.5rem; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-item--wide { grid-column: span 1; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .stats-grid { grid-template-columns: 1fr; }
}
