:root {
  --pink:    #ff6ec7;
  --cyan:    #00e5ff;
  --violet:  #7b2fff;
  --blue:    #3a6dff;
  --bg:      #0d0b1a;
  --text:    #ffffff;
  --text-rgb: 255,255,255;
  --nav-bg:  rgba(13,11,26,0.55);
  --card-bg: rgba(255,255,255,0.06);
  --card-surface: rgba(13,11,26,0.9);
  --panel-bg: rgba(13,11,26,0.92);
  --border:  rgba(255,255,255,0.12);
  --ghost-bg: rgba(255,255,255,0.08);
  --link-text: rgba(255,255,255,0.75);
  --status-bg: rgba(123,47,255,0.12);
  --status-text: #ffffff;
}

:root {
  --pink:    #ff6ec7;
  --cyan:    #00e5ff;
  --violet:  #7b2fff;
  --blue:    #3a6dff;
  --bg:      #0d0b1a;
  --card-bg: rgba(255,255,255,0.05);
  --border:  rgba(255,255,255,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ───────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.35;
}

/* ── GRADIENT BLOBS ──────────────────────────── */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
  animation: float 10s ease-in-out infinite alternate;
}
.blob-1 { width: 560px; height: 560px; background: radial-gradient(circle, var(--violet), transparent 70%); top: -120px; left: -120px; }
.blob-2 { width: 480px; height: 480px; background: radial-gradient(circle, var(--pink), transparent 70%);   top: 10%;  right: -100px; animation-delay: -4s; }
.blob-3 { width: 420px; height: 420px; background: radial-gradient(circle, var(--cyan), transparent 70%);   bottom: -80px; left: 30%; animation-delay: -7s; }

@keyframes float {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 40px) scale(1.08); }
}

/* ── NAV ─────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(13,11,26,0.55);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.3rem;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none; font-size: 0.9rem;
  transition: color .25s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links li.active a { color: #fff; }
.nav-actions { display: flex; gap: 12px; align-items: center; }

.btn {
  padding: 9px 22px; border-radius: 50px; font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all .25s;
  border: none;
}
.btn-ghost {
  background: transparent; color: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff; font-weight: 500;
  box-shadow: 0 0 24px rgba(123,47,255,0.4);
}
.btn-primary:hover { box-shadow: 0 0 36px rgba(123,47,255,0.65); transform: translateY(-1px); }

/* ── HERO ────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  gap: 40px;
}

.hero-left { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 24px;
  opacity: 0; animation: fadeUp .7s .2s forwards;
}
.hero-eyebrow span { display: inline-block; width: 24px; height: 1px; background: var(--cyan); }

.hero-tagline {
  font-size: 0.95rem; line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 360px; margin-bottom: 32px;
  opacity: 0; animation: fadeUp .7s .35s forwards;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(4.5rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -3px;
  background: linear-gradient(130deg, #fff 30%, var(--cyan) 60%, var(--pink) 90%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp .7s .5s forwards;
}

.hero-actions {
  display: flex; align-items: center; gap: 20px;
  opacity: 0; animation: fadeUp .7s .65s forwards;
}
.btn-kesfet {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px;
  background: #fff; color: #0d0b1a;
  font-weight: 600; font-size: 0.9rem;
  cursor: pointer; border: none; transition: all .25s;
}
.btn-kesfet:hover { background: var(--cyan); box-shadow: 0 0 30px rgba(0,229,255,0.5); }
.btn-kesfet .arrow-icon {
  width: 26px; height: 26px; background: var(--bg);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem;
}
.link-connect {
  color: rgba(255,255,255,0.55); font-size: 0.9rem;
  text-decoration: none; letter-spacing: 0.3px;
  transition: color .2s;
}
.link-connect:hover { color: #fff; }

/* ── HERO RIGHT (portrait) ───────────────────── */
.hero-right {
  position: relative; display: flex; justify-content: center; align-items: center;
  opacity: 0; animation: fadeIn .9s .4s forwards;
}

.portrait-wrap {
  position: relative; width: 440px; height: 540px;
}

.portrait-glow {
  position: absolute; inset: -60px;
  background: radial-gradient(ellipse at 50% 40%, rgba(0,229,255,0.22) 0%, rgba(255,110,199,0.18) 50%, transparent 75%);
  border-radius: 50%;
  animation: pulseGlow 5s ease-in-out infinite alternate;
}
@keyframes pulseGlow {
  from { opacity: 0.7; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.05); }
}

.portrait-img {
  width: 100%; height: 100%; border-radius: 50% 50% 40% 40%;
  object-fit: cover; position: relative; z-index: 2;
  background:
    radial-gradient(ellipse at 55% 35%, rgba(255,255,255,0.9) 0%, rgba(200,160,240,0.6) 30%, rgba(0,229,255,0.4) 55%, transparent 75%),
    radial-gradient(ellipse at 45% 65%, rgba(255,110,199,0.5) 0%, rgba(123,47,255,0.35) 40%, transparent 70%),
    linear-gradient(160deg, #d5aff8 0%, #7b2fff 30%, #0d0b1a 70%);
  overflow: hidden;
}

/* Floating particles */
.particles { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.particle {
  position: absolute; border-radius: 50%;
  animation: drift linear infinite;
}
@keyframes drift {
  0%   { transform: translateY(0) scale(1); opacity: 0.8; }
  50%  { opacity: 1; }
  100% { transform: translateY(-320px) scale(0.3); opacity: 0; }
}

/* ── CARDS ───────────────────────────────────── */
.card {
  background: rgba(20,16,38,0.72);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 14px 16px;
  width: 180px; cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent);
  border-radius: inherit;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }

.card-thumb {
  width: 44px; height: 44px; border-radius: 50%; margin-bottom: 10px;
  position: relative; overflow: hidden;
}
.card-thumb-1 { background: radial-gradient(circle at 40% 40%, #ff9de2, #ff6ec7, #7b2fff); }
.card-thumb-2 { background: radial-gradient(circle at 40% 40%, #a0f4ff, #00e5ff, #3a6dff); }
.card-thumb-3 { background: radial-gradient(circle at 40% 40%, #c4b0ff, #7b2fff, #0d0b1a); }

.card-arrow {
  position: absolute; top: 12px; right: 12px;
  font-size: 0.7rem; color: rgba(255,255,255,0.4);
}
.card h4 { font-size: 0.8rem; font-weight: 600; margin-bottom: 6px; }
.card p  { font-size: 0.7rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ── FEATURES SECTION ────────────────────────── */
.section {
  padding: 100px 48px;
  position: relative; z-index: 2;
}

.section-label {
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; letter-spacing: -1px;
  max-width: 520px; line-height: 1.1; margin-bottom: 16px;
}
.section-sub {
  font-size: 0.95rem; color: rgba(255,255,255,0.5); max-width: 420px;
  line-height: 1.7; margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px; padding: 32px 28px;
  transition: all .3s;
  position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), transparent);
  border-radius: inherit; pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,229,255,0.3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 40px rgba(0,229,255,0.08);
}

.feature-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
}
.fi-1 { background: linear-gradient(135deg, rgba(255,110,199,0.25), rgba(123,47,255,0.15)); }
.fi-2 { background: linear-gradient(135deg, rgba(0,229,255,0.25), rgba(58,109,255,0.15)); }
.fi-3 { background: linear-gradient(135deg, rgba(123,47,255,0.25), rgba(0,229,255,0.15)); }

.feature-card h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; margin-bottom: 10px; font-weight: 700; }
.feature-card p  { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ── STATS BAND ──────────────────────────────── */
.stats-band {
  display: flex; justify-content: space-around;
  padding: 56px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 2;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800; letter-spacing: -2px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin-top: 6px; letter-spacing: 0.5px; }

/* ── CTA ─────────────────────────────────────── */
.cta-section {
  padding: 100px 48px;
  text-align: center;
  position: relative; z-index: 2;
}
.cta-section .section-title { margin: 0 auto 16px; text-align: center; }
.cta-section .section-sub { margin: 0 auto 40px; text-align: center; }

.cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(123,47,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 2;
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
}
footer .nav-logo { font-size: 1rem; }

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 100px 24px 160px; }
  .hero-right { display: none; }
  .hero-title { font-size: 4.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 24px; }
  .stats-band { flex-wrap: wrap; gap: 32px; padding: 48px 24px; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ───────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.35;
}

/* ── GRADIENT BLOBS ──────────────────────────── */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
  animation: float 10s ease-in-out infinite alternate;
}
.blob-1 { width: 560px; height: 560px; background: radial-gradient(circle, var(--violet), transparent 70%); top: -120px; left: -120px; }
.blob-2 { width: 480px; height: 480px; background: radial-gradient(circle, var(--pink), transparent 70%);   top: 10%;  right: -100px; animation-delay: -4s; }
.blob-3 { width: 420px; height: 420px; background: radial-gradient(circle, var(--cyan), transparent 70%);   bottom: -80px; left: 30%; animation-delay: -7s; }

@keyframes float {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 40px) scale(1.08); }
}

/* ── NAV ─────────────────────────────────────── */
nav {
  position: sticky; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 1.3rem;
  letter-spacing: -0.5px;
  text-decoration: none;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  margin-right: 10px;
  width: 36px;
  height: 28px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  color: var(--link-text);
  text-decoration: none; font-size: 0.9rem;
  transition: color .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links li.active a { color: var(--text); }
.nav-actions { display: flex; gap: 12px; align-items: center; order: 3; }

.nav-toggle { order: 4; }

.nav-profile {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 30px rgba(11,8,24,0.6), inset 0 1px 0 rgba(255,255,255,0.02);
}

.nav-profile-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.nav-profile-email {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.1;
  opacity: 0.9;
}

.nav-profile-btn {
  padding: 10px 18px;
  font-size: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #7b2fff, #ff6ec7);
  color: #fff;
  border: none;
  box-shadow: 0 6px 24px rgba(123,47,255,0.28);
  font-weight: 700;
  cursor: pointer;
}

.mobile-profile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}

.mobile-profile .nav-profile {
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}

.mobile-profile .nav-profile-btn {
  width: 100%;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(13, 11, 26, 0.98);
  transform: translateX(100%);
  transition: transform .28s ease;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-menu-panel {
  width: min(320px, 100%);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu-close {
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  align-self: flex-end;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0;
  margin: 0;
}

.mobile-nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
}

.mobile-nav-links a.active {
  color: var(--cyan);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.menu-open {
  overflow: hidden;
}

.btn {
  padding: 9px 22px; border-radius: 50px; font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all .25s;
  border: none;
}
.btn-ghost {
  background: transparent; color: var(--link-text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: rgba(var(--text-rgb,255,255,255),0.4); color: var(--text); }
.btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--pink));
  color: #fff; font-weight: 500;
  box-shadow: 0 0 24px rgba(123,47,255,0.4);
}
.btn-primary:hover { box-shadow: 0 0 36px rgba(123,47,255,0.65); transform: translateY(-1px); }

/* ── HERO ────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 48px 60px;
  position: relative;
  gap: 32px;
}

.hero-left { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800; letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff; margin-bottom: 24px;
  max-width: 760px; line-height: 1.02;
  text-shadow: 0 18px 40px rgba(0,0,0,0.16);
  opacity: 0; animation: fadeUp .7s .2s forwards;
}
.hero-eyebrow span {
  display: inline-block; width: 40px; height: 2px;
  background: var(--cyan); border-radius: 10px;
}

.hero-tagline {
  font-size: 1rem; line-height: 1.75;
  color: rgba(var(--text-rgb, 255,255,255),0.75);
  max-width: 560px; margin-bottom: 32px;
  opacity: 0; animation: fadeUp .7s .35s forwards;
}

/* Light theme removed — site uses default variables only */

.hero-actions {
  display: flex; align-items: center; gap: 20px;
  opacity: 0; animation: fadeUp .7s .65s forwards;
}
.btn-kesfet {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px;
  background: #fff; color: #0d0b1a;
  font-weight: 600; font-size: 0.9rem;
  cursor: pointer; border: none; transition: all .25s;
}
.btn-kesfet:hover { background: var(--cyan); box-shadow: 0 0 30px rgba(0,229,255,0.5); }
.btn-kesfet .arrow-icon {
  width: 26px; height: 26px; background: var(--bg);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem;
}
.link-connect {
  color: rgba(var(--text-rgb,255,255,255),0.65); font-size: 0.9rem;
  text-decoration: none; letter-spacing: 0.3px;
  transition: color .2s;
}
.link-connect:hover { color: var(--text); }

/* ── HERO RIGHT (decor) ───────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  padding: 100px 48px 60px;
  position: relative;
  gap: 32px;
}

.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}

.hero-decor {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 100%;
}

.hero-decor::before {
  content: '';
  position: absolute;
  top: 18%;
  left: 10%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.18), transparent 55%);
  filter: blur(18px);
}

.hero-decor::after {
  content: '';
  position: absolute;
  bottom: 22%;
  right: 12%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,110,199,0.14), transparent 52%);
  filter: blur(18px);
}

.hero-decor-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
}

.circle-1 {
  top: 12%;
  right: 20%;
  width: 90px;
  height: 90px;
}

.circle-2 {
  bottom: 16%;
  left: 10%;
  width: 110px;
  height: 110px;
}

.hero-decor-symbol {
  position: absolute;
  color: rgba(255,255,255,0.22);
  font-size: 4.2rem;
  letter-spacing: 0.02em;
}

.symbol-a {
  top: 16%;
  left: 8%;
}

.symbol-b {
  top: 42%;
  right: 22%;
}

.symbol-c {
  bottom: 20%;
  left: 26%;
}

@media (max-width: 900px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr;
    padding: 90px 24px 60px;
  }

  .hero-right {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero {
    display: grid;
    grid-template-columns: 1fr;
    padding: 90px 24px 60px;
  }

  .hero-right {
    display: none;
  }
}

/* ── CARDS ───────────────────────────────────── */
.card {
  background: rgba(20,16,38,0.72);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 12px 18px;
  width: min(420px, 32%);
  height: 200px;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent);
  border-radius: inherit;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }

.card-thumb {
  width: 48px; height: 48px; border-radius: 50%; margin-bottom: 10px;
  position: relative; overflow: hidden;
}
.card-thumb-1 { background: radial-gradient(circle at 40% 40%, #ff9de2, #ff6ec7, #7b2fff); }
.card-thumb-2 { background: radial-gradient(circle at 40% 40%, #a0f4ff, #00e5ff, #3a6dff); }
.card-thumb-3 { background: radial-gradient(circle at 40% 40%, #c4b0ff, #7b2fff, #0d0b1a); }

.card-arrow {
  position: absolute; top: 12px; right: 12px;
  font-size: 0.7rem; color: rgba(255,255,255,0.4);
}
.card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.card p  { font-size: 0.85rem; color: rgba(255,255,255,0.68); line-height: 1.4; max-height: 96px; overflow: hidden; }

/* ── FEATURES SECTION ────────────────────────── */
.section {
  padding: 80px 48px;
  position: relative; z-index: 2;
}

.section-label {
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px;
}
.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; letter-spacing: -1px;
  max-width: 520px; line-height: 1.1; margin-bottom: 16px;
}
.section-sub {
  font-size: 0.95rem; color: rgba(var(--text-rgb,255,255,255),0.67); max-width: 420px;
  line-height: 1.7; margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px; padding: 32px 28px;
  transition: all .3s;
  position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), transparent);
  border-radius: inherit; pointer-events: none;
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,229,255,0.3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 40px rgba(0,229,255,0.08);
}

.feature-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
}
.fi-1 { background: linear-gradient(135deg, rgba(255,110,199,0.25), rgba(123,47,255,0.15)); }
.fi-2 { background: linear-gradient(135deg, rgba(0,229,255,0.25), rgba(58,109,255,0.15)); }
.fi-3 { background: linear-gradient(135deg, rgba(123,47,255,0.25), rgba(0,229,255,0.15)); }

.feature-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.1rem; margin-bottom: 10px; font-weight: 700; }
.feature-card p  { font-size: 0.87rem; color: rgba(var(--text-rgb,255,255,255),0.55); line-height: 1.7; }

/* ── STATS BAND ──────────────────────────────── */
.stats-band {
  display: flex; justify-content: space-around;
  padding: 56px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 2;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800; letter-spacing: -2px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.82rem; color: rgba(var(--text-rgb,255,255,255),0.45); margin-top: 6px; letter-spacing: 0.5px; }

/* ── CTA ─────────────────────────────────────── */
.cta-section {
  padding: 80px 48px;
  text-align: center;
  position: relative; z-index: 2;
}
.cta-section .section-title { margin: 0 auto 16px; text-align: center; }
.cta-section .section-sub { margin: 0 auto 40px; text-align: center; }

.cta-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(123,47,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 2;
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
}
footer .nav-logo { font-size: 1rem; }

/* ── ANIMATIONS ──────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { grid-template-columns: 1fr; padding: 100px 24px 160px; }
  .hero-right { display: none; }
  .hero-title { font-size: 4.5rem; }
  .features-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 24px; }
  .stats-band { flex-wrap: wrap; gap: 32px; padding: 48px 24px; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
}

/* ── INDEX SPECIFIC STYLES ───────────────────── */
.home-nav {
  position: relative;
  z-index: 999;
}
.cards-wrapper {
  position: relative;
  z-index: 10;
  padding: 0 48px;
  display: flex;
  justify-content: center;
}
.cards-row {
  display: flex;
  gap: 28px;
  flex-wrap: nowrap;
  margin-top: 8px;
  width: 100%;
  max-width: 1200px;
  justify-content: space-between;
  align-items: stretch;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
}
.btn-large {
  padding: 14px 36px;
  font-size: 0.95rem;
}
.footer-links {
  color: rgba(255, 255, 255, 0.2);
}
