/* ===== DESIGN TOKENS (matches swiper.css + workers.css) ===== */
:root {
  --bg0: #070c18;
  --bg1: #0a1430;
  --card: rgba(255,255,255,.07);
  --stroke: rgba(255,255,255,.10);
  --text: #eaf0ff;
  --muted: rgba(234,240,255,.72);
  --shadow: 0 20px 70px rgba(0,0,0,.45);
  --radius: 22px;
  --accept: #2bd576;
  --decline: #ff4d4d;
  --navH: 72px;
  --gap: 12px;
  --pad: 16px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background:
    radial-gradient(1000px 700px at 20% 10%, rgba(86,140,255,.18), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(43,213,118,.14), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== SHARED SECTION LABELS ===== */
.section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(234,240,255,.4);
  margin-bottom: 8px;
  text-align: center;
}

.section-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 950;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 36px;
  text-align: center;
}

/* ===== SHARED BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  border: 0;
  cursor: pointer;
  font-weight: 950;
  font-size: 15px;
  font-family: inherit;
  text-decoration: none;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); filter: brightness(1.06); }
.btn:active { transform: translateY(0) scale(.99); }

.btn-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.20);
  font-size: 16px;
  flex-shrink: 0;
}

.btn-accept {
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.20), transparent 55%), var(--accept);
  color: white;
  box-shadow: 0 12px 32px rgba(43,213,118,.28);
}

.btn-ghost {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,.09); }

.btn-lg { height: 58px; font-size: 16px; padding: 0 32px; }


/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--navH);
  background: rgba(7,12,24,.65);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(12px, 2vw, 28px);
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover .brand-dot { transform: scale(1.08); }

.brand-dot {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(86,140,255,.95), rgba(43,213,118,.85));
  box-shadow: 0 12px 30px rgba(86,140,255,.22);
  transition: transform .2s ease;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-title {
  font-weight: 950;
  font-size: 15px;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--text);
  white-space: nowrap;
}

.brand-sub {
  font-size: 11px;
  color: var(--muted);
  font-weight: 750;
  white-space: nowrap;
}

/* Desktop nav links */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: rgba(234,240,255,.72);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background .15s, color .15s, transform .15s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: rgba(255,255,255,.07);
}
.nav-link.active { color: #8ab4ff; background: rgba(86,140,255,.12); }

.nav-link-cta {
  background: rgba(43,213,118,.10);
  border: 1px solid rgba(43,213,118,.25);
  color: #2bd576 !important;
  border-radius: 12px;
}
.nav-link-cta:hover {
  background: rgba(43,213,118,.18) !important;
}

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Icon btn (shared with swiper) */
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(234,240,255,.95);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .15s ease, background .15s ease;
}
.icon-btn:hover { transform: translateY(-1px); background: rgba(255,255,255,.08); }
.icon-btn:active { transform: translateY(0); }

/* Hamburger */
.hamburger {
  width: 20px;
  height: 14px;
  position: relative;
  display: inline-block;
  pointer-events: none;
}
.hamburger::before,
.hamburger::after,
.hamburger span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: rgba(234,240,255,.92);
}
.hamburger::before { top: 0; }
.hamburger span    { top: 6px; }
.hamburger::after  { bottom: 0; }

/* Profile dropdown */
.user-profile { display: flex; align-items: center; }

.profile-dropdown { position: relative; }

.profile-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(234,240,255,.95);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  transition: transform .15s, background .15s;
}
.profile-btn:hover { transform: translateY(-1px); background: rgba(255,255,255,.08); }

.profile-btn .chevron {
  font-size: 10px;
  color: rgba(234,240,255,.45);
  transition: transform .2s;
}
.profile-dropdown:hover .chevron { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: rgba(10,18,44,.96);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  backdrop-filter: blur(16px);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s ease;
  z-index: 100;
  overflow: hidden;
}
.profile-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li { border-bottom: 1px solid rgba(255,255,255,.06); }
.dropdown-menu li:last-child { border-bottom: none; }
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: rgba(234,240,255,.82);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: background .15s, color .15s;
}
.dropdown-menu a:hover { background: rgba(255,255,255,.06); color: var(--text); }
.dropdown-menu a i { color: #8ab4ff; width: 16px; text-align: center; }

/* menu toggle — hide on desktop */
.menu-toggle { display: none; }

/* ===== DRAWER ===== */
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 60;
  display: none;
}
.backdrop:not([hidden]) {
  display: block;
  cursor: pointer;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: min(340px, 86vw);
  z-index: 70;
  transform: translateX(-110%);
  transition: transform .22s ease;
  background: rgba(10,18,44,.92);
  border-right: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 40px 100px rgba(0,0,0,.55);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }

.drawer-head {
  padding: 16px 16px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.drawer-title { font-weight: 950; letter-spacing: -.02em; }

.drawer-nav {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-nav .nav-item {
  text-decoration: none;
  color: rgba(234,240,255,.92);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.drawer-nav .nav-item:hover { transform: translateY(-1px); background: rgba(255,255,255,.08); }
.drawer-nav .nav-item.active {
  border-color: rgba(86,140,255,.30);
  background: rgba(86,140,255,.16);
  color: #8ab4ff;
}
.drawer-nav .nav-item i { width: 18px; text-align: center; color: #8ab4ff; }

.drawer-foot {
  margin-top: auto;
  padding: 14px 16px 18px;
  color: rgba(234,240,255,.45);
  font-weight: 750;
  font-size: 12px;
}

/* ===== HERO ===== */
.hero {
  min-height: calc(100dvh - var(--navH));
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(24px, 4vw, 56px) clamp(20px, 4vw, 60px);
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(86,140,255,.12);
  top: -100px;
  left: -100px;
}
.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(43,213,118,.10);
  bottom: -80px;
  right: -80px;
}

.hero-content {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(43,213,118,.25);
  background: rgba(43,213,118,.08);
  font-size: 13px;
  font-weight: 800;
  color: #2bd576;
  width: fit-content;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2bd576;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.8); }
}

.hero-title {
  font-size: clamp(46px, 7vw, 82px);
  font-weight: 950;
  letter-spacing: -.03em;
  line-height: 1.02;
  color: var(--text);
}
.hero-accent {
  background: linear-gradient(90deg, #2bd576, #568cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero mock card */
.hero-card-wrap {
  position: relative;
  width: 380px;
  flex-shrink: 0;
  z-index: 2;
}

.hero-card {
  background: rgba(15,24,44,.92);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: 0 32px 80px rgba(0,0,0,.55);
  overflow: hidden;
  position: relative;
}

.hero-card-back-1,
.hero-card-back-2 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.hero-card-back-1 {
  z-index: -1;
  transform: scale(.97) translateY(10px);
}
.hero-card-back-2 {
  z-index: -2;
  transform: scale(.94) translateY(20px);
}

.swipe-ol {
  position: absolute;
  top: 14px;
  z-index: 10;
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
}
.ol-accept { left: 12px; background: rgba(43,213,118,.85); border: 2px solid var(--accept); color: #fff; opacity: .85; }
.ol-decline { right: 12px; background: rgba(255,77,77,.85); border: 2px solid var(--decline); color: #fff; opacity: .85; }

.hc-photo {
  height: 200px;
  background: linear-gradient(135deg, rgba(86,140,255,.15), rgba(43,213,118,.10));
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hc-photo-inner {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: grid;
  place-items: center;
}
.hc-icon { font-size: 40px; color: rgba(234,240,255,.7); }
.hc-badge-row {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.hc-badge {
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 800;
  color: #f5c842;
  backdrop-filter: blur(8px);
}

.hc-body { padding: 14px; display: flex; flex-direction: column; gap: 10px; }

.hc-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hc-title { font-size: 16px; font-weight: 950; letter-spacing: -.01em; }
.hc-av {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(86,140,255,.8), rgba(43,213,118,.7));
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}
.hc-desc { font-size: 13px; color: var(--muted); line-height: 1.45; }
.hc-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.hc-pill {
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  font-size: 11px;
  font-weight: 700;
  color: rgba(234,240,255,.65);
  display: flex;
  align-items: center;
  gap: 5px;
}

.hc-actions {
  padding: 0 14px 14px;
  display: flex;
  gap: 10px;
}
.btn-accept-sm, .btn-decline-sm {
  flex: 1;
  height: 42px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  font-size: 13px;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform .15s, filter .15s;
}
.btn-accept-sm:hover, .btn-decline-sm:hover { transform: translateY(-1px); filter: brightness(1.08); }
.btn-accept-sm {
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.20), transparent 55%), var(--accept);
  color: white;
}
.btn-decline-sm {
  background: rgba(255,77,77,.10);
  border: 1px solid rgba(255,77,77,.25);
  color: #ff6b6b;
}


/* ===== ROADMAP ===== */
.roadmap {
  padding: clamp(48px, 8vw, 96px) clamp(16px, 4vw, 60px);
  background: transparent;
  position: relative;
  text-align: center;
}

.roadmap-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  max-width: 500px;
  margin: 0 auto 40px;
}

/* Wiggly SVG arrow sits behind the steps */
.roadmap-arrow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.roadmap-arrow path {
  stroke: rgba(86,140,255,.45);
  stroke-width: 2.5px;
  fill: none;
  stroke-dasharray: 10, 6;
}

.step {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin: 28px 0;
  text-align: center;
  width: 85%;
  max-width: 400px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(86,140,255,.3);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}

.step-num {
  position: absolute;
  top: -12px;
  right: 16px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  color: rgba(234,240,255,.4);
  background: #0a1430;
  padding: 2px 10px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.10);
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(86,140,255,.12);
  border: 1px solid rgba(86,140,255,.22);
  display: grid;
  place-items: center;
  font-size: 24px;
  color: #8ab4ff;
}

.step h3 {
  font-size: 18px;
  font-weight: 950;
  color: var(--text);
  letter-spacing: -.01em;
}

.step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 300px;
}

.roadmap-button-container {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  position: relative;
  z-index: 2;
}


/* ===== SLIDER ===== */
.slider-section {
  padding: clamp(48px, 8vw, 96px) 0;
}

.slider-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slider-wrapper { overflow: hidden; width: 100%; }

.slider-track {
  display: flex;
  transition: transform .4s cubic-bezier(.25,1,.5,1);
}

.slide {
  flex: 0 0 33.33%;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.slide-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(86,140,255,.10);
  border: 1px solid rgba(86,140,255,.18);
  display: grid;
  place-items: center;
  font-size: 24px;
  color: #8ab4ff;
}

.slide h3 {
  font-size: 15px;
  font-weight: 950;
  color: var(--text);
  letter-spacing: -.01em;
}

.slide p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 240px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(7,12,24,.80);
  color: rgba(234,240,255,.95);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 20px;
  backdrop-filter: blur(10px);
  transition: background .15s, transform .15s;
}
.slider-arrow:hover { background: rgba(255,255,255,.10); }
.slider-arrow:active { transform: translateY(-50%) scale(.95); }
.left-arrow  { left: 12px; }
.right-arrow { right: 12px; }

@media (max-width: 900px)  { .slide { flex: 0 0 50%; } }
@media (max-width: 600px)  { .slide { flex: 0 0 100%; } }


/* ===== INFO CONTAINERS ===== */
.info-containers {
  padding: clamp(48px, 8vw, 96px) clamp(16px, 4vw, 60px);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) { .info-grid { grid-template-columns: 1fr; } }

.main-container {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: border-color .2s ease, transform .2s ease;
}
.main-container:hover {
  transform: translateY(-3px);
  border-color: rgba(86,140,255,.25);
}

.click-bubble {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,77,77,.18);
  border: 1px solid rgba(255,77,77,.3);
  color: #ff8c5a;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  animation: bounce 2s infinite;
  display: flex;
  align-items: center;
  gap: 5px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  40%       { transform: translateY(-6px); }
  60%       { transform: translateY(-3px); }
}

.main-content {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(86,140,255,.10);
  border: 1px solid rgba(86,140,255,.18);
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #8ab4ff;
}

.main-content h3 {
  font-size: 16px;
  font-weight: 950;
  color: var(--text);
  letter-spacing: -.01em;
}

.main-content > p {
  font-size: 13px;
  color: var(--muted);
}

.secondary-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  background: rgba(86,140,255,.06);
  border-top: 1px solid transparent;
}
.main-container.active .secondary-container {
  max-height: 200px;
  border-top-color: rgba(86,140,255,.15);
}

.secondary-container p {
  padding: 16px 20px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}


/* ===== INTRO / ABOUT ===== */
.intro-section {
  padding: clamp(48px, 8vw, 96px) clamp(16px, 4vw, 60px);
}

.container { max-width: 1200px; margin: 0 auto; }

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.col-md-6 { flex: 1 1 380px; min-width: 0; }

.intros { display: flex; flex-direction: column; gap: 18px; }

.display-2--intro {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 950;
  letter-spacing: -.02em;
  color: var(--text);
  line-height: 1.15;
}

.display-2--description {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 520px;
}

.intro-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Mini card stack — removed, replaced with stats grid */
.intro-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Stats 2x2 grid → Categories 3x2 grid */
.intro-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 420px;
}

.isg-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
  cursor: default;
}
.isg-card:hover {
  transform: translateY(-4px);
  border-color: rgba(86,140,255,.28);
}

.isg-card--more {
  border-style: dashed;
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
}
.isg-card--more:hover {
  border-color: rgba(86,140,255,.22);
}
.isg-card--more .isg-icon {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.10);
  color: rgba(234,240,255,.4);
}
.isg-card--more .isg-lbl {
  color: rgba(234,240,255,.4);
  font-style: italic;
}

.isg-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(86,140,255,.10);
  border: 1px solid rgba(86,140,255,.18);
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #8ab4ff;
}

.isg-lbl {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 480px) {
  .intro-stats-grid { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
  .isg-card { padding: 14px 8px; }
  .isg-icon { width: 38px; height: 38px; font-size: 16px; }
  .isg-lbl  { font-size: 11px; }
}

.section-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.07);
  margin-top: 60px;
}


/* ===== FOOTER ===== */
.footer {
  background: rgba(7,12,24,.9);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 32px clamp(16px, 4vw, 60px) 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  max-width: 1200px;
  margin: 0 auto 24px;
  align-items: flex-start;
}

.footer-brand { flex: 1 1 200px; }

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-description {
  font-size: 12px;
  color: rgba(234,240,255,.38);
  line-height: 1.6;
  max-width: 220px;
}

.footer-links,
.footer-contact { flex: 0 1 auto; }

.footer-newsletter { flex: 1 1 220px; }

.footer-heading {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(234,240,255,.4);
  margin-bottom: 12px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links ul li a,
.footer-contact ul li {
  font-size: 13px;
  color: rgba(234,240,255,.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .15s;
}
.footer-links ul li a:hover { color: var(--text); }
.footer-contact ul li i,
.footer-links ul li a i { color: rgba(86,140,255,.7); width: 14px; }

.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  padding: 9px 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  color: var(--text);
  font-size: 12px;
  font-family: inherit;
  outline: none;
  transition: border-color .15s;
  min-width: 0;
}
.newsletter-form input:focus { border-color: rgba(86,140,255,.4); }
.newsletter-form input::placeholder { color: rgba(234,240,255,.25); }
.newsletter-form button {
  height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  border: none;
  background: rgba(86,140,255,.65);
  color: white;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: filter .15s, transform .15s;
}
.newsletter-form button:hover { filter: brightness(1.1); transform: translateY(-1px); }

.footer-newsletter-text {
  font-size: 11px;
  color: rgba(234,240,255,.25);
  margin-top: 6px;
}

/* Footer bottom row: social + copyright inline */
.footer-bottom-row {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: rgba(234,240,255,.4);
  display: grid;
  place-items: center;
  font-size: 13px;
  text-decoration: none;
  transition: background .15s, color .15s, transform .15s;
}
.footer-social a:hover { background: rgba(86,140,255,.15); color: #8ab4ff; transform: translateY(-2px); }

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 11px;
  color: rgba(234,240,255,.28);
}
.footer-legal { list-style: none; display: flex; gap: 14px; }
.footer-legal li a { color: rgba(234,240,255,.28); text-decoration: none; transition: color .15s; }
.footer-legal li a:hover { color: var(--text); }

@media (max-width: 600px) {
  .footer-container { gap: 20px; }
  .footer-bottom-row { flex-direction: column; align-items: center; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
}


/* ===== RESPONSIVE NAVBAR ===== */
/* Always hide desktop nav+profile on anything below 1100px; show hamburger */
@media (max-width: 1099px) {
  .nav-menu      { display: none !important; }
  .user-profile  { display: none !important; }
  .menu-toggle   { display: grid !important; }
}

/* Hero: side-by-side on wide, stack on medium/small */
@media (max-width: 860px) {
  .hero {
    flex-direction: column;
    min-height: auto;
    padding-top: 48px;
    padding-bottom: 56px;
    text-align: center;
    gap: 40px;
  }
  .hero-badge  { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-card-wrap { width: 100%; max-width: 380px; margin: 0 auto; }
  .hero-glow-1, .hero-glow-2 { opacity: .5; }
}

@media (max-width: 700px) {
  .hero-card-wrap { max-width: 320px; }
  .hero-title { font-size: clamp(36px, 10vw, 56px); }
  .hero-sub   { font-size: 15px; }
}

@media (max-width: 860px) {
  /* Intro section: stack vertically, show grid below text */
  .intro-section .row { flex-direction: column; }
  .intro-visual {
    display: flex !important;
    justify-content: center;
    width: 100%;
  }
  .intro-stats-grid {
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
  .intro-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .isg-card { padding: 14px 8px; border-radius: 14px; }
  .isg-icon { width: 36px; height: 36px; font-size: 15px; border-radius: 10px; }
  .isg-lbl  { font-size: 10px; }
}

@media (max-width: 768px) {
  /* Hide profile dropdown on mobile — use drawer instead */
  .profile-dropdown {
    display: none;
  }

  /* Make sure navbar doesn't overflow */
  .navbar-container {
    overflow: hidden;
  }

  /* Hide desktop nav links on mobile */
  .nav-menu {
    display: none;
  }
}





