@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

:root {
  /* Primary palette */
  --color-primary: #a78bfa;
  --color-primary-light: #c4b5fd;
  --color-primary-dark: #7c3aed;
  --color-primary-50: rgba(167, 139, 250, 0.1);
  --color-accent: #38bdf8;
  --color-accent-light: #7dd3fc;
  --color-accent-50: rgba(56, 189, 248, 0.1);
  --color-highlight: #fbbf24;
  --color-success: #34d399;
  --color-rose: #fb7185;

  /* Dark neutrals */
  --color-bg: #09090b;
  --color-surface: #0c0c10;
  --color-surface-elevated: #111316;
  --color-text: #f0f0f3;
  --color-text-secondary: #8b8d9a;
  --color-text-muted: #55576a;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-light: rgba(255, 255, 255, 0.04);

  /* Typography */
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-padding: 6rem 1.5rem;
  --container-max: 1140px;

  /* Misc */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 40px rgba(167, 139, 250, 0.12);
  --shadow-glow-accent: 0 0 40px rgba(56, 189, 248, 0.1);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::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-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: clip;
}

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

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 1px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--color-text);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #6d28d9 50%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-sm), 0 4px 16px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
  box-shadow: var(--shadow-md), 0 6px 24px rgba(124, 58, 237, 0.55);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-xs);
}

.btn-outline::after {
  display: none;
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm), 0 0 0 3px var(--color-primary-50);
  background: rgba(167, 139, 250, 0.05);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius);
}
._nav_1gjmv_1 {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 9, 11, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

._nav_1gjmv_1::after {
  display: none;
}

._inner_1gjmv_14 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* ── Logo ── */
._logo_1gjmv_22 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

._logoImg_1gjmv_28 {
  border-radius: 8px;
}

._logoText_1gjmv_32 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.5px;
}

/* ── Nav links ── */
._links_1gjmv_40 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

._navLink_1gjmv_46 {
  font-weight: 500;
  font-size: 0.925rem;
  color: var(--color-text-secondary);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-xs);
  transition: all var(--transition);
}

._navLink_1gjmv_46:hover {
  color: var(--color-primary);
  background: var(--color-primary-50);
}

._signInBtn_1gjmv_60 {
  margin-left: 0.5rem;
  padding: 0.55rem 1.4rem;
  font-size: 0.9rem;
}

/* ── User menu ── */
._userMenu_1gjmv_67 {
  position: relative;
  margin-left: 0.5rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

._userBtn_1gjmv_74 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.6rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-sans);
}

._userBtn_1gjmv_74:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-border);
}

._userAvatar_1gjmv_92 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-accent));
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

._greeting_1gjmv_106 {
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.9rem;
}

._chevron_1gjmv_112 {
  color: var(--color-text-muted);
  transition: transform var(--transition);
}

._chevronOpen_1gjmv_117 {
  transform: rotate(180deg);
}

/* ── Dropdown ── */
._dropdown_1gjmv_122 {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 180px;
  background: var(--color-surface-elevated);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.03);
  padding: 0.35rem;
  z-index: 200;
  animation: _fadeInUp_1gjmv_1 0.15s ease-out;
}

._dropdownItem_1gjmv_136 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-xs);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

._dropdownItem_1gjmv_136:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
}

._dropdownItem_1gjmv_136:last-child:hover {
  color: var(--color-rose);
}

._dropdownDivider_1gjmv_163 {
  height: 1px;
  background: var(--color-border);
  margin: 0.25rem 0;
}

/* ── Hamburger ── */
._hamburger_1gjmv_170 {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-xs);
  transition: background var(--transition);
}

._hamburger_1gjmv_170:hover {
  background: var(--color-surface-elevated);
}

._hamburger_1gjmv_170 span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

._hamburgerOpen_1gjmv_196 span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

._hamburgerOpen_1gjmv_196 span:nth-child(2) {
  opacity: 0;
}

._hamburgerOpen_1gjmv_196 span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  ._inner_1gjmv_14 {
    height: 64px;
  }

  ._hamburger_1gjmv_170 {
    display: flex;
  }

  ._links_1gjmv_40 {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 150;
    flex-direction: column;
    background: rgba(9, 9, 11, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
  }

  ._links_1gjmv_40._open_1gjmv_233 {
    display: flex;
  }

  ._navLink_1gjmv_46 {
    width: 100%;
    padding: 0.75rem 0.9rem;
  }

  ._signInBtn_1gjmv_60 {
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
  }

  ._userMenu_1gjmv_67 {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
    margin-top: 0.5rem;
    width: 100%;
  }
}
._footer_14giu_1 {
  color: #64748b;
  margin-top: auto;
}

._inner_14giu_6 {
  padding: 0 0 2rem;
}

._top_14giu_10 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* ── Brand column ── */
._logo_14giu_19 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

._logoText_14giu_26 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #e2e8f0;
  letter-spacing: -0.3px;
}

._tagline_14giu_33 {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 300px;
  color: #64748b;
}

/* ── Link columns ── */
._linkCol_14giu_41 {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

._linkCol_14giu_41 h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.25rem;
}

._linkCol_14giu_41 a {
  font-size: 0.9rem;
  color: #64748b;
  transition: color var(--transition);
}

._linkCol_14giu_41 a:hover {
  color: var(--color-primary);
}

/* ── Bottom ── */
._bottom_14giu_67 {
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.2);
}

._bottomLink_14giu_73 {
  color: rgba(255, 255, 255, 0.25);
  transition: color var(--transition);
}

._bottomLink_14giu_73:hover {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  ._top_14giu_10 {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  ._tagline_14giu_33 {
    max-width: 100%;
  }

  ._logo_14giu_19 {
    justify-content: center;
  }

  ._linkCol_14giu_41 {
    align-items: center;
  }

  ._bottom_14giu_67 {
    text-align: center;
  }
}
/* ═══════════════════════════════════
   HERO
   ═══════════════════════════════════ */
._hero_1c2ws_4 {
  position: relative;
  margin-top: -72px;
  padding: calc(8rem + 72px) 1.5rem 5rem;
  text-align: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

._heroBg_1c2ws_15 {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

._orb1_1c2ws_21 {
  position: absolute;
  width: 1600px;
  height: 1600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.10) 0%, rgba(99, 102, 241, 0.03) 30%, transparent 50%);
  top: -300px;
  right: -200px;
}

._orb2_1c2ws_31 {
  position: absolute;
  width: 1440px;
  height: 1440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.07) 0%, rgba(6, 182, 212, 0.02) 30%, transparent 50%);
  bottom: -200px;
  left: -200px;
}

._orb3_1c2ws_41 {
  position: absolute;
  width: 960px;
  height: 960px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.04) 0%, rgba(245, 158, 11, 0.015) 30%, transparent 50%);
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
}

._gridOverlay_1c2ws_52 {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(167, 139, 250, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 139, 250, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black 20%, transparent 80%);
}


._heroInner_1c2ws_64 {
  position: relative;
  z-index: 1;
  animation: _fadeInUp_1c2ws_1 0.8s ease-out;
}

._heroBadge_1c2ws_70 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(167, 139, 250, 0.08);
  border: 1px solid rgba(167, 139, 250, 0.08);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 2rem;
  color: var(--color-primary-light);
}

._badgeDot_1c2ws_84 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
  animation: _pulse-glow_1c2ws_1 2s ease-in-out infinite;
}

._heroTitle_1c2ws_93 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.08;
  max-width: 760px;
  margin: 0 auto 1.5rem;
  letter-spacing: -2px;
  color: var(--color-text);
}

._gradient_1c2ws_103 {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-highlight) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

._heroSub_1c2ws_110 {
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

._heroCta_1c2ws_118 {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  ._hero_1c2ws_4 {
    padding: 4rem 1.5rem 3rem;
  }
  ._heroTitle_1c2ws_93 {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }
  ._heroSub_1c2ws_110 {
    font-size: 1.05rem;
  }
}


/* ═══════════════════════════════════
   SHARED SECTION HEADER
   ═══════════════════════════════════ */
._sectionHeader_1c2ws_142 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ═══════════════════════════════════
   TRACKS
   ═══════════════════════════════════ */
._tracksSection_1c2ws_153 {
  position: relative;
}

._tracksSection_1c2ws_153::before {
  content: "";
  position: absolute;
  width: 750px;
  height: 750px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
  top: -200px;
  left: -150px;
  pointer-events: none;
}

._tracksSection_1c2ws_153::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.025) 0%, transparent 50%);
  bottom: -150px;
  right: -100px;
  pointer-events: none;
}

._trackGrid_1c2ws_181 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

._trackCard_1c2ws_189 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

._trackCard_1c2ws_189:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(167, 139, 250, 0.08);
  border-color: rgba(167, 139, 250, 0.25);
  background: linear-gradient(145deg, rgba(167, 139, 250, 0.06) 0%, rgba(56, 189, 248, 0.03) 100%);
}

._trackCardAccent_1c2ws_210 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity var(--transition);
}

._trackCard_1c2ws_189:hover ._trackCardAccent_1c2ws_210 {
  opacity: 1;
}

._trackIconWrap_1c2ws_224 {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

._trackCardTitle_1c2ws_236 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

._trackCardDesc_1c2ws_243 {
  color: var(--color-text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
  flex: 1;
}

._trackCardLink_1c2ws_250 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 1.25rem;
  transition: gap 0.25s;
}

._trackCard_1c2ws_189:hover ._trackCardLink_1c2ws_250 {
  gap: 0.75rem;
}

/* ═══════════════════════════════════
   PARTNERS / HOW IT WORKS
   ═══════════════════════════════════ */
._partnersSection_1c2ws_268 {
  position: relative;
}

._partnersSection_1c2ws_268::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.025) 0%, transparent 50%);
  top: -180px;
  right: -150px;
  pointer-events: none;
}

._partnersGrid_1c2ws_284 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

._partnerCard_1c2ws_292 {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all var(--transition);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

._partnerCard_1c2ws_292:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(56, 189, 248, 0.06);
  border-color: rgba(56, 189, 248, 0.2);
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.05) 0%, rgba(167, 139, 250, 0.03) 100%);
}

._partnerIcon_1c2ws_309 {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 1rem;
}

._partnerCard_1c2ws_292 h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

._partnerCard_1c2ws_292 p {
  color: var(--color-text-secondary);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ═══════════════════════════════════
   WHY US
   ═══════════════════════════════════ */
._why_1c2ws_331 {
  position: relative;
}

._why_1c2ws_331::before {
  content: "";
  position: absolute;
  width: 750px;
  height: 750px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.025) 0%, transparent 50%);
  bottom: -200px;
  left: -150px;
  pointer-events: none;
}

._why_1c2ws_331::after {
  content: "";
  position: absolute;
  width: 530px;
  height: 530px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.02) 0%, transparent 50%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

._whyGrid_1c2ws_359 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

._whyItem_1c2ws_367 {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all var(--transition);
}

._whyItem_1c2ws_367:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.04);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 0 40px rgba(167, 139, 250, 0.04);
}

._whyIconWrap_1c2ws_381 {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.12), rgba(56, 189, 248, 0.08));
  border: 1px solid rgba(167, 139, 250, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  animation: _float_1c2ws_1 6s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
}

._whyIcon_1c2ws_381 {
  font-size: 1.75rem;
}

._whyItem_1c2ws_367 h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

._whyItem_1c2ws_367 p {
  color: var(--color-text-secondary);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ═══════════════════════════════════
   FOUNDER SPOTLIGHT
   ═══════════════════════════════════ */
._team_1c2ws_415 {
  position: relative;
}

._team_1c2ws_415::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.03) 0%, transparent 50%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

/* ── Founder block ── */
._founderBlock_1c2ws_433 {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 2.5rem;
}

._founderName_1c2ws_440 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--color-text);
}

._founderRole_1c2ws_449 {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

._founderBio_1c2ws_456 {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto;
}

._founderLink_1c2ws_464 {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  color: var(--color-text);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 2px;
  font-weight: 600;
  transition: text-decoration-color var(--transition);
}

._founderLink_1c2ws_464:hover {
  text-decoration-color: var(--color-text);
}

._founderLink_1c2ws_464 svg {
  flex-shrink: 0;
  position: relative;
  top: 0.05em;
}

/* ── Videos — thumbnail with play overlay ── */
._videosGrid_1c2ws_487 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

._videoCard_1c2ws_495 {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: all 0.5s ease;
  box-shadow:
    0 2px 20px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

._videoCard_1c2ws_495:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.25);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(124, 58, 237, 0.12),
    inset 0 0 0 1px rgba(167, 139, 250, 0.08);
}

/* Thumbnail image */
._videoThumb_1c2ws_522 {
  position: relative;
  overflow: hidden;
}

._videoThumb_1c2ws_522 img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.85) saturate(0.8);
}

._videoCard_1c2ws_495:hover ._videoThumb_1c2ws_522 img {
  transform: scale(1.03);
  filter: brightness(0.95) saturate(1);
}

/* Multi-layer tinted overlay */
._playOverlay_1c2ws_542 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(9, 9, 11, 0.4) 100%),
    linear-gradient(180deg, rgba(9, 9, 11, 0.15) 0%, rgba(9, 9, 11, 0.55) 100%),
    linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(56, 189, 248, 0.05) 100%);
  transition: all 0.5s ease;
}

._videoCard_1c2ws_495:hover ._playOverlay_1c2ws_542 {
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(9, 9, 11, 0.25) 100%),
    linear-gradient(180deg, rgba(9, 9, 11, 0) 0%, rgba(9, 9, 11, 0.3) 100%),
    linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(56, 189, 248, 0.02) 100%);
}

/* Frosted glass play button */
._playBtn_1c2ws_563 {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

._videoCard_1c2ws_495:hover ._playBtn_1c2ws_563 {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.35);
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.25);
}

._playBtn_1c2ws_563 svg {
  width: 22px;
  height: 22px;
  margin-left: 3px; /* optical center for triangle */
  fill: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Active iframe state */
._videoWrap_1c2ws_594 {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

._videoWrap_1c2ws_594 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  ._founderRow_1c2ws_612 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  ._credentials_1c2ws_618 {
    justify-content: center;
  }

  ._founderBio_1c2ws_456 {
    text-align: center;
  }

  ._founderLinks_1c2ws_626 {
    justify-content: center;
  }

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

/* ═══════════════════════════════════
   CTA
   ═══════════════════════════════════ */
._cta_1c2ws_638 {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 6rem 1.5rem 5rem;
}

._ctaBg_1c2ws_645 {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

._ctaOrb1_1c2ws_651 {
  position: absolute;
  width: 1280px;
  height: 1280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.11) 0%, transparent 50%);
  top: -100px;
  right: -100px;
}

._ctaOrb2_1c2ws_661 {
  position: absolute;
  width: 1120px;
  height: 1120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.07) 0%, transparent 50%);
  bottom: -100px;
  left: -100px;
}

._ctaOrb3_1c2ws_671 {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.06) 0%, transparent 50%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

._ctaInner_1c2ws_682 {
  position: relative;
  z-index: 1;
}

._cta_1c2ws_638 h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}

._cta_1c2ws_638 p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

._ctaBtn_1c2ws_703 {
  background: linear-gradient(135deg, var(--color-primary-dark), #6d28d9);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-md), 0 4px 24px rgba(124, 58, 237, 0.4);
}

._ctaBtn_1c2ws_703::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
}

._ctaBtn_1c2ws_703:hover {
  box-shadow: var(--shadow-xl), 0 8px 40px rgba(124, 58, 237, 0.55);
}

._ctaBtns_1c2ws_722 {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

._ctaEmail_1c2ws_729 {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.3px;
}

._ctaBtnAlt_1c2ws_736 {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}

._ctaBtnAlt_1c2ws_736::after {
  display: none;
}

._ctaBtnAlt_1c2ws_736:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  ._cta_1c2ws_638 {
    padding: 3.5rem 1.5rem;
  }
  ._cta_1c2ws_638 h2 {
    font-size: 1.75rem;
  }
}
/* ── Split layout ── */
._wrapper_1e7we_2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
  position: relative;
}

/* ── Left brand panel ── */
._brandPanel_1e7we_10 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

._brandContent_1e7we_18 {
  position: relative;
  z-index: 1;
  max-width: 380px;
}

._brandLogo_1e7we_24 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2.5rem;
}

._brandHeading_1e7we_34 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

._brandSub_1e7we_43 {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.7;
}

._brandDecor_1e7we_49 {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

._decorOrb1_1e7we_55 {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.09) 0%, transparent 50%);
  top: -150px;
  right: -120px;
}

._decorOrb2_1e7we_65 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.06) 0%, transparent 50%);
  bottom: -120px;
  left: -100px;
}

._decorOrb3_1e7we_75 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.04) 0%, transparent 50%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

._decorGrid_1e7we_86 {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(167, 139, 250, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 139, 250, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}

@keyframes _float_1e7we_1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Right form panel ── */
._formPanel_1e7we_103 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

._formPanel_1e7we_103::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

._formPanel_1e7we_103::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

._form_1e7we_103 {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
}

._title_1e7we_142 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

._subtitle_1e7we_150 {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

._label_1e7we_156 {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

._input_1e7we_164 {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.7rem 0.85rem;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface-elevated);
  color: var(--color-text);
  transition: all var(--transition);
}

._input_1e7we_164::placeholder {
  color: var(--color-text-muted);
}

._input_1e7we_164:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.15);
}

._row_1e7we_188 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

._error_1e7we_194 {
  background: rgba(220, 38, 38, 0.1);
  color: #fca5a5;
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

._error_1e7we_194::before {
  content: "!";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #dc2626;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

._passwordRules_1e7we_223 {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

._passwordRules_1e7we_223 li::before {
  display: inline-block;
  width: 1rem;
  margin-right: 0.25rem;
}

._rulePassed_1e7we_238 {
  color: var(--color-success);
}

._rulePassed_1e7we_238::before {
  content: "\2713";
}

._ruleFailed_1e7we_246 {
  color: var(--color-text-muted);
}

._ruleFailed_1e7we_246::before {
  content: "\2717";
}

._forgotRow_1e7we_254 {
  text-align: right;
  font-size: 0.85rem;
  margin-top: -0.5rem;
  margin-bottom: 0.5rem;
}

._checkbox_1e7we_261 {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
  cursor: pointer;
}

._checkbox_1e7we_261 input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--color-primary);
  cursor: pointer;
}

._submit_1e7we_277 {
  width: 100%;
  justify-content: center;
  margin-top: 0.25rem;
  padding: 0.85rem;
}

._divider_1e7we_284 {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

._divider_1e7we_284::before,
._divider_1e7we_284::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

._googleBtn_1e7we_301 {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface-elevated);
  color: var(--color-text);
  text-decoration: none;
  transition: all var(--transition);
}

._googleBtn_1e7we_301:hover {
  border-color: var(--color-text-muted);
  background: var(--color-surface);
}

._webviewNotice_1e7we_323 {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--color-text-secondary);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  text-align: center;
}

._webviewNotice_1e7we_323 p {
  margin: 0 0 0.6rem;
}

._copyUrlBtn_1e7we_339 {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  background: transparent;
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

._copyUrlBtn_1e7we_339:hover {
  background: var(--color-primary);
  color: #fff;
}

._footer_1e7we_359 {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-top: 1.5rem;
}

._link_1e7we_366 {
  color: var(--color-primary);
  font-weight: 600;
  transition: color var(--transition);
}

._link_1e7we_366:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

/* ── Mobile: stack panels ── */
@media (max-width: 768px) {
  ._wrapper_1e7we_2 {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  ._brandPanel_1e7we_10 {
    padding: 2.5rem 1.5rem 2rem;
  }

  ._brandHeading_1e7we_34 {
    font-size: 1.5rem;
  }

  ._formPanel_1e7we_103 {
    padding: 2rem 1.5rem 3rem;
  }

  ._row_1e7we_188 {
    grid-template-columns: 1fr;
  }
}
/* ═══════════════════════════════════
   HERO HEADER
   ═══════════════════════════════════ */
._hero_gcmwg_4 {
  position: relative;
  margin-top: -72px;
  padding: calc(7rem + 72px) 1.5rem 3.5rem;
  text-align: center;
}

._heroBg_gcmwg_11 {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

._orb1_gcmwg_17 {
  position: absolute;
  width: 1400px;
  height: 1400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.11) 0%, transparent 50%);
  top: -200px;
  right: -100px;
}

._orb2_gcmwg_27 {
  position: absolute;
  width: 1100px;
  height: 1100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.06) 0%, transparent 50%);
  bottom: -100px;
  left: -100px;
}

._gridOverlay_gcmwg_37 {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(167, 139, 250, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(167, 139, 250, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 80%);
}

@keyframes _float_gcmwg_1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

._heroInner_gcmwg_53 {
  position: relative;
  z-index: 1;
  animation: _fadeInUp_gcmwg_1 0.6s ease-out;
}

._heroTitle_gcmwg_59 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 0.75rem;
}

._gradient_gcmwg_67 {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-highlight) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

._heroSub_gcmwg_74 {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  ._hero_gcmwg_4 {
    padding: calc(5rem + 56px) 1.5rem 2.5rem;
  }
  ._heroTitle_gcmwg_59 {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }
}

/* ═══════════════════════════════════
   CONTENT SECTION
   ═══════════════════════════════════ */
._content_gcmwg_95 {
  padding: 3rem 1.5rem 5rem;
}

/* ── Filter tabs ── */
._filters_gcmwg_100 {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

._filterTab_gcmwg_107 {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  border: 1.5px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}

._filterTab_gcmwg_107:hover {
  border-color: rgba(167, 139, 250, 0.15);
  color: var(--color-text);
  background: rgba(167, 139, 250, 0.06);
}

._filterTabActive_gcmwg_129 {
  background: linear-gradient(135deg, var(--color-primary-dark), #6d28d9);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

._filterTabActive_gcmwg_129:hover {
  background: linear-gradient(135deg, #6d28d9, var(--color-primary-dark));
  border-color: transparent;
  color: #fff;
}

._filterIcon_gcmwg_142 {
  display: inline-flex;
  align-items: center;
}

/* ═══════════════════════════════════
   COURSE CARDS
   ═══════════════════════════════════ */
._grid_gcmwg_37 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

._card_gcmwg_156 {
  position: relative;
  background: var(--color-surface-elevated);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  animation: _fadeInUp_gcmwg_1 0.4s ease-out both;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

@keyframes _fadeInUp_gcmwg_1 {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Colored top accent bar — uses track color */
._cardAccent_gcmwg_177 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--track-color), transparent 80%);
  opacity: 0.7;
}

._card_gcmwg_156:hover {
  border-color: var(--track-color-25);
  box-shadow:
    0 0 0 1px var(--track-color-12),
    0 4px 24px var(--track-color-12),
    0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-6px);
}

._card_gcmwg_156:hover ._cardAccent_gcmwg_177 {
  opacity: 1;
}

._cardTop_gcmwg_200 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

/* Icon uses track color */
._cardIcon_gcmwg_208 {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--track-color-12);
  color: var(--track-color);
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.35s, box-shadow 0.35s;
}

._card_gcmwg_156:hover ._cardIcon_gcmwg_208 {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 4px 16px var(--track-color-25);
}

._trackBadge_gcmwg_229 {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--color-text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}

._cardTitle_gcmwg_244 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.3px;
}

._cardDesc_gcmwg_251 {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

._cardLink_gcmwg_258 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--track-color);
  margin-top: 0.5rem;
  transition: gap 0.25s;
}

._card_gcmwg_156:hover ._cardLink_gcmwg_258 {
  gap: 0.75rem;
}

/* ═══════════════════════════════════
   SKELETON LOADING
   ═══════════════════════════════════ */
._skeletonCard_gcmwg_276 {
  background: var(--color-surface-elevated);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

._skeletonIcon_gcmwg_286 {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: _skeletonShimmer_gcmwg_1 1.5s ease-in-out infinite;
}

._skeletonLine_gcmwg_295 {
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: _skeletonShimmer_gcmwg_1 1.5s ease-in-out infinite;
}

._skeletonLineShort_gcmwg_303 {
  width: 60%;
}

._skeletonLineWide_gcmwg_308 {
  width: 90%;
}

@keyframes _skeletonShimmer_gcmwg_1 {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

._loading_gcmwg_318,
._empty_gcmwg_319 {
  text-align: center;
  color: var(--color-text-secondary);
  padding: 4rem 0;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  ._grid_gcmwg_37 {
    grid-template-columns: 1fr;
  }
}
/* ── Hero header ── */
._heroHeader_1nfhf_2 {
  position: relative;
  margin: -6rem -1.5rem 0;
  padding: 6rem 1.5rem 3rem;
}

._heroOrb_1nfhf_8 {
  position: absolute;
  width: 1100px;
  height: 1100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
  top: -250px;
  right: -200px;
  pointer-events: none;
}

@keyframes _float_1nfhf_1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

._heroInner_1nfhf_24 {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
}

._backLink_1nfhf_31 {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
  transition: color 0.2s;
}

._backLink_1nfhf_31:hover {
  color: var(--color-primary-light);
}

._header_1nfhf_46 {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

._headerIcon_1nfhf_52 {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-accent));
  color: #fff;
  font-weight: 800;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4);
}

._trackBadge_1nfhf_67 {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 0.75rem;
  transition: background 0.2s;
  text-decoration: none;
}

._trackBadge_1nfhf_67:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

._title_1nfhf_89 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 0.5rem;
}

._description_1nfhf_97 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
}

/* ── Materials section ── */
._materialsSection_1nfhf_105 {
  padding-top: 1rem;
}

._materialsHeading_1nfhf_109 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.3px;
}

._group_1nfhf_117 {
  margin-bottom: 2.5rem;
}

._groupLabel_1nfhf_121 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 0.85rem;
}

._groupLabelStudent_1nfhf_132 {
  color: #34d399;
}

._groupLabelInstructor_1nfhf_137 {
  color: #38bdf8;
}

._groupLabelPartner_1nfhf_142 {
  color: #a78bfa;
}

._materialsList_1nfhf_147 {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

._materialCard_1nfhf_153 {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--color-surface-elevated);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

._materialCard_1nfhf_153::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity 0.25s;
}

._materialCard_1nfhf_153:hover {
  border-color: rgba(167, 139, 250, 0.12);
  background: rgba(167, 139, 250, 0.04);
  transform: translateX(4px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 0 40px rgba(167, 139, 250, 0.06);
}

._materialCard_1nfhf_153:hover::before {
  opacity: 1;
}

._materialIcon_1nfhf_190 {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

._materialIconSlides_1nfhf_200 {
  background: rgba(167, 139, 250, 0.12);
  color: #a78bfa;
}

._materialIconDocument_1nfhf_206 {
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
}

._materialIconVideo_1nfhf_212 {
  background: rgba(251, 113, 133, 0.12);
  color: #fb7185;
}

._materialIconLink_1nfhf_218 {
  background: rgba(52, 211, 153, 0.12);
  color: #34d399;
}

._materialType_1nfhf_224 {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-muted);
  margin-left: 0.5rem;
}

._materialTitle_1nfhf_233 {
  flex: 1;
  font-weight: 600;
  color: var(--color-text);
  font-size: 0.95rem;
}

._materialArrow_1nfhf_240 {
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: all 0.25s;
}

._materialCard_1nfhf_153:hover ._materialArrow_1nfhf_240 {
  color: var(--color-primary);
  transform: translateX(3px);
}

/* ── Sign in prompt ── */
._signInPrompt_1nfhf_252 {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--color-surface-elevated);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  margin-top: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

._signInPrompt_1nfhf_252 p {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* ── Access prompt (above locked materials) ── */
._accessPrompt_1nfhf_269 {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(167, 139, 250, 0.06);
  border: 1px solid rgba(167, 139, 250, 0.06);
  margin-bottom: 1.5rem;
}

._accessPrompt_1nfhf_269 p {
  color: var(--color-text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

._accessPromptLink_1nfhf_284 {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Locked material card ── */
._materialCardLocked_1nfhf_292 {
  cursor: default;
  opacity: 0.7;
}

._materialCardLocked_1nfhf_292:hover {
  border-color: var(--color-border);
  background: var(--color-surface-elevated);
  transform: none;
  box-shadow: none;
}

._materialCardLocked_1nfhf_292:hover::before {
  opacity: 0;
}

._lockIcon_1nfhf_308 {
  color: var(--color-text-muted);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

._previewBadge_1nfhf_315 {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.1rem 0.45rem;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  background: rgba(52, 211, 153, 0.12);
  color: #34d399;
  vertical-align: middle;
}

._previewHint_1nfhf_329 {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary-light);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── States ── */
._loading_1nfhf_338 {
  text-align: center;
  color: var(--color-text-secondary);
  padding: 3rem 0;
}

._errorBox_1nfhf_344 {
  text-align: center;
  padding: 4rem 0;
}

._errorBox_1nfhf_344 h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

._errorBox_1nfhf_344 p {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}

/* ── Skeleton ── */
._skeletonMaterials_1nfhf_362 {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

._skeletonMaterialCard_1nfhf_369 {
  height: 58px;
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: _skeletonShimmer_1nfhf_1 1.5s ease-in-out infinite;
}

@keyframes _skeletonShimmer_1nfhf_1 {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 768px) {
  ._heroHeader_1nfhf_2 {
    margin: -6rem -1.5rem 0;
    padding: 5rem 1.5rem 2.5rem;
  }

  ._header_1nfhf_46 {
    flex-direction: column;
    gap: 1rem;
  }

  ._title_1nfhf_89 {
    font-size: 1.75rem;
  }
}
.reveal .stretch,.reveal .r-stretch{max-width:none;max-height:none}.reveal pre.stretch code,.reveal pre.r-stretch code{height:100%;max-height:100%;box-sizing:border-box}.reveal .r-fit-text{display:inline-block;white-space:nowrap}.reveal .r-stack{display:grid;grid-template-rows:100%}.reveal .r-stack>*{grid-area:1/1;margin:auto}.reveal .r-vstack,.reveal .r-hstack{display:flex}.reveal .r-vstack img,.reveal .r-vstack video,.reveal .r-hstack img,.reveal .r-hstack video{min-width:0;min-height:0;object-fit:contain}.reveal .r-vstack{flex-direction:column;align-items:center;justify-content:center}.reveal .r-hstack{flex-direction:row;align-items:center;justify-content:center}.reveal .items-stretch{align-items:stretch}.reveal .items-start{align-items:flex-start}.reveal .items-center{align-items:center}.reveal .items-end{align-items:flex-end}.reveal .justify-between{justify-content:space-between}.reveal .justify-around{justify-content:space-around}.reveal .justify-start{justify-content:flex-start}.reveal .justify-center{justify-content:center}.reveal .justify-end{justify-content:flex-end}html.reveal-full-page{width:100%;height:100%;height:100vh;height:calc(var(--vh, 1vh) * 100);height:100dvh;overflow:hidden}.reveal-viewport{height:100%;overflow:hidden;position:relative;line-height:1;margin:0;background-color:#fff;color:#000;--r-controls-spacing: 12px;--r-overlay-header-height: 40px;--r-overlay-margin: 0px;--r-overlay-padding: 6px;--r-overlay-gap: 5px}@media screen and (max-width:1024px),(max-height:768px){.reveal-viewport{--r-overlay-header-height: 26px}}.reveal-viewport:fullscreen{top:0!important;left:0!important;width:100%!important;height:100%!important;transform:none!important}.reveal .fragment{transition:all .2s ease}.reveal .fragment:not(.custom){opacity:0;visibility:hidden;will-change:opacity}.reveal .fragment.visible{opacity:1;visibility:inherit}.reveal .fragment.disabled{transition:none}.reveal .fragment.grow{opacity:1;visibility:inherit}.reveal .fragment.grow.visible{transform:scale(1.3)}.reveal .fragment.shrink{opacity:1;visibility:inherit}.reveal .fragment.shrink.visible{transform:scale(.7)}.reveal .fragment.zoom-in{transform:scale(.1)}.reveal .fragment.zoom-in.visible{transform:none}.reveal .fragment.fade-out{opacity:1;visibility:inherit}.reveal .fragment.fade-out.visible{opacity:0;visibility:hidden}.reveal .fragment.semi-fade-out{opacity:1;visibility:inherit}.reveal .fragment.semi-fade-out.visible{opacity:.5;visibility:inherit}.reveal .fragment.strike{opacity:1;visibility:inherit}.reveal .fragment.strike.visible{text-decoration:line-through}.reveal .fragment.fade-up{transform:translateY(40px)}.reveal .fragment.fade-up.visible{transform:translate(0)}.reveal .fragment.fade-down{transform:translateY(-40px)}.reveal .fragment.fade-down.visible{transform:translate(0)}.reveal .fragment.fade-right{transform:translate(-40px)}.reveal .fragment.fade-right.visible{transform:translate(0)}.reveal .fragment.fade-left{transform:translate(40px)}.reveal .fragment.fade-left.visible{transform:translate(0)}.reveal .fragment.fade-in-then-out,.reveal .fragment.current-visible{opacity:0;visibility:hidden}.reveal .fragment.fade-in-then-out.current-fragment,.reveal .fragment.current-visible.current-fragment{opacity:1;visibility:inherit}.reveal .fragment.fade-in-then-semi-out{opacity:0;visibility:hidden}.reveal .fragment.fade-in-then-semi-out.visible{opacity:.5;visibility:inherit}.reveal .fragment.fade-in-then-semi-out.current-fragment,.reveal .fragment.highlight-red,.reveal .fragment.highlight-current-red,.reveal .fragment.highlight-green,.reveal .fragment.highlight-current-green,.reveal .fragment.highlight-blue,.reveal .fragment.highlight-current-blue{opacity:1;visibility:inherit}.reveal .fragment.highlight-red.visible{color:#ff2c2d}.reveal .fragment.highlight-green.visible{color:#17ff2e}.reveal .fragment.highlight-blue.visible{color:#1b91ff}.reveal .fragment.highlight-current-red.current-fragment{color:#ff2c2d}.reveal .fragment.highlight-current-green.current-fragment{color:#17ff2e}.reveal .fragment.highlight-current-blue.current-fragment{color:#1b91ff}.reveal:after{content:"";font-style:italic}.reveal iframe{z-index:1}.reveal a{position:relative}@keyframes bounce-right{0%,10%,25%,40%,50%{transform:translate(0)}20%{transform:translate(10px)}30%{transform:translate(-5px)}}@keyframes bounce-left{0%,10%,25%,40%,50%{transform:translate(0)}20%{transform:translate(-10px)}30%{transform:translate(5px)}}@keyframes bounce-down{0%,10%,25%,40%,50%{transform:translateY(0)}20%{transform:translateY(10px)}30%{transform:translateY(-5px)}}.reveal .controls{display:none;position:absolute;top:auto;bottom:var(--r-controls-spacing);right:var(--r-controls-spacing);left:auto;z-index:11;color:#000;pointer-events:none;font-size:10px}.reveal .controls button{position:absolute;padding:0;background-color:transparent;border:0;outline:0;cursor:pointer;color:currentColor;transform:scale(.9999);transition:color .2s ease,opacity .2s ease,transform .2s ease;z-index:2;pointer-events:auto;font-size:inherit;visibility:hidden;opacity:0;-webkit-appearance:none;-webkit-tap-highlight-color:rgba(0,0,0,0)}.reveal .controls .controls-arrow:before,.reveal .controls .controls-arrow:after{content:"";position:absolute;top:0;left:0;width:2.6em;height:.5em;border-radius:.25em;background-color:currentColor;transition:all .15s ease,background-color .8s ease;transform-origin:.2em 50%;will-change:transform}.reveal .controls .controls-arrow{position:relative;width:3.6em;height:3.6em}.reveal .controls .controls-arrow:before{transform:translate(.5em) translateY(1.55em) rotate(45deg)}.reveal .controls .controls-arrow:after{transform:translate(.5em) translateY(1.55em) rotate(-45deg)}.reveal .controls .controls-arrow:hover:before{transform:translate(.5em) translateY(1.55em) rotate(40deg)}.reveal .controls .controls-arrow:hover:after{transform:translate(.5em) translateY(1.55em) rotate(-40deg)}.reveal .controls .controls-arrow:active:before{transform:translate(.5em) translateY(1.55em) rotate(36deg)}.reveal .controls .controls-arrow:active:after{transform:translate(.5em) translateY(1.55em) rotate(-36deg)}.reveal .controls .navigate-left{right:6.4em;bottom:3.2em;transform:translate(-10px)}.reveal .controls .navigate-left.highlight{animation:bounce-left 2s 50 both ease-out}.reveal .controls .navigate-right{right:0;bottom:3.2em;transform:translate(10px)}.reveal .controls .navigate-right .controls-arrow{transform:rotate(180deg)}.reveal .controls .navigate-right.highlight{animation:bounce-right 2s 50 both ease-out}.reveal .controls .navigate-up{right:3.2em;bottom:6.4em;transform:translateY(-10px)}.reveal .controls .navigate-up .controls-arrow{transform:rotate(90deg)}.reveal .controls .navigate-down{right:3.2em;bottom:-1.4em;padding-bottom:1.4em;transform:translateY(10px)}.reveal .controls .navigate-down .controls-arrow{transform:rotate(-90deg)}.reveal .controls .navigate-down.highlight{animation:bounce-down 2s 50 both ease-out}.reveal .controls[data-controls-back-arrows=faded] .navigate-up.enabled{opacity:.3}.reveal .controls[data-controls-back-arrows=faded] .navigate-up.enabled:hover{opacity:1}.reveal .controls[data-controls-back-arrows=hidden] .navigate-up.enabled{opacity:0;visibility:hidden}.reveal .controls .enabled{visibility:visible;opacity:.9;cursor:pointer;transform:none}.reveal .controls .enabled.fragmented{opacity:.5}.reveal .controls .enabled:hover,.reveal .controls .enabled.fragmented:hover{opacity:1}.reveal:not(.rtl) .controls[data-controls-back-arrows=faded] .navigate-left.enabled{opacity:.3}.reveal:not(.rtl) .controls[data-controls-back-arrows=faded] .navigate-left.enabled:hover{opacity:1}.reveal:not(.rtl) .controls[data-controls-back-arrows=hidden] .navigate-left.enabled{opacity:0;visibility:hidden}.reveal.rtl .controls[data-controls-back-arrows=faded] .navigate-right.enabled{opacity:.3}.reveal.rtl .controls[data-controls-back-arrows=faded] .navigate-right.enabled:hover{opacity:1}.reveal.rtl .controls[data-controls-back-arrows=hidden] .navigate-right.enabled{opacity:0;visibility:hidden}.reveal[data-navigation-mode=linear].has-horizontal-slides .navigate-up,.reveal[data-navigation-mode=linear].has-horizontal-slides .navigate-down{display:none}.reveal[data-navigation-mode=linear].has-horizontal-slides .navigate-left,.reveal:not(.has-vertical-slides) .controls .navigate-left{bottom:1.4em;right:5.5em}.reveal[data-navigation-mode=linear].has-horizontal-slides .navigate-right,.reveal:not(.has-vertical-slides) .controls .navigate-right{bottom:1.4em;right:.5em}.reveal:not(.has-horizontal-slides) .controls .navigate-up{right:1.4em;bottom:5em}.reveal:not(.has-horizontal-slides) .controls .navigate-down{right:1.4em;bottom:.5em}.reveal.has-dark-background .controls{color:#fff}.reveal.has-light-background .controls{color:#000}.reveal.no-hover .controls .controls-arrow:hover:before,.reveal.no-hover .controls .controls-arrow:active:before{transform:translate(.5em) translateY(1.55em) rotate(45deg)}.reveal.no-hover .controls .controls-arrow:hover:after,.reveal.no-hover .controls .controls-arrow:active:after{transform:translate(.5em) translateY(1.55em) rotate(-45deg)}@media screen and (min-width:500px){.reveal-viewport{--r-controls-spacing: .8em}.reveal .controls[data-controls-layout=edges]{inset:0}.reveal .controls[data-controls-layout=edges] .navigate-left,.reveal .controls[data-controls-layout=edges] .navigate-right,.reveal .controls[data-controls-layout=edges] .navigate-up,.reveal .controls[data-controls-layout=edges] .navigate-down{bottom:auto;right:auto}.reveal .controls[data-controls-layout=edges] .navigate-left{top:50%;left:var(--r-controls-spacing);margin-top:-1.8em}.reveal .controls[data-controls-layout=edges] .navigate-right{top:50%;right:var(--r-controls-spacing);margin-top:-1.8em}.reveal .controls[data-controls-layout=edges] .navigate-up{top:var(--r-controls-spacing);left:50%;margin-left:-1.8em}.reveal .controls[data-controls-layout=edges] .navigate-down{bottom:calc(var(--r-controls-spacing) - 1.4em + .3em);left:50%;margin-left:-1.8em}}.reveal .progress{position:absolute;display:none;height:3px;width:100%;bottom:0;left:0;z-index:10;background-color:#0003;color:#fff}.reveal .progress:after{content:"";display:block;position:absolute;height:10px;width:100%;top:-10px}.reveal .progress span{display:block;height:100%;width:100%;background-color:currentColor;transition:transform .8s cubic-bezier(.26,.86,.44,.985);transform-origin:0 0;transform:scaleX(0)}.reveal .slide-number{position:absolute;display:block;right:8px;bottom:8px;z-index:31;font-family:Helvetica,sans-serif;font-size:12px;line-height:1;color:#fff;background-color:#0006;padding:5px}.reveal .slide-number a{color:currentColor}.reveal .slide-number-delimiter{margin:0 3px}.reveal{position:relative;width:100%;height:100%;overflow:hidden;touch-action:pinch-zoom}.reveal.embedded{touch-action:pan-y}.reveal.embedded.is-vertical-slide{touch-action:none}.reveal .slides{position:absolute;width:100%;height:100%;inset:0;margin:auto;pointer-events:none;overflow:visible;z-index:1;text-align:center;perspective:600px;perspective-origin:50% 40%}.reveal .slides>section{perspective:600px}.reveal .slides>section,.reveal .slides>section>section{display:none;position:absolute;width:100%;pointer-events:auto;z-index:10;transform-style:flat;transition:transform-origin .8s cubic-bezier(.26,.86,.44,.985),transform .8s cubic-bezier(.26,.86,.44,.985),visibility .8s cubic-bezier(.26,.86,.44,.985),opacity .8s cubic-bezier(.26,.86,.44,.985)}.reveal[data-transition-speed=fast] .slides section{transition-duration:.4s}.reveal[data-transition-speed=slow] .slides section{transition-duration:1.2s}.reveal .slides section[data-transition-speed=fast]{transition-duration:.4s}.reveal .slides section[data-transition-speed=slow]{transition-duration:1.2s}.reveal .slides>section.stack{padding-top:0;padding-bottom:0;pointer-events:none;height:100%}.reveal .slides>section.present,.reveal .slides>section>section.present{display:block;z-index:11;opacity:1}.reveal .slides>section:empty,.reveal .slides>section>section:empty,.reveal .slides>section[data-background-interactive],.reveal .slides>section>section[data-background-interactive]{pointer-events:none}.reveal.center,.reveal.center .slides,.reveal.center .slides section{min-height:0!important}.reveal .slides>section:not(.present),.reveal .slides>section>section:not(.present){pointer-events:none}.reveal.overview .slides>section,.reveal.overview .slides>section>section{pointer-events:auto}.reveal .slides>section.past,.reveal .slides>section.future,.reveal .slides>section.past>section,.reveal .slides>section.future>section,.reveal .slides>section>section.past,.reveal .slides>section>section.future{opacity:0}.reveal .slides>section[data-transition=slide].past,.reveal .slides>section[data-transition~=slide-out].past,.reveal.slide .slides>section:not([data-transition]).past{transform:translate(-150%)}.reveal .slides>section[data-transition=slide].future,.reveal .slides>section[data-transition~=slide-in].future,.reveal.slide .slides>section:not([data-transition]).future{transform:translate(150%)}.reveal .slides>section>section[data-transition=slide].past,.reveal .slides>section>section[data-transition~=slide-out].past,.reveal.slide .slides>section>section:not([data-transition]).past{transform:translateY(-150%)}.reveal .slides>section>section[data-transition=slide].future,.reveal .slides>section>section[data-transition~=slide-in].future,.reveal.slide .slides>section>section:not([data-transition]).future{transform:translateY(150%)}.reveal .slides>section[data-transition=linear].past,.reveal .slides>section[data-transition~=linear-out].past,.reveal.linear .slides>section:not([data-transition]).past{transform:translate(-150%)}.reveal .slides>section[data-transition=linear].future,.reveal .slides>section[data-transition~=linear-in].future,.reveal.linear .slides>section:not([data-transition]).future{transform:translate(150%)}.reveal .slides>section>section[data-transition=linear].past,.reveal .slides>section>section[data-transition~=linear-out].past,.reveal.linear .slides>section>section:not([data-transition]).past{transform:translateY(-150%)}.reveal .slides>section>section[data-transition=linear].future,.reveal .slides>section>section[data-transition~=linear-in].future,.reveal.linear .slides>section>section:not([data-transition]).future{transform:translateY(150%)}.reveal .slides section[data-transition=default].stack,.reveal.default .slides section.stack{transform-style:preserve-3d}.reveal .slides>section[data-transition=default].past,.reveal .slides>section[data-transition~=default-out].past,.reveal.default .slides>section:not([data-transition]).past{transform:translate3d(-100%,0,0) rotateY(-90deg) translate3d(-100%,0,0)}.reveal .slides>section[data-transition=default].future,.reveal .slides>section[data-transition~=default-in].future,.reveal.default .slides>section:not([data-transition]).future{transform:translate3d(100%,0,0) rotateY(90deg) translate3d(100%,0,0)}.reveal .slides>section>section[data-transition=default].past,.reveal .slides>section>section[data-transition~=default-out].past,.reveal.default .slides>section>section:not([data-transition]).past{transform:translate3d(0,-300px,0) rotateX(70deg) translate3d(0,-300px,0)}.reveal .slides>section>section[data-transition=default].future,.reveal .slides>section>section[data-transition~=default-in].future,.reveal.default .slides>section>section:not([data-transition]).future{transform:translate3d(0,300px,0) rotateX(-70deg) translate3d(0,300px,0)}.reveal .slides section[data-transition=convex].stack,.reveal.convex .slides section.stack{transform-style:preserve-3d}.reveal .slides>section[data-transition=convex].past,.reveal .slides>section[data-transition~=convex-out].past,.reveal.convex .slides>section:not([data-transition]).past{transform:translate3d(-100%,0,0) rotateY(-90deg) translate3d(-100%,0,0)}.reveal .slides>section[data-transition=convex].future,.reveal .slides>section[data-transition~=convex-in].future,.reveal.convex .slides>section:not([data-transition]).future{transform:translate3d(100%,0,0) rotateY(90deg) translate3d(100%,0,0)}.reveal .slides>section>section[data-transition=convex].past,.reveal .slides>section>section[data-transition~=convex-out].past,.reveal.convex .slides>section>section:not([data-transition]).past{transform:translate3d(0,-300px,0) rotateX(70deg) translate3d(0,-300px,0)}.reveal .slides>section>section[data-transition=convex].future,.reveal .slides>section>section[data-transition~=convex-in].future,.reveal.convex .slides>section>section:not([data-transition]).future{transform:translate3d(0,300px,0) rotateX(-70deg) translate3d(0,300px,0)}.reveal .slides section[data-transition=concave].stack,.reveal.concave .slides section.stack{transform-style:preserve-3d}.reveal .slides>section[data-transition=concave].past,.reveal .slides>section[data-transition~=concave-out].past,.reveal.concave .slides>section:not([data-transition]).past{transform:translate3d(-100%,0,0) rotateY(90deg) translate3d(-100%,0,0)}.reveal .slides>section[data-transition=concave].future,.reveal .slides>section[data-transition~=concave-in].future,.reveal.concave .slides>section:not([data-transition]).future{transform:translate3d(100%,0,0) rotateY(-90deg) translate3d(100%,0,0)}.reveal .slides>section>section[data-transition=concave].past,.reveal .slides>section>section[data-transition~=concave-out].past,.reveal.concave .slides>section>section:not([data-transition]).past{transform:translate3d(0,-80%,0) rotateX(-70deg) translate3d(0,-80%,0)}.reveal .slides>section>section[data-transition=concave].future,.reveal .slides>section>section[data-transition~=concave-in].future,.reveal.concave .slides>section>section:not([data-transition]).future{transform:translate3d(0,80%,0) rotateX(70deg) translate3d(0,80%,0)}.reveal .slides section[data-transition=zoom],.reveal.zoom .slides section:not([data-transition]){transition-timing-function:ease}.reveal .slides>section[data-transition=zoom].past,.reveal .slides>section[data-transition~=zoom-out].past,.reveal.zoom .slides>section:not([data-transition]).past{visibility:hidden;transform:scale(16)}.reveal .slides>section[data-transition=zoom].future,.reveal .slides>section[data-transition~=zoom-in].future,.reveal.zoom .slides>section:not([data-transition]).future{visibility:hidden;transform:scale(.2)}.reveal .slides>section>section[data-transition=zoom].past,.reveal .slides>section>section[data-transition~=zoom-out].past,.reveal.zoom .slides>section>section:not([data-transition]).past{transform:scale(16)}.reveal .slides>section>section[data-transition=zoom].future,.reveal .slides>section>section[data-transition~=zoom-in].future,.reveal.zoom .slides>section>section:not([data-transition]).future{transform:scale(.2)}.reveal.cube .slides{perspective:1300px}.reveal.cube .slides section{padding:30px;min-height:700px;backface-visibility:hidden;box-sizing:border-box;transform-style:preserve-3d}.reveal.center.cube .slides section{min-height:0}.reveal.cube .slides section:not(.stack):before{content:"";position:absolute;display:block;width:100%;height:100%;left:0;top:0;background:#0000001a;border-radius:4px;transform:translateZ(-20px)}.reveal.cube .slides section:not(.stack):after{content:"";position:absolute;display:block;width:90%;height:30px;left:5%;bottom:0;background:none;z-index:1;border-radius:4px;box-shadow:0 95px 25px #0003;transform:translateZ(-90px) rotateX(65deg)}.reveal.cube .slides>section.stack{padding:0;background:none}.reveal.cube .slides>section.past{transform-origin:100% 0%;transform:translate3d(-100%,0,0) rotateY(-90deg)}.reveal.cube .slides>section.future{transform-origin:0% 0%;transform:translate3d(100%,0,0) rotateY(90deg)}.reveal.cube .slides>section>section.past{transform-origin:0% 100%;transform:translate3d(0,-100%,0) rotateX(90deg)}.reveal.cube .slides>section>section.future{transform-origin:0% 0%;transform:translate3d(0,100%,0) rotateX(-90deg)}.reveal.page .slides{perspective-origin:0% 50%;perspective:3000px}.reveal.page .slides section{padding:30px;min-height:700px;box-sizing:border-box;transform-style:preserve-3d}.reveal.page .slides section.past{z-index:12}.reveal.page .slides section:not(.stack):before{content:"";position:absolute;display:block;width:100%;height:100%;left:0;top:0;background:#0000001a;transform:translateZ(-20px)}.reveal.page .slides section:not(.stack):after{content:"";position:absolute;display:block;width:90%;height:30px;left:5%;bottom:0;background:none;z-index:1;border-radius:4px;box-shadow:0 95px 25px #0003;transform:translateZ(-90px) rotateX(65deg)}.reveal.page .slides>section.stack{padding:0;background:none}.reveal.page .slides>section.past{transform-origin:0% 0%;transform:translate3d(-40%,0,0) rotateY(-80deg)}.reveal.page .slides>section.future{transform-origin:100% 0%;transform:translateZ(0)}.reveal.page .slides>section>section.past{transform-origin:0% 0%;transform:translate3d(0,-40%,0) rotateX(80deg)}.reveal.page .slides>section>section.future{transform-origin:0% 100%;transform:translateZ(0)}.reveal .slides section[data-transition=fade],.reveal.fade .slides section:not([data-transition]),.reveal.fade .slides>section>section:not([data-transition]){transform:none;transition:opacity .5s}.reveal.fade.overview .slides section,.reveal.fade.overview .slides>section>section{transition:none}.reveal .slides section[data-transition=none],.reveal.none .slides section:not([data-transition]){transform:none;transition:none}.reveal .pause-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:#000;visibility:hidden;opacity:0;z-index:100;transition:all 1s ease}.reveal .pause-overlay .resume-button{position:absolute;bottom:20px;right:20px;color:#ccc;border-radius:2px;padding:6px 14px;border:2px solid #ccc;font-size:16px;background:transparent;cursor:pointer}.reveal .pause-overlay .resume-button:hover{color:#fff;border-color:#fff}.reveal.paused .pause-overlay{visibility:visible;opacity:1}.reveal .no-transition,.reveal .no-transition *,.reveal .slides.disable-slide-transitions section{transition:none!important}.reveal .slides.disable-slide-transitions section{transform:none!important}.reveal .backgrounds{position:absolute;width:100%;height:100%;top:0;left:0;perspective:600px}.reveal .slide-background{display:none;position:absolute;width:100%;height:100%;opacity:0;visibility:hidden;overflow:hidden;background-color:#0000;transition:all .8s cubic-bezier(.26,.86,.44,.985)}.reveal .slide-background-content{position:absolute;width:100%;height:100%;background-position:50% 50%;background-repeat:no-repeat;background-size:cover}.reveal .slide-background.stack{display:block}.reveal .slide-background.present{opacity:1;visibility:visible;z-index:2}.print-pdf .reveal .slide-background{opacity:1!important;visibility:visible!important}.reveal .slide-background video{position:absolute;width:100%;height:100%;max-width:none;max-height:none;top:0;left:0;object-fit:cover}.reveal .slide-background[data-background-size=contain] video{object-fit:contain}.reveal[data-background-transition=none]>.backgrounds .slide-background:not([data-background-transition]),.reveal>.backgrounds .slide-background[data-background-transition=none]{transition:none}.reveal[data-background-transition=slide]>.backgrounds .slide-background:not([data-background-transition]),.reveal>.backgrounds .slide-background[data-background-transition=slide]{opacity:1}.reveal[data-background-transition=slide]>.backgrounds .slide-background.past:not([data-background-transition]),.reveal>.backgrounds .slide-background.past[data-background-transition=slide]{transform:translate(-100%)}.reveal[data-background-transition=slide]>.backgrounds .slide-background.future:not([data-background-transition]),.reveal>.backgrounds .slide-background.future[data-background-transition=slide]{transform:translate(100%)}.reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.past:not([data-background-transition]),.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=slide]{transform:translateY(-100%)}.reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.future:not([data-background-transition]),.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=slide]{transform:translateY(100%)}.reveal[data-background-transition=convex]>.backgrounds .slide-background.past:not([data-background-transition]),.reveal>.backgrounds .slide-background.past[data-background-transition=convex]{opacity:0;transform:translate3d(-100%,0,0) rotateY(-90deg) translate3d(-100%,0,0)}.reveal[data-background-transition=convex]>.backgrounds .slide-background.future:not([data-background-transition]),.reveal>.backgrounds .slide-background.future[data-background-transition=convex]{opacity:0;transform:translate3d(100%,0,0) rotateY(90deg) translate3d(100%,0,0)}.reveal[data-background-transition=convex]>.backgrounds .slide-background>.slide-background.past:not([data-background-transition]),.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=convex]{opacity:0;transform:translate3d(0,-100%,0) rotateX(90deg) translate3d(0,-100%,0)}.reveal[data-background-transition=convex]>.backgrounds .slide-background>.slide-background.future:not([data-background-transition]),.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=convex]{opacity:0;transform:translate3d(0,100%,0) rotateX(-90deg) translate3d(0,100%,0)}.reveal[data-background-transition=concave]>.backgrounds .slide-background.past:not([data-background-transition]),.reveal>.backgrounds .slide-background.past[data-background-transition=concave]{opacity:0;transform:translate3d(-100%,0,0) rotateY(90deg) translate3d(-100%,0,0)}.reveal[data-background-transition=concave]>.backgrounds .slide-background.future:not([data-background-transition]),.reveal>.backgrounds .slide-background.future[data-background-transition=concave]{opacity:0;transform:translate3d(100%,0,0) rotateY(-90deg) translate3d(100%,0,0)}.reveal[data-background-transition=concave]>.backgrounds .slide-background>.slide-background.past:not([data-background-transition]),.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=concave]{opacity:0;transform:translate3d(0,-100%,0) rotateX(-90deg) translate3d(0,-100%,0)}.reveal[data-background-transition=concave]>.backgrounds .slide-background>.slide-background.future:not([data-background-transition]),.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=concave]{opacity:0;transform:translate3d(0,100%,0) rotateX(90deg) translate3d(0,100%,0)}.reveal[data-background-transition=zoom]>.backgrounds .slide-background:not([data-background-transition]),.reveal>.backgrounds .slide-background[data-background-transition=zoom]{transition-timing-function:ease}.reveal[data-background-transition=zoom]>.backgrounds .slide-background.past:not([data-background-transition]),.reveal>.backgrounds .slide-background.past[data-background-transition=zoom]{opacity:0;visibility:hidden;transform:scale(16)}.reveal[data-background-transition=zoom]>.backgrounds .slide-background.future:not([data-background-transition]),.reveal>.backgrounds .slide-background.future[data-background-transition=zoom]{opacity:0;visibility:hidden;transform:scale(.2)}.reveal[data-background-transition=zoom]>.backgrounds .slide-background>.slide-background.past:not([data-background-transition]),.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=zoom]{opacity:0;visibility:hidden;transform:scale(16)}.reveal[data-background-transition=zoom]>.backgrounds .slide-background>.slide-background.future:not([data-background-transition]),.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=zoom]{opacity:0;visibility:hidden;transform:scale(.2)}.reveal[data-transition-speed=fast]>.backgrounds .slide-background{transition-duration:.4s}.reveal[data-transition-speed=slow]>.backgrounds .slide-background{transition-duration:1.2s}.reveal [data-auto-animate-target^=unmatched]{will-change:opacity}.reveal section[data-auto-animate]:not(.stack):not([data-auto-animate=running]) [data-auto-animate-target^=unmatched]{opacity:0}.reveal.overview{perspective-origin:50% 50%;perspective:700px}.reveal.overview .slides section{height:100%;top:0!important;opacity:1!important;overflow:hidden;visibility:visible!important;cursor:pointer;box-sizing:border-box}.reveal.overview .slides section:hover,.reveal.overview .slides section.present{outline:10px solid rgba(150,150,150,.6);outline-offset:10px}.reveal.overview .slides section.present{outline:10px solid var(--r-link-color)}.reveal.overview .slides section .fragment{opacity:1;transition:none}.reveal.overview .slides section:after,.reveal.overview .slides section:before{display:none!important}.reveal.overview .slides>section.stack{padding:0;top:0!important;background:none;outline:none;overflow:visible}.reveal.overview .backgrounds{perspective:inherit}.reveal.overview .backgrounds .slide-background{opacity:1;visibility:visible;outline:10px solid rgba(150,150,150,.1);outline-offset:10px}.reveal.overview .backgrounds .slide-background.stack{overflow:visible}.reveal.overview .slides section,.reveal.overview-deactivating .slides section{transition:none}.reveal.overview .backgrounds .slide-background,.reveal.overview-deactivating .backgrounds .slide-background{transition:none}.reveal.rtl .slides,.reveal.rtl .slides h1,.reveal.rtl .slides h2,.reveal.rtl .slides h3,.reveal.rtl .slides h4,.reveal.rtl .slides h5,.reveal.rtl .slides h6{direction:rtl;font-family:sans-serif}.reveal.rtl pre,.reveal.rtl code{direction:ltr}.reveal.rtl ol,.reveal.rtl ul{text-align:right}.reveal.rtl .progress span{transform-origin:100% 0}.reveal.has-parallax-background .backgrounds{transition:all .8s ease}.reveal.has-parallax-background[data-transition-speed=fast] .backgrounds{transition-duration:.4s}.reveal.has-parallax-background[data-transition-speed=slow] .backgrounds{transition-duration:1.2s}@keyframes fade-in{0%{opacity:0}to{opacity:1}}@keyframes scale-up{0%{transform:scale(.95)}to{transform:scale(1)}}.reveal [data-preview-image],.reveal [data-preview-video],.reveal [data-preview-link]:not(a):not([data-preview-link=false]){cursor:zoom-in}.r-overlay{position:absolute;top:var(--r-overlay-margin);right:var(--r-overlay-margin);bottom:var(--r-overlay-margin);left:var(--r-overlay-margin);border-radius:min(var(--r-overlay-margin),6px);z-index:99;background:#000000f2;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);transition:all .3s ease;color:#fff;animation:fade-in .3s ease;font-family:ui-sans-serif,system-ui,-apple-system,Helvetica,sans-serif}.r-overlay-viewport{position:absolute;top:var(--r-overlay-padding);right:var(--r-overlay-padding);bottom:var(--r-overlay-padding);left:var(--r-overlay-padding);gap:var(--r-overlay-gap);display:flex;flex-direction:column}.r-overlay-header{display:flex;z-index:2;box-sizing:border-box;align-items:center;justify-content:flex-end;height:var(--r-overlay-header-height);gap:6px}.r-overlay-header .r-overlay-header-button{all:unset;display:flex;align-items:center;justify-content:center;min-width:var(--r-overlay-header-height);min-height:var(--r-overlay-header-height);padding:0 calc(var(--r-overlay-header-height) / 4);opacity:1;border-radius:6px;font-size:18px;gap:8px;cursor:pointer;box-sizing:border-box}.r-overlay-header .r-overlay-header-button:hover{opacity:1;background-color:#ffffff26}.r-overlay-header .icon{display:inline-block;width:20px;height:20px;background-position:50% 50%;background-size:100%;background-repeat:no-repeat}.r-overlay-close .icon{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI2ZmZiIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMTIuODU0IDIuODU0YS41LjUgMCAwIDAtLjcwOC0uNzA4TDcuNSA2Ljc5MyAyLjg1NCAyLjE0NmEuNS41IDAgMSAwLS43MDguNzA4TDYuNzkzIDcuNWwtNC42NDcgNC42NDZhLjUuNSAwIDAgMCAuNzA4LjcwOEw3LjUgOC4yMDdsNC42NDYgNC42NDdhLjUuNSAwIDAgMCAuNzA4LS43MDhMOC4yMDcgNy41bDQuNjQ3LTQuNjQ2WiIgY2xpcC1ydWxlPSJldmVub2RkIi8+PC9zdmc+)}.r-overlay-external .icon{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxNSIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iI2ZmZiIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNMyAyYTEgMSAwIDAgMC0xIDF2OWExIDEgMCAwIDAgMSAxaDlhMSAxIDAgMCAwIDEtMVY4LjVhLjUuNSAwIDAgMC0xIDBWMTJIM1YzaDMuNWEuNS41IDAgMCAwIDAtMUgzWm05Ljg1NC4xNDZhLjUuNSAwIDAgMSAuMTQ2LjM1MVY1LjVhLjUuNSAwIDAgMS0xIDBWMy43MDdMNi44NTQgOC44NTRhLjUuNSAwIDEgMS0uNzA4LS43MDhMMTEuMjkzIDNIOS41YS41LjUgMCAwIDEgMC0xaDNhLjQ5OS40OTkgMCAwIDEgLjM1NC4xNDZaIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=)}.r-overlay-content{position:relative;display:grid;place-items:center;border-radius:6px;overflow:hidden;flex-grow:1;background-color:#141414cc;animation:scale-up .5s cubic-bezier(.26,.86,.44,.985)}.r-overlay-spinner{position:absolute;display:block;top:50%;left:50%;width:32px;height:32px;margin:-16px 0 0 -16px;z-index:10;background-image:url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D);visibility:hidden;opacity:0}.r-overlay-preview .r-overlay-content iframe{width:100%;height:100%;max-width:100%;max-height:100%;border:0;opacity:0;visibility:hidden;transition:all .3s ease}.r-overlay-preview[data-state=loaded] iframe{opacity:1;visibility:visible}.r-overlay-preview .r-overlay-content img,.r-overlay-preview .r-overlay-content video{position:absolute;max-width:100%;max-height:100%;width:100%;height:100%;margin:0;object-fit:scale-down}.r-overlay-preview[data-preview-fit=none] img,.r-overlay-preview[data-preview-fit=none] video{object-fit:none}.r-overlay-preview[data-preview-fit=scale-down] img,.r-overlay-preview[data-preview-fit=scale-down] video{object-fit:scale-down}.r-overlay-preview[data-preview-fit=contain] img,.r-overlay-preview[data-preview-fit=contain] video{object-fit:contain}.r-overlay-preview[data-preview-fit=cover] img,.r-overlay-preview[data-preview-fit=cover] video{object-fit:cover}.r-overlay-preview[data-state=loaded] .r-overlay-content-inner{position:absolute;z-index:-1;left:0;top:45%;width:100%;text-align:center;letter-spacing:normal}.r-overlay-preview .r-overlay-error{font-size:18px;color:orange}.r-overlay-preview .x-frame-error{opacity:0;transition:opacity .3s ease .3s}.r-overlay-preview[data-state=loaded] .x-frame-error{opacity:1}.r-overlay-preview[data-state=loading] .r-overlay-spinner{opacity:.6;visibility:visible}.r-overlay-help .r-overlay-content{overflow:auto}.r-overlay-help-content{max-width:560px;padding:20px 0;margin:auto;text-align:center;letter-spacing:normal}.r-overlay-help-content .title{font-size:20px;margin-top:0}.r-overlay-help .r-overlay-help-content table{border:1px solid #fff;border-collapse:collapse;font-size:16px;text-align:left}.r-overlay-help .r-overlay-help-content table th,.r-overlay-help .r-overlay-help-content table td{width:240px;padding:14px;border:1px solid #fff;vertical-align:middle}.r-overlay-help .r-overlay-help-content table th{padding-top:20px;padding-bottom:20px}.reveal .playback{position:absolute;left:15px;bottom:20px;z-index:30;cursor:pointer;transition:all .4s ease;-webkit-tap-highlight-color:rgba(0,0,0,0)}.reveal.overview .playback{opacity:0;visibility:hidden}.reveal .hljs{min-height:100%}.reveal .hljs table{margin:initial}.reveal .hljs-ln-code,.reveal .hljs-ln-numbers{padding:0;border:0}.reveal .hljs-ln-numbers{opacity:.6;padding-right:.75em;text-align:right;vertical-align:top}.reveal .hljs.has-highlights tr:not(.highlight-line){opacity:.4}.reveal .hljs.has-highlights.fragment{transition:all .2s ease}.reveal .hljs:not(:first-child).fragment{position:absolute;top:0;left:0;width:100%;box-sizing:border-box}.reveal pre[data-auto-animate-target]{overflow:hidden}.reveal pre[data-auto-animate-target] code{height:100%}.reveal .roll{display:inline-block;line-height:1.2;overflow:hidden;vertical-align:top;perspective:400px;perspective-origin:50% 50%}.reveal .roll:hover{background:none;text-shadow:none}.reveal .roll span{display:block;position:relative;padding:0 2px;pointer-events:none;transition:all .4s ease;transform-origin:50% 0%;transform-style:preserve-3d;backface-visibility:hidden}.reveal .roll:hover span{background:#00000080;transform:translateZ(-45px) rotateX(90deg)}.reveal .roll span:after{content:attr(data-title);display:block;position:absolute;left:0;top:0;padding:0 2px;backface-visibility:hidden;transform-origin:50% 0%;transform:translate3d(0,110%,0) rotateX(-90deg)}.reveal aside.notes{display:none}.reveal .speaker-notes{display:none;position:absolute;width:33.3333333333%;height:100%;top:0;left:100%;padding:14px 18px;z-index:1;font-size:18px;line-height:1.4;border:1px solid rgba(0,0,0,.05);color:#222;background-color:#f5f5f5;overflow:auto;box-sizing:border-box;text-align:left;font-family:Helvetica,sans-serif;-webkit-overflow-scrolling:touch}.reveal .speaker-notes .notes-placeholder{color:#ccc;font-style:italic}.reveal .speaker-notes:focus{outline:none}.reveal .speaker-notes:before{content:"Speaker notes";display:block;margin-bottom:10px;opacity:.5}.reveal.show-notes{max-width:75%;overflow:visible}.reveal.show-notes .speaker-notes{display:block}@media screen and (min-width:1600px){.reveal .speaker-notes{font-size:20px}}@media screen and (max-width:1024px){.reveal.show-notes{border-left:0;max-width:none;max-height:70%;max-height:70vh;overflow:visible}.reveal.show-notes .speaker-notes{top:100%;left:0;width:100%;height:30vh;border:0}}@media screen and (max-width:600px){.reveal.show-notes{max-height:60%;max-height:60vh}.reveal.show-notes .speaker-notes{top:100%;height:40vh}.reveal .speaker-notes{font-size:14px}}.reveal .jump-to-slide{position:absolute;top:15px;left:15px;z-index:30;font-size:32px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.reveal .jump-to-slide-input{background:transparent;padding:8px;font-size:inherit;color:currentColor;border:0}.reveal .jump-to-slide-input::placeholder{color:currentColor;opacity:.5}.reveal.has-dark-background .jump-to-slide-input{color:#fff}.reveal.has-light-background .jump-to-slide-input{color:#222}.reveal .jump-to-slide-input:focus{outline:none}.reveal .r-overlay-button{all:unset;position:absolute;display:flex;align-items:center;justify-content:center;padding:10px;border-radius:5px;font-size:.4em;z-index:30;cursor:pointer;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-appearance:none;appearance:none;color:#fff;background:#000000b3}.reveal .r-overlay-button:hover{background:#000000e6}.reveal.has-light-background .r-overlay-button{color:#222;background:#ffffffb3}.reveal.has-light-background .r-overlay-button:hover{background:#ffffffe6}.reveal .r-media-play-button{left:15px;bottom:20px}.zoomed .reveal *,.zoomed .reveal *:before,.zoomed .reveal *:after{backface-visibility:visible!important}.zoomed .reveal .progress,.zoomed .reveal .controls{opacity:0}.zoomed .reveal .roll span{background:none}.zoomed .reveal .roll span:after{visibility:hidden}.reveal-viewport.loading-scroll-mode{visibility:hidden}.reveal-viewport.reveal-scroll{margin:0 auto;overflow:auto;overflow-x:hidden;overflow-y:auto;z-index:1;--r-scrollbar-width: 7px;--r-scrollbar-trigger-size: 5px;--r-controls-spacing: 8px}@media screen and (max-width:500px){.reveal-viewport.reveal-scroll{--r-scrollbar-width: 3px;--r-scrollbar-trigger-size: 3px}}.reveal-viewport.reveal-scroll .controls,.reveal-viewport.reveal-scroll .progress,.reveal-viewport.reveal-scroll .playback,.reveal-viewport.reveal-scroll .backgrounds,.reveal-viewport.reveal-scroll .slide-number,.reveal-viewport.reveal-scroll .speaker-notes{display:none!important}.reveal-viewport.reveal-scroll .r-overlay,.reveal-viewport.reveal-scroll .pause-overlay,.reveal-viewport.reveal-scroll .r-media-play-button{position:fixed}.reveal-viewport.reveal-scroll .reveal{overflow:visible;touch-action:manipulation}.reveal-viewport.reveal-scroll .slides{position:static;pointer-events:initial;left:auto;top:auto;width:100%!important;margin:0;padding:0;overflow:visible;display:block;perspective:none;perspective-origin:50% 50%}.reveal-viewport.reveal-scroll .scroll-page{position:relative;width:100%;height:calc(var(--page-height) + var(--page-scroll-padding));z-index:1;overflow:visible}.reveal-viewport.reveal-scroll .scroll-page-sticky{position:sticky;height:var(--page-height);top:0}.reveal-viewport.reveal-scroll .scroll-page-content{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden}.reveal-viewport.reveal-scroll .scroll-page section{visibility:visible!important;display:block!important;position:absolute!important;width:var(--slide-width)!important;height:var(--slide-height)!important;top:50%!important;left:50%!important;opacity:1!important;transform:scale(var(--slide-scale)) translate(-50%,-50%)!important;transform-style:flat!important;transform-origin:0 0!important}.reveal-viewport.reveal-scroll .slide-background{display:block!important;position:absolute;top:0;left:0;width:100%;height:100%;z-index:auto!important;visibility:visible;opacity:1;touch-action:manipulation}.reveal-viewport.reveal-scroll[data-scrollbar=true]::-webkit-scrollbar,.reveal-viewport.reveal-scroll[data-scrollbar=auto]::-webkit-scrollbar{display:none}.reveal-viewport.reveal-scroll[data-scrollbar=true],.reveal-viewport.reveal-scroll[data-scrollbar=auto]{scrollbar-width:none}.reveal.has-dark-background,.reveal-viewport.has-dark-background{--r-overlay-element-bg-color: 240, 240, 240;--r-overlay-element-fg-color: 0, 0, 0}.reveal.has-light-background,.reveal-viewport.has-light-background{--r-overlay-element-bg-color: 0, 0, 0;--r-overlay-element-fg-color: 240, 240, 240}.reveal-viewport.reveal-scroll .scrollbar{position:sticky;top:50%;z-index:20;opacity:0;transition:all .3s ease}.reveal-viewport.reveal-scroll .scrollbar.visible,.reveal-viewport.reveal-scroll .scrollbar:hover{opacity:1}.reveal-viewport.reveal-scroll .scrollbar .scrollbar-inner{position:absolute;width:var(--r-scrollbar-width);height:calc(var(--viewport-height) - var(--r-controls-spacing) * 2);right:var(--r-controls-spacing);top:0;transform:translateY(-50%);border-radius:var(--r-scrollbar-width);z-index:10}.reveal-viewport.reveal-scroll .scrollbar .scrollbar-playhead{position:absolute;width:var(--r-scrollbar-width);height:var(--r-scrollbar-width);top:0;left:0;border-radius:var(--r-scrollbar-width);background-color:rgba(var(--r-overlay-element-bg-color),1);z-index:11;transition:background-color .2s ease}.reveal-viewport.reveal-scroll .scrollbar .scrollbar-slide{position:absolute;width:100%;background-color:rgba(var(--r-overlay-element-bg-color),.2);box-shadow:0 0 0 1px rgba(var(--r-overlay-element-fg-color),.1);border-radius:var(--r-scrollbar-width);transition:background-color .2s ease}.reveal-viewport.reveal-scroll .scrollbar .scrollbar-slide:after{content:"";position:absolute;width:200%;height:100%;top:0;left:-50%;background:#0000;z-index:-1}.reveal-viewport.reveal-scroll .scrollbar .scrollbar-slide:hover,.reveal-viewport.reveal-scroll .scrollbar .scrollbar-slide.active{background-color:rgba(var(--r-overlay-element-bg-color),.4)}.reveal-viewport.reveal-scroll .scrollbar .scrollbar-trigger{position:absolute;width:100%;transition:background-color .2s ease}.reveal-viewport.reveal-scroll .scrollbar .scrollbar-slide.active.has-triggers{background-color:rgba(var(--r-overlay-element-bg-color),.4);z-index:10}.reveal-viewport.reveal-scroll .scrollbar .scrollbar-slide.active .scrollbar-trigger:after{content:"";position:absolute;width:var(--r-scrollbar-trigger-size);height:var(--r-scrollbar-trigger-size);border-radius:20px;top:50%;left:50%;transform:translate(-50%,-50%);background-color:rgba(var(--r-overlay-element-bg-color),1);transition:transform .2s ease,opacity .2s ease;opacity:.4}.reveal-viewport.reveal-scroll .scrollbar .scrollbar-slide.active .scrollbar-trigger.active:after,.reveal-viewport.reveal-scroll .scrollbar .scrollbar-slide.active .scrollbar-trigger.active~.scrollbar-trigger:after{opacity:1}.reveal-viewport.reveal-scroll .scrollbar .scrollbar-slide.active .scrollbar-trigger~.scrollbar-trigger.active:after{transform:translate(calc(var(--r-scrollbar-width) * -2));background-color:rgba(var(--r-overlay-element-bg-color),1)}html.reveal-print *{-webkit-print-color-adjust:exact}html.reveal-print{width:100%;height:100%;overflow:visible}html.reveal-print body{margin:0 auto!important;border:0;padding:0;float:none!important;overflow:visible}html.reveal-print .nestedarrow,html.reveal-print .reveal .controls,html.reveal-print .reveal .progress,html.reveal-print .reveal .playback,html.reveal-print .reveal.overview,html.reveal-print .state-background{display:none!important}html.reveal-print .reveal pre code{overflow:hidden!important}html.reveal-print .reveal{width:auto!important;height:auto!important;overflow:hidden!important}html.reveal-print .reveal .slides{position:static;width:100%!important;height:auto!important;zoom:1!important;pointer-events:initial;left:auto;top:auto;margin:0!important;padding:0!important;overflow:visible;display:block;perspective:none;perspective-origin:50% 50%}html.reveal-print .reveal .slides .pdf-page{position:relative;overflow:hidden;z-index:1;page-break-after:always}html.reveal-print .reveal .slides .pdf-page:last-of-type{page-break-after:avoid}html.reveal-print .reveal .slides section{visibility:visible!important;display:block!important;position:absolute!important;margin:0!important;padding:0!important;box-sizing:border-box!important;min-height:1px;opacity:1!important;transform-style:flat!important;transform:none!important}html.reveal-print .reveal section.stack{position:relative!important;margin:0!important;padding:0!important;page-break-after:avoid!important;height:auto!important;min-height:auto!important}html.reveal-print .reveal img{box-shadow:none}html.reveal-print .reveal .backgrounds{display:none}html.reveal-print .reveal .slide-background{display:block!important;position:absolute;top:0;left:0;width:100%;height:100%;z-index:auto!important}html.reveal-print .reveal.show-notes{max-width:none;max-height:none}html.reveal-print .reveal .speaker-notes-pdf{display:block;width:100%;height:auto;max-height:none;inset:auto;z-index:100}html.reveal-print .reveal .speaker-notes-pdf[data-layout=separate-page]{position:relative;color:inherit;background-color:transparent;padding:20px;page-break-after:always;border:0}html.reveal-print .reveal .slide-number-pdf{display:block;position:absolute;font-size:14px;visibility:visible}html.reveal-print .aria-status{display:none}@media print{html:not(.print-pdf){overflow:visible;width:auto;height:auto}html:not(.print-pdf) body{margin:0;padding:0;overflow:visible}html:not(.print-pdf) .reveal{background:#fff;font-size:20pt}html:not(.print-pdf) .reveal .controls,html:not(.print-pdf) .reveal .state-background,html:not(.print-pdf) .reveal .progress,html:not(.print-pdf) .reveal .backgrounds,html:not(.print-pdf) .reveal .slide-number{display:none!important}html:not(.print-pdf) .reveal p,html:not(.print-pdf) .reveal td,html:not(.print-pdf) .reveal li{font-size:20pt!important;color:#000}html:not(.print-pdf) .reveal h1,html:not(.print-pdf) .reveal h2,html:not(.print-pdf) .reveal h3,html:not(.print-pdf) .reveal h4,html:not(.print-pdf) .reveal h5,html:not(.print-pdf) .reveal h6{color:#000!important;height:auto;line-height:normal;text-align:left;letter-spacing:normal}html:not(.print-pdf) .reveal h1{font-size:28pt!important}html:not(.print-pdf) .reveal h2{font-size:24pt!important}html:not(.print-pdf) .reveal h3{font-size:22pt!important}html:not(.print-pdf) .reveal h4{font-size:22pt!important;font-variant:small-caps}html:not(.print-pdf) .reveal h5{font-size:21pt!important}html:not(.print-pdf) .reveal h6{font-size:20pt!important;font-style:italic}html:not(.print-pdf) .reveal a:link,html:not(.print-pdf) .reveal a:visited{color:#000!important;font-weight:700;text-decoration:underline}html:not(.print-pdf) .reveal ul,html:not(.print-pdf) .reveal ol,html:not(.print-pdf) .reveal div,html:not(.print-pdf) .reveal p{visibility:visible;position:static;width:auto;height:auto;display:block;overflow:visible;margin:0;text-align:left!important}html:not(.print-pdf) .reveal pre,html:not(.print-pdf) .reveal table{margin-left:0;margin-right:0}html:not(.print-pdf) .reveal pre code{padding:20px}html:not(.print-pdf) .reveal blockquote{margin:20px 0}html:not(.print-pdf) .reveal .slides{position:static!important;width:auto!important;height:auto!important;left:0!important;top:0!important;margin-left:0!important;margin-top:0!important;padding:0!important;zoom:1!important;transform:none!important;overflow:visible!important;display:block!important;text-align:left!important;perspective:none;perspective-origin:50% 50%}html:not(.print-pdf) .reveal .slides section{visibility:visible!important;position:static!important;width:auto!important;height:auto!important;display:block!important;overflow:visible!important;left:0!important;top:0!important;margin-left:0!important;margin-top:0!important;padding:60px 20px!important;z-index:auto!important;opacity:1!important;page-break-after:always!important;transform-style:flat!important;transform:none!important;transition:none!important}html:not(.print-pdf) .reveal .slides section.stack{padding:0!important}html:not(.print-pdf) .reveal .slides section:last-of-type{page-break-after:avoid!important}html:not(.print-pdf) .reveal .slides section .fragment{opacity:1!important;visibility:visible!important;transform:none!important}html:not(.print-pdf) .reveal .r-fit-text{white-space:normal!important}html:not(.print-pdf) .reveal section img{display:block;margin:15px 0;background:#fff;border:1px solid #666;box-shadow:none}html:not(.print-pdf) .reveal section small{font-size:.8em}html:not(.print-pdf) .reveal .hljs{max-height:100%;white-space:pre-wrap;word-wrap:break-word;word-break:break-word;font-size:15pt}html:not(.print-pdf) .reveal .hljs .hljs-ln-numbers{white-space:nowrap}html:not(.print-pdf) .reveal .hljs td{font-size:inherit!important;color:inherit!important}}
/*
Monokai style - ported by Luigi Maselli - http://grigio.org
*/

.hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  background: #272822;
  color: #ddd;
}

.hljs-tag,
.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-strong,
.hljs-name {
  color: #f92672;
}

.hljs-code {
  color: #66d9ef;
}

.hljs-class .hljs-title {
  color: white;
}

.hljs-attribute,
.hljs-symbol,
.hljs-regexp,
.hljs-link {
  color: #bf79db;
}

.hljs-string,
.hljs-bullet,
.hljs-subst,
.hljs-title,
.hljs-section,
.hljs-emphasis,
.hljs-type,
.hljs-built_in,
.hljs-builtin-name,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-addition,
.hljs-variable,
.hljs-template-tag,
.hljs-template-variable {
  color: #a6e22e;
}

.hljs-comment,
.hljs-quote,
.hljs-deletion,
.hljs-meta {
  color: #75715e;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-doctag,
.hljs-title,
.hljs-section,
.hljs-type,
.hljs-selector-id {
  font-weight: bold;
}
._wrapper_y938o_1 {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: #09090b;
}

._toolbar_y938o_8 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background: #09090b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  z-index: 10;
}

._backBtn_y938o_19 {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

._backBtn_y938o_19:hover {
  color: #fff;
}

._fullscreenBtn_y938o_33 {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: inherit;
  font-size: 0.8rem;
}

._fullscreenBtn_y938o_33:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

/* ── Slide deck area — LIGHT MODE ── */
._deckContainer_y938o_55 {
  flex: 1;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f8fafc 0%, #f1f5f9 40%, #ede9fe 100%);
}

._deckContainer_y938o_55.reveal-viewport {
  background-color: transparent !important;
  color: #1e293b;
}

._deckContainer_y938o_55 .reveal {
  height: 100%;
  width: 100%;
  overflow: hidden;
  color: #1e293b;
  background: transparent;
  font-family: "Inter", system-ui, sans-serif;
}

._deckContainer_y938o_55 .reveal .backgrounds {
  background: transparent;
}

._deckContainer_y938o_55 .reveal .slides section {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

._deckContainer_y938o_55 .reveal .slide-background,
._deckContainer_y938o_55 .reveal .slide-background-content {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
}

/* Hide textarea before reveal.js processes markdown */
._deckContainer_y938o_55 .reveal .slides section textarea {
  display: none !important;
}

._deckContainer_y938o_55 .reveal .slides section {
  font-size: 1.6em;
  line-height: 1.6;
  padding: 40px 60px;
  background: transparent;
  box-sizing: border-box;
}

._deckContainer_y938o_55 .reveal .slides {
  text-align: left;
}

._deckContainer_y938o_55 .reveal h1,
._deckContainer_y938o_55 .reveal h2,
._deckContainer_y938o_55 .reveal h3 {
  color: #0f172a;
  font-weight: 700;
  letter-spacing: -0.3px;
  text-transform: none;
  margin-bottom: 0.5em;
}

._deckContainer_y938o_55 .reveal h1 {
  font-size: 2.8em;
}

._deckContainer_y938o_55 .reveal h2 {
  font-size: 2.2em;
}

._deckContainer_y938o_55 .reveal h3 {
  font-size: 1.6em;
  color: #334155;
}

._deckContainer_y938o_55 .reveal ul,
._deckContainer_y938o_55 .reveal ol {
  display: block;
  margin-left: 1em;
}

._deckContainer_y938o_55 .reveal li {
  margin-bottom: 0.4em;
}

._deckContainer_y938o_55 .reveal p {
  margin-bottom: 0.6em;
}

._deckContainer_y938o_55 .reveal em {
  color: #64748b;
}

._deckContainer_y938o_55 .reveal strong {
  color: #7c3aed;
}

/* Code blocks stay dark for contrast */
._deckContainer_y938o_55 .reveal pre {
  width: 100%;
  font-size: 0.75em;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

._deckContainer_y938o_55 .reveal code {
  font-family: "Fira Code", "SF Mono", monospace;
}

._deckContainer_y938o_55 .reveal table {
  margin: 1em auto;
  border-collapse: collapse;
}

._deckContainer_y938o_55 .reveal table th,
._deckContainer_y938o_55 .reveal table td {
  padding: 0.5em 1em;
  border: 1px solid #cbd5e1;
  text-align: left;
}

._deckContainer_y938o_55 .reveal table th {
  background: rgba(124, 58, 237, 0.06);
  font-weight: 600;
  color: #0f172a;
}

._deckContainer_y938o_55 .reveal table td {
  color: #334155;
}

._deckContainer_y938o_55 .reveal img,
._deckContainer_y938o_55 .reveal video {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
}

._deckContainer_y938o_55 .reveal .slides section img {
  max-width: 95%;
  max-height: 500px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

/* ── Slide content styles (animations, cards, badges) ── */

/* Animations */
@keyframes _glow-pulse_y938o_1 {
  0%, 100% { box-shadow: 0 0 20px rgba(124,58,237,0.1), inset 0 0 20px rgba(124,58,237,0.03); }
  50% { box-shadow: 0 0 35px rgba(124,58,237,0.2), inset 0 0 30px rgba(124,58,237,0.05); }
}
@keyframes _float-y_y938o_1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes _spin-slow_y938o_1 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes _bounce-in_y938o_1 {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  80% { transform: scale(0.95); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes _ripple_y938o_1 {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}
@keyframes _wiggle_y938o_1 {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}

/* ── Watermark overlay ── */
._watermark_y938o_239 {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

._watermarkDiagonal_y938o_247 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
  opacity: 0.02;
  white-space: nowrap;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: 2px;
  user-select: none;
}

._watermarkBrand_y938o_265 {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #1e293b;
  opacity: 0.5;
  letter-spacing: 1px;
  user-select: none;
}

/* Cards */
._deckContainer_y938o_55 .brand-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
._deckContainer_y938o_55 .brand-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
}

._deckContainer_y938o_55 .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

._deckContainer_y938o_55 .info-box {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(124, 58, 237, 0.1);
  border-radius: 14px;
  padding: 22px;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

._deckContainer_y938o_55 .warn-card {
  background: rgba(225, 29, 72, 0.04);
  border: 1px solid rgba(225, 29, 72, 0.15);
  border-radius: 14px;
  padding: 22px;
  backdrop-filter: blur(8px);
}

._deckContainer_y938o_55 .gradient-text {
  background: linear-gradient(135deg, #7c3aed, #0284c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

._deckContainer_y938o_55 .gradient-text-warm {
  background: linear-gradient(135deg, #b45309, #e11d48);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

._deckContainer_y938o_55 .num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.9em;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

._deckContainer_y938o_55 .step-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

._deckContainer_y938o_55 .pill {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

._deckContainer_y938o_55 .reveal .controls {
  color: #7c3aed !important;
}

._deckContainer_y938o_55 .reveal .controls button {
  color: #7c3aed !important;
  opacity: 0.6;
}

._deckContainer_y938o_55 .reveal .controls button:hover {
  opacity: 1;
}

._deckContainer_y938o_55 .reveal .progress {
  z-index: 20;
}

._deckContainer_y938o_55 .reveal .progress span {
  background: #7c3aed;
}

._status_y938o_390 {
  color: #64748b;
  text-align: center;
  padding: 4rem 0;
  font-size: 1rem;
}

._errorBox_y938o_397 {
  text-align: center;
  padding: 4rem 2rem;
}

._errorBox_y938o_397 p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* ── Navigation bar (stays dark — site chrome) ── */
._navBar_y938o_409 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: #09090b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
  z-index: 10;
}

._navBtn_y938o_421 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

._navBtn_y938o_421:hover:not(:disabled) {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

._navBtn_y938o_421:disabled {
  opacity: 0.25;
  cursor: default;
}

._slideIndicator_y938o_447 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

._slideSelect_y938o_453 {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  padding: 0.35rem 0.5rem;
  cursor: pointer;
  outline: none;
}

._slideSelect_y938o_453:focus {
  border-color: #a78bfa;
}

._slideSelect_y938o_453 option {
  background: #1a1a2e;
  color: #fff;
}

._slideCount_y938o_474 {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}
._wrapper_12stm_1 {
  min-height: 100vh;
  background: #f8fafc;
  position: relative;
}

._toolbar_12stm_7 {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  padding: 0.6rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
  z-index: 10;
}

._backBtn_12stm_19 {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #64748b;
  transition: color 0.2s;
}

._backBtn_12stm_19:hover {
  color: #0f172a;
}

._container_12stm_33 {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 32px 80px;
}

/* ── Document content styles ── */
._content_12stm_40 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1e293b;
  line-height: 1.7;
  font-size: 1rem;
}

._content_12stm_40 h1 {
  font-size: 2em;
  margin: 32px 0 16px;
  color: #0f172a;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 8px;
  font-weight: 700;
}

._content_12stm_40 h2 {
  font-size: 1.5em;
  margin: 28px 0 12px;
  color: #1e293b;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 6px;
  font-weight: 700;
}

._content_12stm_40 h3 {
  font-size: 1.2em;
  margin: 20px 0 8px;
  color: #334155;
  font-weight: 600;
}

._content_12stm_40 h4 {
  font-size: 1.05em;
  margin: 16px 0 6px;
  color: #334155;
  font-weight: 600;
}

._content_12stm_40 p {
  margin: 8px 0;
}

._content_12stm_40 ul,
._content_12stm_40 ol {
  margin: 8px 0 8px 24px;
}

._content_12stm_40 li {
  margin: 4px 0;
}

._content_12stm_40 table {
  border-collapse: collapse;
  width: 100%;
  margin: 16px 0;
}

._content_12stm_40 th,
._content_12stm_40 td {
  border: 1px solid #e2e8f0;
  padding: 10px 14px;
  text-align: left;
}

._content_12stm_40 th {
  background: #f1f5f9;
  font-weight: 600;
  color: #334155;
}

._content_12stm_40 tr:nth-child(even) {
  background: #f8fafc;
}

._content_12stm_40 code {
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}

._content_12stm_40 pre {
  background: #f1f5f9;
  padding: 16px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 12px 0;
  border: 1px solid #e2e8f0;
}

._content_12stm_40 pre code {
  background: none;
  padding: 0;
}

._content_12stm_40 blockquote {
  border-left: 4px solid #7c3aed;
  padding: 8px 16px;
  margin: 12px 0;
  background: #faf5ff;
  color: #475569;
}

._content_12stm_40 strong {
  color: #0f172a;
}

._content_12stm_40 em {
  color: #64748b;
}

._content_12stm_40 hr {
  border: none;
  border-top: 2px solid #e2e8f0;
  margin: 32px 0;
}

._content_12stm_40 input[type="checkbox"] {
  margin-right: 6px;
}

._content_12stm_40 a {
  color: #7c3aed;
}

/* ── Watermark ── */
._watermark_12stm_167 {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

._watermarkDiagonal_12stm_175 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px;
  opacity: 0.025;
  white-space: nowrap;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: 2px;
  user-select: none;
}

._watermarkBrand_12stm_193 {
  position: fixed;
  bottom: 12px;
  right: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #1e293b;
  opacity: 0.3;
  letter-spacing: 1px;
  user-select: none;
}

/* ── Loading / error states ── */
._status_12stm_206 {
  color: #64748b;
  text-align: center;
  padding: 4rem 0;
  font-size: 1rem;
}

._errorBox_12stm_213 {
  text-align: center;
  padding: 4rem 2rem;
}

._errorBox_12stm_213 p {
  color: #475569;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
._wrapper_1v6ri_1 {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 72px);
  background: #000;
}

._toolbar_1v6ri_8 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  z-index: 10;
}

._title_1v6ri_19 {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

._fullscreenBtn_1v6ri_25 {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: inherit;
  font-size: 0.8rem;
}

._fullscreenBtn_1v6ri_25:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

._deckContainer_1v6ri_46 {
  flex: 1;
  position: relative;
  overflow: hidden;
}

._deckContainer_1v6ri_46 .reveal {
  height: 100%;
  width: 100%;
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
}

._deckContainer_1v6ri_46 .reveal .slides {
  text-align: left;
}

._deckContainer_1v6ri_46 .reveal .slides section {
  font-size: 1.3em;
  line-height: 1.6;
}

._deckContainer_1v6ri_46 .reveal h1,
._deckContainer_1v6ri_46 .reveal h2,
._deckContainer_1v6ri_46 .reveal h3 {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.3px;
  text-transform: none;
  margin-bottom: 0.5em;
}

._deckContainer_1v6ri_46 .reveal h1 {
  font-size: 2.5em;
}

._deckContainer_1v6ri_46 .reveal h2 {
  font-size: 1.8em;
}

._deckContainer_1v6ri_46 .reveal h3 {
  font-size: 1.4em;
  color: rgba(255, 255, 255, 0.8);
}

._deckContainer_1v6ri_46 .reveal ul,
._deckContainer_1v6ri_46 .reveal ol {
  display: block;
  margin-left: 1em;
}

._deckContainer_1v6ri_46 .reveal li {
  margin-bottom: 0.4em;
}

._deckContainer_1v6ri_46 .reveal p {
  margin-bottom: 0.6em;
}

._deckContainer_1v6ri_46 .reveal em {
  color: rgba(255, 255, 255, 0.5);
}

._deckContainer_1v6ri_46 .reveal strong {
  color: #a78bfa;
}

._deckContainer_1v6ri_46 .reveal pre {
  width: 100%;
  font-size: 0.75em;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

._deckContainer_1v6ri_46 .reveal code {
  font-family: "Fira Code", "SF Mono", monospace;
}

._deckContainer_1v6ri_46 .reveal table {
  margin: 1em auto;
  border-collapse: collapse;
}

._deckContainer_1v6ri_46 .reveal table th,
._deckContainer_1v6ri_46 .reveal table td {
  padding: 0.5em 1em;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: left;
}

._deckContainer_1v6ri_46 .reveal table th {
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

._deckContainer_1v6ri_46 .reveal img,
._deckContainer_1v6ri_46 .reveal video {
  display: block;
  margin: 0 auto;
}

._deckContainer_1v6ri_46 .reveal .controls {
  color: #a78bfa !important;
  z-index: 20;
  bottom: 16px;
  right: 16px;
  display: block !important;
}

._deckContainer_1v6ri_46 .reveal .controls button {
  color: #a78bfa !important;
  opacity: 0.7;
}

._deckContainer_1v6ri_46 .reveal .controls button:hover {
  opacity: 1;
}

._deckContainer_1v6ri_46 .reveal .progress {
  z-index: 20;
}

._deckContainer_1v6ri_46 .reveal .progress span {
  background: #a78bfa;
}
._wrapper_1gd0i_1 {
  padding: 4rem 1.5rem;
  min-height: calc(100vh - 72px);
}

._card_1gd0i_6 {
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

/* ── Gradient header ── */
._headerBg_1gd0i_16 {
  position: relative;
  padding: 2.5rem 2.5rem 3.5rem;
}

._headerBg_1gd0i_16::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.09) 0%, transparent 50%);
  top: -150px;
  right: -100px;
  pointer-events: none;
}

._headerBg_1gd0i_16::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.06) 0%, transparent 50%);
  bottom: -120px;
  left: -80px;
  pointer-events: none;
}

._header_1gd0i_16 {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

._avatar_1gd0i_53 {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-accent));
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.15);
}

._name_1gd0i_69 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #fff;
}

._email_1gd0i_76 {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

._roleBadge_1gd0i_82 {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

._roleBadgeAdmin_1gd0i_95 {
  background: rgba(167, 139, 250, 0.2);
  color: #c4b5fd;
}

._roleBadgeUser_1gd0i_101 {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* ── Body ── */
._body_1gd0i_108 {
  padding: 2rem 2.5rem 2.5rem;
}

._divider_1gd0i_112 {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06) 50%, transparent);
  margin: 1.75rem 0;
}

._details_1gd0i_118 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

._field_1gd0i_124 {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

._fieldLabel_1gd0i_130 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
}

._fieldValue_1gd0i_138 {
  font-size: 1rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

._changeBtn_1gd0i_146 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-xs);
  transition: all var(--transition);
}

._changeBtn_1gd0i_146:hover {
  background: var(--color-primary-50);
  color: var(--color-primary-light);
}

._form_1gd0i_164 {
  display: flex;
  flex-direction: column;
}

._formActions_1gd0i_169 {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

._cancelBtn_1gd0i_175 {
  flex: 1;
  justify-content: center;
  padding: 0.8rem;
}

._submitBtn_1gd0i_181 {
  flex: 1;
  justify-content: center;
  padding: 0.8rem;
}

._label_1gd0i_187 {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

._input_1gd0i_195 {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  padding: 0.7rem 0.85rem;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface-elevated);
  color: var(--color-text);
  transition: all var(--transition);
}

._input_1gd0i_195:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.15);
}

._passwordRules_1gd0i_215 {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

._passwordRules_1gd0i_215 li::before {
  display: inline-block;
  width: 1rem;
  margin-right: 0.25rem;
}

._rulePassed_1gd0i_230 {
  color: var(--color-success);
}

._rulePassed_1gd0i_230::before {
  content: "\2713";
}

._ruleFailed_1gd0i_238 {
  color: var(--color-text-muted);
}

._ruleFailed_1gd0i_238::before {
  content: "\2717";
}

._error_1gd0i_246 {
  background: rgba(220, 38, 38, 0.1);
  color: #fca5a5;
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

._success_1gd0i_257 {
  background: rgba(52, 211, 153, 0.1);
  color: var(--color-success);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  ._headerBg_1gd0i_16 {
    padding: 2rem 1.75rem 3rem;
  }

  ._body_1gd0i_108 {
    padding: 1.75rem;
  }

  ._header_1gd0i_16 {
    flex-direction: column;
    text-align: center;
  }
}
._layout_civ0t_1 {
  display: flex;
  min-height: calc(100vh - 72px);
}

._sidebar_civ0t_6 {
  width: 230px;
  flex-shrink: 0;
  background: var(--color-surface);
  border-right: 1px solid var(--color-border);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
}

._sidebarHeader_civ0t_19 {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

._sidebarHeader_civ0t_19::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 8px rgba(167, 139, 250, 0.5);
}

._nav_civ0t_43 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 0.75rem;
}

._navItem_civ0t_50 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-xs);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: all 0.2s;
  position: relative;
}

._navItem_civ0t_50:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.04);
}

._navItemActive_civ0t_68 {
  color: var(--color-primary-light);
  background: var(--color-primary-50);
  font-weight: 600;
}

._navItemActive_civ0t_68::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  bottom: 25%;
  width: 3px;
  border-radius: 0 2px 2px 0;
  background: var(--color-primary);
}

._navItemActive_civ0t_68:hover {
  color: var(--color-primary-light);
  background: var(--color-primary-50);
}

._main_civ0t_90 {
  flex: 1;
  padding: 2.5rem 3rem;
  overflow-y: auto;
  max-width: 1000px;
}

@media (max-width: 768px) {
  ._layout_civ0t_1 {
    flex-direction: column;
  }

  ._sidebar_civ0t_6 {
    width: 100%;
    position: sticky;
    top: 64px;
    z-index: 50;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
    padding: 0.5rem 0;
    background: var(--color-surface);
  }

  ._sidebarHeader_civ0t_19 {
    display: none;
  }

  ._nav_civ0t_43 {
    flex-direction: row;
    overflow-x: auto;
    gap: 0.25rem;
    padding: 0 0.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  ._nav_civ0t_43::-webkit-scrollbar {
    display: none;
  }

  ._navItem_civ0t_50 {
    white-space: nowrap;
    padding: 0.55rem 0.75rem;
    font-size: 0.82rem;
  }

  ._navItemActive_civ0t_68::before {
    display: none;
  }

  ._main_civ0t_90 {
    padding: 1rem;
  }
}
/* ── Page header ── */
._pageHeader_1kxvt_2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

._pageTitle_1kxvt_9 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

._pageSubtitle_1kxvt_15 {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  margin-top: 0.25rem;
}

/* ── Stats grid ── */
._statsGrid_1kxvt_22 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

._statCard_1kxvt_29 {
  position: relative;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  overflow: hidden;
  transition: all 0.25s;
}

._statCard_1kxvt_29::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-accent));
  opacity: 0;
  transition: opacity 0.25s;
}

._statCard_1kxvt_29:hover {
  border-color: rgba(167, 139, 250, 0.2);
  box-shadow: var(--shadow-md);
}

._statCard_1kxvt_29:hover::before {
  opacity: 1;
}

._statLabel_1kxvt_60 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

._statValue_1kxvt_69 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Table ── */
._table_1kxvt_80 {
  width: 100%;
  border-collapse: collapse;
}

._table_1kxvt_80 th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-text-muted);
  padding: 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

._table_1kxvt_80 td {
  padding: 0.85rem 0.75rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-secondary);
  transition: background 0.15s;
}

._table_1kxvt_80 tbody tr {
  transition: all 0.15s;
}

._table_1kxvt_80 tbody tr:hover td {
  background: rgba(167, 139, 250, 0.03);
}

/* ── Badges ── */
._badge_1kxvt_113 {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

._badgeGreen_1kxvt_124 {
  background: rgba(52, 211, 153, 0.12);
  color: #34d399;
}

._badgeYellow_1kxvt_129 {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
}

._badgeBlue_1kxvt_134 {
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
}

._badgePurple_1kxvt_139 {
  background: rgba(167, 139, 250, 0.12);
  color: #a78bfa;
}

._badgeGray_1kxvt_144 {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text-muted);
}

/* ── Buttons (admin specific) ── */
._btnSmall_1kxvt_150 {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-xs);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}

._btnSmall_1kxvt_150:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-50);
  box-shadow: 0 0 0 3px var(--color-primary-50);
}

._btnDanger_1kxvt_173 {
}

._btnDanger_1kxvt_173:hover {
  border-color: var(--color-rose);
  color: var(--color-rose);
  background: rgba(251, 113, 133, 0.08);
  box-shadow: 0 0 0 3px rgba(251, 113, 133, 0.08);
}

._btnPrimary_1kxvt_184 {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, #6d28d9 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

._btnPrimary_1kxvt_184:hover {
  background: linear-gradient(135deg, #6d28d9 0%, var(--color-primary-dark) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.45);
  transform: translateY(-1px);
}

/* ── Actions row ── */
._actions_1kxvt_201 {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* ── Modal ── */
._overlay_1kxvt_208 {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: _fadeIn_1kxvt_1 0.15s ease-out;
}

@keyframes _fadeIn_1kxvt_1 {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes _slideUp_1kxvt_1 {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

._modal_1kxvt_230 {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  animation: _slideUp_1kxvt_1 0.2s ease-out;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6);
}

._modalTitle_1kxvt_243 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

._formGroup_1kxvt_249 {
  margin-bottom: 1.1rem;
}

._formGroup_1kxvt_249 label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

._formGroup_1kxvt_249 input,
._formGroup_1kxvt_249 select,
._formGroup_1kxvt_249 textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-xs);
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.2s;
}

._formGroup_1kxvt_249 input:focus,
._formGroup_1kxvt_249 select:focus,
._formGroup_1kxvt_249 textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-50);
}

._formGroup_1kxvt_249 textarea {
  min-height: 80px;
  resize: vertical;
}

._formGroup_1kxvt_249 select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%238b8d9a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

._formActions_1kxvt_298 {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

._formError_1kxvt_305 {
  color: var(--color-rose);
  font-size: 0.85rem;
  margin-top: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-xs);
  background: rgba(251, 113, 133, 0.08);
  border: 1px solid rgba(251, 113, 133, 0.15);
}

/* ── Toggle ── */
._toggle_1kxvt_316 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}

._toggleTrack_1kxvt_327 {
  width: 38px;
  height: 22px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  transition: background 0.25s;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

._toggleTrackOn_1kxvt_337 {
  background: var(--color-primary-dark);
  border-color: transparent;
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.4);
}

._toggleDot_1kxvt_343 {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

._toggleDotOn_1kxvt_355 {
  transform: translateX(16px);
}

/* ── Empty state ── */
._empty_1kxvt_360 {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.01);
}

/* ── Loading ── */
._loading_1kxvt_371 {
  text-align: center;
  padding: 4rem;
  color: var(--color-text-muted);
}

/* ── Back link ── */
._backLink_1kxvt_378 {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  transition: all 0.2s;
}

._backLink_1kxvt_378:hover {
  color: var(--color-primary);
  gap: 0.55rem;
}

/* ── Expandable detail panel ── */
._detailPanel_1kxvt_394 {
  padding: 1.25rem 1.5rem 1.5rem;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-light);
}

._detailSection_1kxvt_400 {
  margin-bottom: 1rem;
}

._detailSection_1kxvt_400:last-child {
  margin-bottom: 0;
}

._detailLabel_1kxvt_408 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

._detailRow_1kxvt_417 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

._inlineForm_1kxvt_424 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

._chipList_1kxvt_430 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

._chip_1kxvt_430 {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--color-text);
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  transition: border-color 0.15s;
}

._chipRemove_1kxvt_449 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: all 0.15s;
}

._chipRemove_1kxvt_449:hover {
  background: rgba(251, 113, 133, 0.15);
  color: var(--color-rose);
}

._clickableRow_1kxvt_471 {
  cursor: pointer;
}

._clickableRow_1kxvt_471:hover td {
  background: rgba(167, 139, 250, 0.05) !important;
}

._expandIcon_1kxvt_479 {
  color: var(--color-text-muted);
  font-size: 0.65rem;
  transition: transform 0.2s;
}

._expandIconOpen_1kxvt_485 {
  transform: rotate(180deg);
}

/* ── Table wrapper for mobile scroll ── */
._tableWrap_1kxvt_490 {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  ._pageHeader_1kxvt_2 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  ._pageTitle_1kxvt_9 {
    font-size: 1.25rem;
  }

  ._statsGrid_1kxvt_22 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  ._statCard_1kxvt_29 {
    padding: 1rem;
  }

  ._statValue_1kxvt_69 {
    font-size: 1.5rem;
  }

  ._table_1kxvt_80 th,
  ._table_1kxvt_80 td {
    padding: 0.6rem 0.5rem;
    font-size: 0.8rem;
  }

  ._modal_1kxvt_230 {
    margin: 1rem;
    padding: 1.5rem;
    max-width: calc(100vw - 2rem);
  }

  ._detailPanel_1kxvt_394 {
    padding: 1rem;
  }

  ._detailRow_1kxvt_417 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  ._inlineForm_1kxvt_424 {
    width: 100%;
    flex-wrap: wrap;
  }

  ._inlineForm_1kxvt_424 input,
  ._inlineForm_1kxvt_424 select {
    flex: 1;
    min-width: 0;
  }
}
/* ═══════════════════════════════════
   LEGAL PAGES (Terms, Privacy)
   ═══════════════════════════════════ */
._hero_1rjr8_4 {
  position: relative;
  padding: 6rem 1.5rem 2.5rem;
  text-align: center;
}

._heroBg_1rjr8_10 {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

._heroOrb1_1rjr8_16 {
  position: absolute;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.07) 0%, transparent 50%);
  top: -200px;
  right: -150px;
}

._heroOrb2_1rjr8_26 {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, transparent 50%);
  bottom: -100px;
  left: -150px;
}

._heroInner_1rjr8_36 {
  position: relative;
  z-index: 1;
}

._heroTitle_1rjr8_41 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 0.5rem;
}

._heroSub_1rjr8_49 {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 768px) {
  ._hero_1rjr8_4 {
    padding: 4.5rem 1.5rem 2rem;
  }
  ._heroTitle_1rjr8_41 {
    font-size: 1.75rem;
  }
}

/* ── Content ── */
._content_1rjr8_64 {
  padding: 3rem 1.5rem 5rem;
}

._article_1rjr8_68 {
  max-width: 720px;
  margin: 0 auto;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

._article_1rjr8_68 h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 2.5rem 0 0.75rem;
  letter-spacing: -0.3px;
}

._article_1rjr8_68 h2:first-of-type {
  margin-top: 0;
}

._article_1rjr8_68 h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 1.5rem 0 0.5rem;
}

._article_1rjr8_68 p {
  margin-bottom: 1rem;
}

._article_1rjr8_68 ul {
  margin: 0.5rem 0 1rem 1.5rem;
  list-style: disc;
}

._article_1rjr8_68 ul li {
  margin-bottom: 0.4rem;
}

._article_1rjr8_68 a {
  color: var(--color-primary);
  font-weight: 500;
  transition: color var(--transition);
}

._article_1rjr8_68 a:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
}

._article_1rjr8_68 strong {
  color: var(--color-text);
  font-weight: 600;
}
