/* ===================================================================
   UniMate Team — Premium Design System
   Stripe / Linear / Apple aesthetic
   =================================================================== */

/* ─── Tokens ─── */
:root {
  --accent: #0ea5e9;
  --accent-2: #0284c7;
  --accent-rgb: 14, 165, 233;
  --bg: #f7f8fc;
  --bg-2: #eef1f6;
  --surface: #ffffff;
  --surface-dim: #f1f4f9;
  --surface-glass: rgba(255, 255, 255, .62);
  --text: #0f172a;
  --text-2: #334155;
  --muted: #64748b;
  --border: rgba(226, 232, 240, .72);
  --ring: rgba(14, 165, 233, .38);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, .05);
  --shadow-md: 0 8px 28px rgba(15, 23, 42, .08);
  --shadow-lg: 0 24px 56px rgba(15, 23, 42, .11);
  --shadow-glow: 0 0 48px rgba(var(--accent-rgb), .18);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --transition: .28s cubic-bezier(.4, 0, .2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;
}

[data-theme="dark"] {
  --bg: #050a18;
  --bg-2: #0a1128;
  --surface: #0d1526;
  --surface-dim: #111c32;
  --surface-glass: rgba(13, 21, 38, .68);
  --text: #e2e8f0;
  --text-2: #94a3b8;
  --muted: #64748b;
  --border: rgba(30, 41, 59, .65);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .18);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, .26);
  --shadow-lg: 0 24px 56px rgba(0, 0, 0, .36);
}

/* Region accent overrides */
body[data-region="usa"] {
  --accent: #ef4444;
  --accent-2: #dc2626;
  --accent-rgb: 239, 68, 68;
}

body[data-region="eu"] {
  --accent: #8b5cf6;
  --accent-2: #6d28d9;
  --accent-rgb: 139, 92, 246;
}

body[data-region="asia"] {
  --accent: #0ea5e9;
  --accent-2: #0284c7;
  --accent-rgb: 14, 165, 233;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

/* ─── Layout ─── */
.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

/* ─── Particles Canvas ─── */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .4;
}

[data-theme="dark"] #particles-canvas {
  opacity: .55;
}

/* ─── Ambient Blobs ─── */
.ambient-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}

.blob-1 {
  width: 520px;
  height: 520px;
  background: rgba(var(--accent-rgb), .22);
  top: -160px;
  left: -140px;
  animation: blobFloat 18s ease-in-out infinite;
}

.blob-2 {
  width: 480px;
  height: 480px;
  background: rgba(var(--accent-rgb), .15);
  right: -100px;
  top: 30%;
  animation: blobFloat 22s ease-in-out infinite reverse;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: rgba(var(--accent-rgb), .12);
  left: 40%;
  bottom: -200px;
  animation: blobFloat 20s ease-in-out infinite 4s;
}

[data-theme="dark"] .blob-1 {
  opacity: .35;
}

[data-theme="dark"] .blob-2 {
  opacity: .25;
}

[data-theme="dark"] .blob-3 {
  opacity: .2;
}

/* ─── Topbar ─── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.topbar.scrolled {
  background: var(--surface-glass);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  font-family: var(--font-display);
  position: relative;
  z-index: 2;
}

.brand-logo {
  width: 34px;
  height: 34px;
  display: block;
  flex-shrink: 0;
}

.brand-logo svg {
  width: 100%;
  height: 100%;
}

.brand-sub {
  font-weight: 600;
  color: var(--muted);
  font-size: .78em;
}

/* Nav pill */
.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-glass);
  backdrop-filter: blur(10px);
  position: relative;
}

.nav-link {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link.active {
  color: var(--text);
}

.nav-indicator {
  position: absolute;
  height: calc(100% - 8px);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: left .32s cubic-bezier(.4, 0, .2, 1), width .32s cubic-bezier(.4, 0, .2, 1);
  top: 4px;
  z-index: 0;
  pointer-events: none;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.icon-btn:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 22px rgba(var(--accent-rgb), .28);
  transition: transform var(--transition), box-shadow var(--transition);
}

.cta-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(var(--accent-rgb), .36);
}

/* ─── Hero ─── */
.hero {
  padding: 56px 0 0;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), .1);
  border: 1px solid rgba(var(--accent-rgb), .2);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(var(--accent-rgb), .5);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.8vw, 76px);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.05em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  margin-top: 20px;
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
}

.hero-lead strong {
  color: var(--text);
  font-weight: 700;
}

.hero-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-glow {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 28px rgba(var(--accent-rgb), .32);
}

.btn-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(var(--accent-rgb), .42);
}

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

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Hero visual — Dashboard card */
.hero-visual {
  position: relative;
  z-index: 2;
}

.dashboard-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  overflow: hidden;
  position: relative;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: conic-gradient(from 180deg at 50% 50%, transparent, rgba(var(--accent-rgb), .08), transparent);
  z-index: 0;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.dash-dots {
  display: flex;
  gap: 6px;
}

.dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dash-dots span:nth-child(1) {
  background: #ef4444;
}

.dash-dots span:nth-child(2) {
  background: #f59e0b;
}

.dash-dots span:nth-child(3) {
  background: #22c55e;
}

.dash-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.dash-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
}

.accent-glow {
  text-shadow: 0 0 20px rgba(var(--accent-rgb), .4);
}

.dash-chart {
  position: relative;
  z-index: 1;
  height: 160px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-dim);
  padding: 14px 12px 14px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 8px;
}

.bar {
  height: var(--h);
  border-radius: 6px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  position: relative;
  opacity: .55;
  transition: opacity var(--transition), transform var(--transition);
}

.bar.active,
.bar:hover {
  opacity: 1;
  transform: scaleY(1.04);
}

.bar-tip {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0;
  transition: opacity var(--transition);
  white-space: nowrap;
}

.bar:hover .bar-tip {
  opacity: 1;
}

.dash-stats {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.stat {
  padding: 10px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  background: var(--surface);
}

.stat-label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.stat-value {
  display: block;
  margin-top: 3px;
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-display);
}

.stat-value.up {
  color: #10b981;
}

/* Metrics strip */
.metrics-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.metric-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.metric-card:hover {
  border-color: rgba(var(--accent-rgb), .35);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.metric-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -.03em;
}

.metric-card p {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ─── Trust ─── */
.trust {
  padding: 36px 0;
  position: relative;
  z-index: 1;
}

.trust-strip {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.logo-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  opacity: .6;
  transition: opacity var(--transition);
}

.logo-item:hover {
  opacity: 1;
}

.logo-item i {
  font-size: 18px;
}

/* ─── Section heads ─── */
.section-head {
  margin-bottom: 32px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.8vw, 58px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.045em;
}

/* ─── Regions ─── */
.regions {
  padding: 72px 0;
  position: relative;
  z-index: 1;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}

/* Region tabs */
.region-tabs {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: var(--surface-dim);
  position: relative;
}

.region-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
  z-index: 1;
}

.region-tab.active {
  color: var(--text);
}

.tab-flag {
  font-size: 15px;
}

.tab-slider {
  position: absolute;
  height: calc(100% - 6px);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: left .3s cubic-bezier(.4, 0, .2, 1), width .3s cubic-bezier(.4, 0, .2, 1);
  top: 3px;
  z-index: 0;
  pointer-events: none;
}

.slider-progress {
  flex: 1;
  min-width: 120px;
}

.progress-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.progress-track {
  height: 4px;
  border-radius: 999px;
  background: var(--surface-dim);
  overflow: hidden;
}

.progress-fill {
  display: block;
  height: 100%;
  width: 33.33%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width .36s ease;
}

.slider-nav {
  display: flex;
  gap: 6px;
}

.nav-arrow {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 13px;
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.nav-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: var(--shadow-glow);
}

/* Region slider */
.region-swiper {
  overflow: visible;
}

.region-slide {
  border-radius: 28px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  padding: clamp(20px, 3vw, 32px);
  position: relative;
  overflow: hidden;
}

.slide-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--glow);
  opacity: .08;
  filter: blur(80px);
  pointer-events: none;
  transition: opacity .5s ease;
}

.region-slide:hover .slide-glow {
  opacity: .14;
}

.region-header {
  margin-bottom: 20px;
}

.region-label-wrap {
  margin-bottom: 10px;
}

.region-code {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.region-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.045em;
}

.region-subtitle {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
}

.region-desc {
  margin-top: 10px;
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--text-2);
  max-width: 680px;
  line-height: 1.65;
}

.region-chips {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(var(--accent-rgb), .25);
  background: rgba(var(--accent-rgb), .06);
  color: var(--accent);
}

/* Member cards */
.members-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.member-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(168deg, var(--surface), var(--surface-dim));
  box-shadow: var(--shadow-md);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  animation: memberIn .5s ease both;
  animation-delay: var(--delay, 0s);
}

.member-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), .35);
  box-shadow: 0 20px 48px rgba(var(--accent-rgb), .16);
}

.member-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), .08);
  filter: blur(40px);
  pointer-events: none;
  transition: opacity var(--transition);
}

.member-card:hover .member-glow {
  opacity: 1.5;
}

.member-avatar-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
}

.member-avatar-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(var(--accent-rgb), .2);
}

.status-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #22c55e;
  border: 3px solid var(--surface);
  box-shadow: 0 0 8px rgba(34, 197, 94, .5);
}

.member-role {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}

.member-name {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -.02em;
}

.member-bio {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.member-social {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  gap: 8px;
}

.member-social a {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.member-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 4px 14px rgba(var(--accent-rgb), .2);
}

/* ─── Playbook ─── */
.playbook {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.playbook-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.principle-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.principle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), .3);
  box-shadow: 0 16px 40px rgba(var(--accent-rgb), .14);
}

.principle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity var(--transition);
}

.principle-card:hover::before {
  opacity: 1;
}

.principle-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(var(--accent-rgb), .1);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 14px;
}

.principle-card h3 {
  font-size: 18px;
  font-weight: 800;
  font-family: var(--font-display);
}

.principle-card p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── Join CTA ─── */
.join {
  padding: 0 0 100px;
  position: relative;
  z-index: 1;
}

.join-card {
  border-radius: 28px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  padding: clamp(32px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}

.join-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at bottom right, rgba(var(--accent-rgb), .1), transparent 70%);
  pointer-events: none;
}

.join-content {
  position: relative;
  z-index: 1;
}

.join-desc {
  margin: 14px 0 0;
  font-size: 17px;
  color: var(--text-2);
  max-width: 600px;
  line-height: 1.7;
}

.join-pattern {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 260px;
  height: 260px;
  border: 2px dashed rgba(var(--accent-rgb), .12);
  border-radius: 50%;
  pointer-events: none;
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  font-weight: 600;
  transition: color var(--transition);
}

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

/* ─── GSAP reveal classes ─── */
.gs-reveal {
  opacity: 0;
  transform: translateY(32px);
}

.gs-reveal-right {
  transform: translateX(40px);
  opacity: 0;
}

.gs-reveal-up {
  transform: translateY(40px);
  opacity: 0;
}

/* ─── Keyframes ─── */
@keyframes blobFloat {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -28px, 0) scale(1.08);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: .5;
  }
}

@keyframes memberIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Focus ─── */
:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px var(--ring);
  border-radius: var(--radius-xs);
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(100, 116, 139, .5);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(100, 116, 139, .7);
}

/* ─── Media Queries ─── */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 520px;
  }
}

@media (max-width: 960px) {
  .playbook-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .members-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-pill {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1240px, calc(100% - 24px));
  }

  .metrics-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .slider-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .members-grid {
    grid-template-columns: 1fr;
  }

  .playbook-grid {
    grid-template-columns: 1fr;
  }

  .dash-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    min-height: auto;
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── SVG Grid Pattern ─── */
.grid-pattern {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  color: var(--muted);
  opacity: .5;
}

[data-theme="dark"] .grid-pattern {
  opacity: .35;
}

/* ─── SVG Decorations ─── */
.hero-deco {
  position: absolute;
  right: -60px;
  top: -40px;
  width: 220px;
  height: 220px;
  pointer-events: none;
  animation: spinSlow 60s linear infinite;
}

.section-deco {
  position: absolute;
  pointer-events: none;
  animation: spinSlow 50s linear infinite reverse;
}

.section-deco-globe {
  width: 160px;
  height: 160px;
  right: -30px;
  top: -20px;
}

.regions {
  position: relative;
}

.join-deco {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 240px;
  height: 240px;
  pointer-events: none;
  animation: spinSlow 55s linear infinite;
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ─── About Section ─── */
.about {
  padding: 0 0 80px;
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.about-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  padding: 24px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb), .3);
  box-shadow: 0 16px 40px rgba(var(--accent-rgb), .14);
}

.about-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: block;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}

.about-card p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 720px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-deco,
  .section-deco-globe,
  .join-deco {
    display: none;
  }
}