/* ═══════════════════════════════════════════════════════════
   Arfhe Wallet — Official Website Styles
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #030712;
  color: #e2e8f0;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ── CSS Variables ────────────────────────────────────── */
:root {
  --primary: #2563eb;
  --primary-light: #60a5fa;
  --primary-dark: #1e40af;
  --accent: #6366f1;
  --accent-light: #818cf8;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  --bg-primary: #030712;
  --bg-secondary: #0f172a;
  --bg-card: #1e293b;
  --bg-card-hover: #334155;

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --border: rgba(148, 163, 184, 0.1);
  --glow-primary: rgba(37, 99, 235, 0.4);
  --glow-accent: rgba(99, 102, 241, 0.3);

  --nav-height: 72px;
  --container: 1200px;
  --section-pad: 120px;
}

/* ── Container ────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* ── Background Effects ───────────────────────────────── */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.bg-glow--blue { background: var(--primary); top: -200px; right: -100px; }
.bg-glow--purple { background: var(--accent); bottom: -200px; left: -100px; }
.bg-glow--green { background: var(--success); top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.08; }
.bg-noise {
  position: fixed;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav.scrolled {
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.nav__logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: transparent; /* let the icon artwork provide its own background */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
/* Logo image inside the logo container */
.nav__logo-icon img.nav__logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill the container cleanly */
  display: block;
  border-radius: 8px;
}
.nav__logo span {
  background: linear-gradient(135deg, #fff, var(--primary-light));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}
.nav__link:hover, .nav__link.active {
  color: var(--text-primary);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: width 0.3s;
}
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.nav__cta {
  padding: 10px 24px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  transition: all 0.3s;
  box-shadow: 0 4px 15px var(--glow-primary);
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--glow-primary);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 7, 18, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 999;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.nav__mobile a:hover { color: var(--text-primary); }

/* Network badges */
.network-badge__img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(2,6,23,0.4);
}
.network-badge { display:flex; gap:16px; align-items:center; padding:12px 0; }
.network-badge__name { font-weight:700; font-size:1rem; }
.network-badge__type { color:var(--text-muted); font-size:0.9rem; }

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero__title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out 0.15s backwards;
}
.hero__title-gradient {
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light), var(--success));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.45s backwards;
}
.hero__stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 72px;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}
.hero__stat { text-align: center; }
.hero__stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.hero__stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hero floating particles */
.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary-light);
  opacity: 0;
  animation: floatParticle 8s infinite;
}
@keyframes floatParticle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s;
}
.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 20px var(--glow-primary);
}
.btn--primary:hover { box-shadow: 0 8px 35px var(--glow-primary); }
.btn--primary::before { background: linear-gradient(135deg, var(--primary-dark), #1e3a8a); }

.btn--secondary {
  background: rgba(148, 163, 184, 0.08);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn--secondary:hover {
  background: rgba(148, 163, 184, 0.15);
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
}

.btn--accent {
  background: linear-gradient(135deg, var(--accent), #4f46e5);
  color: #fff;
  box-shadow: 0 4px 20px var(--glow-accent);
}
.btn--accent:hover { box-shadow: 0 8px 35px var(--glow-accent); }

.btn--lg { padding: 18px 40px; font-size: 1.05rem; border-radius: 16px; }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; border-radius: 10px; }
.btn--icon { font-size: 1.1em; }

/* ═══════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════ */
.section {
  position: relative;
  z-index: 1;
  padding: var(--section-pad) 0;
}
.section--alt { background: transparent; }
.section--gradient {
  background: transparent;
}
.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-light);
  margin-bottom: 16px;
}
.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.section__desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════ */
.card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--glow-primary);
  background: rgba(30, 41, 59, 0.7);
}

/* Premium glass / wallet look */
.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 12px 40px rgba(2,6,23,0.6), inset 0 1px 0 rgba(255,255,255,0.02);
  backdrop-filter: blur(8px) saturate(140%);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.glass-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, rgba(99,102,241,0.06), rgba(37,99,235,0.06), rgba(99,102,241,0.06));
  filter: blur(18px);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.glass-card:hover::after { opacity: 1; }

/* Fancy CTA */
.btn--primary {
  background: linear-gradient(90deg, rgba(96,165,250,1), rgba(129,140,248,1));
  background-size: 200% 100%;
  animation: btnShift 6s linear infinite;
  color: #fff;
  box-shadow: 0 8px 30px rgba(37,99,235,0.22);
}
@keyframes btnShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* Encryption visualization */
.encrypt-visual { margin-top: 28px; display:flex; justify-content:center; align-items:center; }
.encrypt-svg { width: 220px; height: 120px; display:block; }
.encrypt-svg .dot { fill: none; stroke: rgba(255,255,255,0.6); stroke-width:2; stroke-linecap:round; stroke-linejoin:round; stroke-dasharray:4 6; opacity:0.6; }
.encrypt-visual.active .dot { animation: scanDots 2.2s linear infinite; }
@keyframes scanDots {
  0% { transform: translateX(-40px); opacity:0.2; }
  50% { transform: translateX(0); opacity:1; }
  100% { transform: translateX(40px); opacity:0.2; }
}

/* subtle glitch / encryption flicker on headings */
.glitch { position: relative; }
.glitch::after, .glitch::before { content: attr(data-text); position: absolute; left: 0; top: 0; width: 100%; overflow: hidden; clip: rect(0, 9999px, 0, 0); }
.glitch::before { color: rgba(99,102,241,0.9); transform: translate(2px, -1px); animation: glitchTop 3s infinite linear; }
.glitch::after { color: rgba(37,99,235,0.85); transform: translate(-2px, 1px); animation: glitchBottom 3.5s infinite linear; }
@keyframes glitchTop { 0%{clip:rect(0,9999px,0,0);}10%{clip:rect(10px,9999px,50px,0);}20%{clip:rect(0,9999px,0,0);}30%{clip:rect(8px,9999px,40px,0);}100%{clip:rect(0,9999px,0,0);} }
@keyframes glitchBottom { 0%{clip:rect(0,9999px,0,0);}15%{clip:rect(20px,9999px,60px,0);}40%{clip:rect(0,9999px,0,0);}60%{clip:rect(6px,9999px,30px,0);}100%{clip:rect(0,9999px,0,0);} }

.card:hover::before { opacity: 1; }
.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(99, 102, 241, 0.1));
  border: 1px solid rgba(37, 99, 235, 0.2);
}
.card__icon--green { background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05)); border-color: rgba(16, 185, 129, 0.2); }
.card__icon--purple { background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.05)); border-color: rgba(99, 102, 241, 0.2); }
.card__icon--amber { background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05)); border-color: rgba(245, 158, 11, 0.2); }
.card__icon--red { background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05)); border-color: rgba(239, 68, 68, 0.2); }
.card__icon--cyan { background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(6, 182, 212, 0.05)); border-color: rgba(6, 182, 212, 0.2); }

.card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.card__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.card__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 16px;
}
.card__tag--blue { background: rgba(37, 99, 235, 0.15); color: var(--primary-light); }
.card__tag--green { background: rgba(16, 185, 129, 0.15); color: var(--success); }
.card__tag--purple { background: rgba(99, 102, 241, 0.15); color: var(--accent-light); }

/* ── Grid Layouts ─────────────────────────────────────── */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2-1 { grid-template-columns: 2fr 1fr; }

/* ── Feature Row (alternating image+text) ─────────────── */
.feature-row {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 80px 0;
}
.feature-row:nth-child(even) { flex-direction: row-reverse; }
.feature-row__content { flex: 1; }
.feature-row__visual {
  flex: 1;
  position: relative;
}
.feature-row__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-light);
  margin-bottom: 12px;
}
.feature-row__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.feature-row__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}
.feature-row__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-row__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.feature-row__list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Mock Phone / Browser Frame ───────────────────────── */
.mock-frame {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 16px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.mock-frame__dots {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  padding: 4px 8px;
}
.mock-frame__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mock-frame__dot--red { background: #ef4444; }
.mock-frame__dot--yellow { background: #f59e0b; }
.mock-frame__dot--green { background: #10b981; }
.mock-frame__body {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 16px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ── Network Badge ────────────────────────────────────── */
.network-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s;
}
.network-badge:hover {
  border-color: rgba(37, 99, 235, 0.3);
  background: rgba(30, 41, 59, 0.8);
  transform: translateY(-2px);
}
.network-badge__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
}
.network-badge__name { font-weight: 700; font-size: 1rem; }
.network-badge__type { font-size: 0.78rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.cta-banner__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}
.cta-banner__desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 550px;
  margin: 0 auto 36px;
  position: relative;
}
.cta-banner .btn { position: relative; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: transparent;
  border-top: none;
  padding: 80px 0 40px;
  position: relative;
  z-index: 1;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}
.footer__brand-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 16px 0 24px;
  line-height: 1.7;
}
.footer__socials {
  display: flex;
  gap: 12px;
}
.footer__social {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s;
}
.footer__social:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.footer__col-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__link {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer__link:hover { color: var(--primary-light); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a:hover { color: var(--primary-light); }

/* ═══════════════════════════════════════════════════════════
   FAQ / ACCORDION
   ═══════════════════════════════════════════════════════════ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
  transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(37, 99, 235, 0.2); }
.faq-item.open { border-color: rgba(37, 99, 235, 0.3); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: rgba(30, 41, 59, 0.3);
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  transition: background 0.3s;
  width: 100%;
  text-align: left;
}
.faq-question:hover { background: rgba(30, 41, 59, 0.5); }
.faq-chevron {
  transition: transform 0.3s;
  color: var(--text-muted);
  font-size: 1.2rem;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary-light); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   LEGAL PAGE
   ═══════════════════════════════════════════════════════════ */
.legal { padding-top: calc(var(--nav-height) + 60px); padding-bottom: var(--section-pad); }
.legal h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.legal__date { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 48px; }
.legal h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--text-primary);
}
.legal h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--text-primary);
}
.legal p, .legal li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}
.legal ul { padding-left: 24px; list-style: disc; }
.legal a { color: var(--primary-light); }
.legal a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS  (Intersection Observer)
   ═══════════════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--left { transform: translateX(-40px); }
.reveal--left.visible { transform: translateX(0); }
.reveal--right { transform: translateX(40px); }
.reveal--right.visible { transform: translateX(0); }
.reveal--scale { transform: scale(0.9); }
.reveal--scale.visible { transform: scale(1); }

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.47s; }
.stagger.visible > *:nth-child(8) { transition-delay: 0.54s; }
.stagger.visible > *:nth-child(9) { transition-delay: 0.61s; }
.stagger.visible > * { opacity: 0; transform: translateY(30px); }
.stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   TIMELINE (About page)
   ═══════════════════════════════════════════════════════════ */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent), var(--success));
}
.timeline__item {
  position: relative;
  padding-bottom: 40px;
}
.timeline__dot {
  position: absolute;
  left: -33px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 20px var(--glow-primary);
}
.timeline__date {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.timeline__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.timeline__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════
   STEP CARDS (Download page)
   ═══════════════════════════════════════════════════════════ */
.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: rgba(30, 41, 59, 0.3);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.3s;
}
.step:hover { border-color: rgba(37, 99, 235, 0.2); background: rgba(30, 41, 59, 0.5); }
.step__number {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.step__title { font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }
.step__desc { font-size: 0.9rem; color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .feature-row { gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .grid--2-1 { grid-template-columns: 1fr; }
  .feature-row, .feature-row:nth-child(even) {
    flex-direction: column;
    gap: 40px;
  }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .hero__stat-value { font-size: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-banner { padding: 48px 24px; border-radius: 20px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.2rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .card { padding: 24px; }
}

/* ── Scroll bar styling ───────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--bg-card-hover); }

/* ── Selection ────────────────────────────────────────── */
::selection {
  background: rgba(37, 99, 235, 0.3);
  color: #fff;
}

/* ═════════════════════════════════════════════════
   CREATIVE SHOWCASE (Borderless layout)
   ═════════════════════════════════════════════════ */
.creative-showcase {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 40px 0;
}
.creative-item {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
}
.creative-item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}
.creative-item__number {
  font-size: 12vw;
  font-weight: 900;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  user-select: none;
  transition: all 0.5s ease;
}
.creative-item:hover .creative-item__number {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  transform: scale(1.05) translateY(-10px);
}
.creative-item__core {
  flex: 1;
  position: relative;
  z-index: 2;
}
.creative-item__title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 30%, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.creative-item__desc {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}
.creative-item:nth-child(even) .creative-item__desc {
  margin-left: auto;
}
.creative-item__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.creative-item:hover .creative-item__glow {
  opacity: 0.3;
}
.creative-item__glow--blue { background: #3b82f6; }
.creative-item__glow--green { background: #10b981; }
.creative-item__glow--purple { background: #8b5cf6; }

@media (max-width: 900px) {
  .creative-item, .creative-item:nth-child(even) {
    flex-direction: column;
    text-align: left;
    gap: 20px;
  }
  .creative-item__number {
    font-size: 6rem;
  }
  .creative-item__title {
    font-size: 2rem;
  }
}

/* ═════════════════════════════════════════════════
   KINETIC FEATURE LIST (Box-less detail list)
   ═════════════════════════════════════════════════ */
.kinetic-list {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.kinetic-item {
  display: grid;
  grid-template-columns: auto 1fr 2fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: all 0.4s ease;
  align-items: start;
}

.kinetic-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.kinetic-item__icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.kinetic-item:hover .kinetic-item__icon {
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(99, 102, 241, 0.4);
}

.kinetic-item__title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  color: #f8fafc;
  transition: color 0.4s ease;
  padding-top: 10px;
}

.kinetic-item:hover .kinetic-item__title {
  color: #818cf8;
}

.kinetic-item__desc {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  padding-top: 14px;
}

.kinetic-item__bg {
  position: absolute;
  top: 0;
  left: -20px;
  right: -20px;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.03), transparent);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.kinetic-item:hover .kinetic-item__bg {
  opacity: 1;
}

@media (max-width: 900px) {
  .kinetic-item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 30px 0;
  }
  .kinetic-item__title {
    padding-top: 0;
    font-size: 1.5rem;
  }
  .kinetic-item__desc {
    padding-top: 0;
  }
}

.kinetic-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 16px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.05);
}
.kinetic-tag--blue { background: rgba(37, 99, 235, 0.1); color: var(--primary-light); border-color: rgba(37, 99, 235, 0.3); }
.kinetic-tag--green { background: rgba(16, 185, 129, 0.1); color: var(--success); border-color: rgba(16, 185, 129, 0.3); }
.kinetic-tag--purple { background: rgba(99, 102, 241, 0.1); color: var(--accent-light); border-color: rgba(99, 102, 241, 0.3); }

/* Make the grids that contain kinetic items look clean, wrapping them appropriately if they don't have css grids anymore */

/* ═════════════════════════════════════════════════
   KINETIC GRID (Box-less grid layout for smaller items)
   ═════════════════════════════════════════════════ */
.kinetic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.kinetic-grid .kinetic-item {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 16px;
  border: none;
  border-bottom: 1px solid transparent;
  background: transparent;
}
.kinetic-grid .kinetic-item:first-child {
  border-top: none;
}
.kinetic-grid .kinetic-item__icon {
  margin-bottom: 8px;
}
