/* ═══════════════════════════════════════════════════════════
   Bit & Bites — Design System v3
   Inter · Deep Navy · Vivid Violet · Warm Coral
   https://bitandbites.cloud
═══════════════════════════════════════════════════════════ */

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display',
               'SF Pro Text', 'Helvetica Neue', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:            #FAFAFE;
  --bg-2:          #F3F2FF;
  --bg-3:          #EBE9FC;
  --surface:       #FFFFFF;
  --surface-2:     #F8F7FF;

  /* Text */
  --white:         #FFFFFF;
  --white-dim:     #F8F7FF;
  --text:          #0A0818;
  --text-dim:      #38345E;
  --text-faint:    #7870A0;
  --text-dark:     #0A0818;
  --text-mid:      #1C1834;
  --text-muted:    #7870A0;

  /* Primary — Vivid Violet */
  --purple:        #4F18D0;
  --purple-l:      #6B28F0;
  --purple-xl:     #9D6BFA;
  --purple-2xl:    #C4A8FF;

  /* Accent — Warm Coral/Orange */
  --orange:        #E8500A;
  --orange-l:      #F96B20;
  --gold:          #D97706;
  --green:         #059669;

  /* Borders / Lines */
  --border:        rgba(10,8,24,0.07);
  --border-m:      rgba(79,24,208,0.18);

  /* Gradients */
  --grad:          linear-gradient(135deg, #4F18D0 0%, #F96B20 100%);
  --grad-soft:     linear-gradient(135deg, rgba(79,24,208,0.07) 0%, rgba(249,107,32,0.05) 100%);
  --grad-r:        linear-gradient(135deg, #F96B20 0%, #4F18D0 100%);
  --grad-blue:     linear-gradient(135deg, #4F18D0 0%, #6B28F0 50%, #9D6BFA 100%);
  --grad-ani:      linear-gradient(135deg, #4F18D0, #6B28F0, #F96B20, #4F18D0);

  /* Tints */
  --violet-tint:   #EDE9FE;
  --coral-tint:    #FFF4ED;
  --green-tint:    #ECFDF5;
  --gold-tint:     #FFFBEB;

  /* Shadows */
  --shadow:        0 2px 16px rgba(10,8,24,0.06), 0 1px 4px rgba(10,8,24,0.04);
  --shadow-lg:     0 24px 64px rgba(10,8,24,0.11), 0 8px 24px rgba(10,8,24,0.06);
  --shadow-violet: 0 8px 32px rgba(79,24,208,0.28), 0 2px 8px rgba(79,24,208,0.14);
  --shadow-coral:  0 8px 32px rgba(232,80,10,0.26);
  --shadow-glow:   0 0 0 4px rgba(79,24,208,0.12);

  --radius:        16px;
  --radius-lg:     22px;
  --radius-xl:     30px;
  --pill:          999px;

  --transition:    0.25s cubic-bezier(0.4,0,0.2,1);
  --spring:        0.5s cubic-bezier(0.34,1.56,0.64,1);
}

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.12;
  color: var(--text-dark);
  font-feature-settings: 'cv01' 1, 'cv02' 1, 'cv03' 1, 'cv04' 1, 'ss01' 1;
}
p {
  line-height: 1.72;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

/* ─── Layout ─────────────────────────────────────────────── */
.container        { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container--wide  { max-width: 1400px; }
.container--narrow{ max-width: 720px; }

/* ─── Utilities ─────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-l);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--grad);
  border-radius: 2px;
  flex-shrink: 0;
}
.eyebrow--center { display: flex; justify-content: center; }

.grad-text {
  background: var(--grad-ani);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientPan 6s ease infinite;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 8px;
  background: var(--bg-2);
  color: var(--text-faint);
  border: 1px solid var(--border);
  letter-spacing: 0.01em;
}
.tag--purple { background: var(--violet-tint); color: var(--purple-l);  border-color: rgba(79,24,208,0.18); }
.tag--green  { background: var(--green-tint);  color: #059669;          border-color: rgba(5,150,105,0.2); }
.tag--gold   { background: var(--gold-tint);   color: #D97706;          border-color: rgba(217,119,6,0.2); }
.tag--coral  { background: var(--coral-tint);  color: var(--orange);    border-color: rgba(232,80,10,0.18); }

/* ─── Scroll Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
              transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.09s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.27s; }
.reveal-delay-4 { transition-delay: 0.38s; }

/* ─── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow var(--transition),
              border-color var(--transition);
  position: relative;
}
.card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px) scale(1.005);
  box-shadow: var(--shadow-lg);
  border-color: rgba(79,24,208,0.16);
}
.card:hover::before { opacity: 1; }
.card--flush { padding: 0; }
.card--pad   { padding: clamp(20px,3vw,32px); }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  font-family: inherit;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow var(--transition),
              opacity var(--transition),
              background var(--transition);
}
.btn:active { transform: scale(0.96) !important; }

/* Shimmer sweep for all filled buttons */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
  pointer-events: none;
  border-radius: inherit;
}
.btn:hover::after { transform: translateX(100%); }

/* Primary */
.btn--primary {
  background: var(--purple);
  color: #fff;
  box-shadow: var(--shadow-violet);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.01);
  background: var(--purple-l);
  box-shadow: 0 12px 40px rgba(79,24,208,0.36), 0 4px 12px rgba(79,24,208,0.18);
}

/* Secondary */
.btn--secondary {
  background: var(--surface);
  color: var(--text-dim);
  border: 1.5px solid var(--border);
  box-shadow: 0 1px 6px rgba(10,8,24,0.05);
}
.btn--secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(79,24,208,0.32);
  color: var(--purple);
  box-shadow: 0 6px 20px rgba(79,24,208,0.10);
  background: var(--violet-tint);
}

/* Ghost */
.btn--ghost {
  background: var(--violet-tint);
  color: var(--purple);
  border: 1.5px solid rgba(79,24,208,0.20);
  font-weight: 700;
}
.btn--ghost:hover {
  transform: translateY(-2px);
  background: var(--bg-3);
  border-color: rgba(79,24,208,0.36);
  box-shadow: 0 4px 16px rgba(79,24,208,0.12);
}

/* Coral */
.btn--coral {
  background: var(--orange-l);
  color: #fff;
  box-shadow: var(--shadow-coral);
}
.btn--coral:hover {
  transform: translateY(-3px) scale(1.01);
  opacity: 0.9;
  box-shadow: 0 12px 40px rgba(232,80,10,0.32);
}

/* Small */
.btn--sm { font-size: 13px; font-weight: 700; padding: 9px 18px; border-radius: 12px; }

/* ─── Primary CTA Button ─────────────────────────────────── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 10px 22px;
  border-radius: var(--pill);
  background: var(--purple);
  color: #fff;
  white-space: nowrap;
  box-shadow: var(--shadow-violet);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow var(--transition),
              background var(--transition);
}
/* Animated gradient layer on hover */
.btn-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--purple-l) 0%, var(--orange-l) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}
/* Shimmer sweep */
.btn-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,0.28) 50%, transparent 75%);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
  border-radius: inherit;
}
.btn-cta > * { position: relative; z-index: 1; }
.btn-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(79,24,208,0.38), 0 2px 8px rgba(79,24,208,0.18);
}
.btn-cta:hover::before { opacity: 1; }
.btn-cta:hover::after  { transform: translateX(100%); }
.btn-cta:active        { transform: scale(0.97) !important; }

/* Large CTA variant */
.btn-cta--lg {
  font-size: 15px;
  padding: 14px 30px;
}

/* ─── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(250,250,254,0.92);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  box-shadow: 0 1px 0 rgba(10,8,24,0.07), 0 4px 24px rgba(10,8,24,0.04);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: 16px;
}
.nav__logo img { width: 34px; height: 34px; object-fit: contain; }
.nav__logo-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}
.nav__logo-name span { color: var(--orange-l); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav__links a {
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: var(--pill);
  color: var(--text-faint);
  transition: color var(--transition), background var(--transition), transform 0.18s;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.nav__links a:hover  { color: var(--purple); background: var(--violet-tint); transform: translateY(-1px); }
.nav__links a.active { color: var(--purple); background: var(--violet-tint); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__lang {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-faint);
  padding: 6px 11px;
  border: 1.5px solid var(--border);
  border-radius: var(--pill);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.nav__lang:hover { color: var(--text-dim); border-color: rgba(79,24,208,0.28); background: var(--bg-2); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  background: none;
  border: none;
  border-radius: 10px;
  transition: background var(--transition);
}
.nav__hamburger:hover { background: var(--violet-tint); }
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(250,250,254,0.97);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  padding: 16px 20px 20px;
  border-bottom: 1.5px solid var(--border);
  box-shadow: 0 12px 36px rgba(10,8,24,0.09);
  z-index: 99;
  flex-direction: column;
  gap: 3px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 15px;
  font-weight: 600;
  padding: 11px 14px;
  border-radius: var(--radius);
  color: var(--text-dim);
  transition: var(--transition);
  letter-spacing: -0.01em;
}
.nav__mobile a:hover  { color: var(--purple); background: var(--violet-tint); }
.nav__mobile a.active { color: var(--purple); background: var(--violet-tint); }
.nav__mobile .btn-cta { margin-top: 10px; justify-content: center; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: #08061A;
  border-top: none;
  padding: 72px 24px 36px;
}
.footer__inner { max-width: 1200px; margin: 0 auto; }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer__brand-logo img { width: 30px; height: 30px; object-fit: contain; }
.footer__brand-logo-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
}
.footer__brand-logo-name span { color: var(--orange-l); }
.footer__tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.40);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer__social a:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.footer__col-title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: -0.005em;
}
.footer__links a:hover { color: rgba(255,255,255,0.88); transform: translateX(3px); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: 12.5px; color: rgba(255,255,255,0.26); letter-spacing: -0.005em; }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.26);
  transition: color var(--transition);
}
.footer__legal a:hover { color: rgba(255,255,255,0.60); }

/* ─── Section CTA Band ──────────────────────────────────── */
.cta-section {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.cta-section__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 50%, rgba(79,24,208,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 35% 35% at 80% 50%, rgba(249,107,32,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-section h2 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.06;
  margin-bottom: 18px;
  color: var(--text-dark);
}
.cta-section p {
  font-size: 17px;
  color: var(--text-dim);
  line-height: 1.72;
  margin-bottom: 40px;
}
.cta-section__buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── Page Hero ──────────────────────────────────────────── */
.page-hero {
  padding: 152px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.page-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(79,24,208,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 45% 35% at 20% 100%, rgba(249,107,32,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,8,24,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,8,24,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 30%, transparent 80%);
  pointer-events: none;
}
.page-hero__content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple-l);
  padding: 5px 16px;
  border: 1.5px solid rgba(79,24,208,0.22);
  border-radius: var(--pill);
  background: var(--violet-tint);
  margin-bottom: 24px;
  animation: fadeDown 0.7s cubic-bezier(0.22,1,0.36,1) both;
}
.page-hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin-bottom: 22px;
  color: var(--text-dark);
  animation: fadeUp 0.7s 0.12s cubic-bezier(0.22,1,0.36,1) both;
}
.page-hero__sub {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--text-dim);
  line-height: 1.72;
  max-width: 560px;
  margin: 0 auto 44px;
  animation: fadeUp 0.7s 0.22s cubic-bezier(0.22,1,0.36,1) both;
}
.page-hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.32s cubic-bezier(0.22,1,0.36,1) both;
}

/* ─── Section helpers ─────────────────────────────────────── */
.section { padding: 100px 24px; }
.section--alt  { background: var(--bg-2); }
.section--dark { background: #08061A; color: #fff; }
.section__head { max-width: 600px; margin-bottom: 56px; }
.section__head--center { max-width: 600px; margin: 0 auto 56px; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.032em;
  color: var(--text-dark);
  margin-top: 8px;
  margin-bottom: 16px;
}
.section--dark h2 { color: #fff; }
.section p.lead { font-size: 17px; color: var(--text-dim); line-height: 1.72; }
.section--dark p.lead { color: rgba(255,255,255,0.60); }

/* ─── Chip / Icon ─────────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  flex-shrink: 0;
  transition: transform var(--spring), box-shadow var(--transition);
}
.chip:hover { transform: translateY(-3px) scale(1.08); }
.chip--violet { background: var(--violet-tint); color: var(--purple-l); }
.chip--coral  { background: var(--coral-tint);  color: var(--orange); }
.chip--green  { background: var(--green-tint);  color: var(--green); }
.chip--gold   { background: var(--gold-tint);   color: var(--gold); }

/* Glow on chip hover */
.chip--violet:hover { box-shadow: 0 8px 24px rgba(79,24,208,0.25); }
.chip--coral:hover  { box-shadow: 0 8px 24px rgba(232,80,10,0.25); }
.chip--green:hover  { box-shadow: 0 8px 24px rgba(5,150,105,0.25); }

/* ─── Stat / number display ───────────────────────────────── */
.stat-num {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Divider ─────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0; border: none; }

/* ─── Legal page ──────────────────────────────────────────── */
.legal-page { padding: 140px 24px 100px; }
.legal-page__inner { max-width: 760px; margin: 0 auto; }
.legal-page h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.legal-page__subtitle { font-size: 14px; color: var(--text-faint); margin-bottom: 56px; }
.legal-section { margin-bottom: 44px; }
.legal-section h2 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--purple-l);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.legal-section h3 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin: 18px 0 8px; }
.legal-section p { font-size: 14px; color: var(--text-dim); line-height: 1.8; margin-bottom: 12px; }
.legal-section ul { margin: 8px 0 12px 20px; }
.legal-section ul li { font-size: 14px; color: var(--text-dim); line-height: 1.8; list-style: disc; }
.legal-section a { color: var(--purple-l); }
.legal-section a:hover { color: var(--purple-xl); }
.legal-section strong { color: var(--text-dark); }

/* ─── Floating Orbs (hero accent) ────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbDrift var(--dur, 12s) ease-in-out infinite alternate;
}
.orb--purple { background: rgba(79,24,208,0.18); }
.orb--coral  { background: rgba(249,107,32,0.14); }
.orb--blue   { background: rgba(99,102,241,0.12); }

/* ─── Keyframes ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: none; }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(1.3); }
}
@keyframes gradientPan {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-14px) rotate(1deg); }
  66%       { transform: translateY(-7px) rotate(-0.5deg); }
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-20px); }
}
@keyframes orbDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -20px) scale(1.08); }
}
@keyframes rotateGlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes borderGlow {
  0%, 100% { border-color: rgba(79,24,208,0.15); }
  50%       { border-color: rgba(79,24,208,0.40); box-shadow: 0 0 24px rgba(79,24,208,0.12); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes popIn {
  0%   { opacity: 0; transform: scale(0.8) translateY(10px); }
  70%  { transform: scale(1.04) translateY(-2px); }
  100% { opacity: 1; transform: none; }
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links    { display: none; }
  .nav__actions  { display: none; }
  .nav__hamburger{ display: flex; }
  .footer__top   { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; gap: 24px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .cta-section__buttons { flex-direction: column; align-items: center; }
  .page-hero__actions { flex-direction: column; align-items: center; }
  .section { padding: 72px 20px; }
  .btn-cta--lg { font-size: 14px; padding: 12px 24px; }
}
