/* ================================================
   MAIN – StrydeClient
   ================================================ */

/* ── CSS Variable Bridge (Catalya Navbar/Footer ↔ Stryde Design) ── */
:root {
    /* Stryde Core */
    --bg:               #08080e;
    --bg2:              #0f0f1a;
    --bg3:              #131320;
    --surface:          rgba(255, 255, 255, 0.03);
    --surface-hover:    rgba(255, 255, 255, 0.06);
    --border:           rgba(255, 255, 255, 0.07);
    --text:             #f0f0f6;
    --text-muted:       rgba(240, 240, 246, 0.48);
    --text-subtle:      rgba(240, 240, 246, 0.24);
    --accent:           #9b5cf6;
    --accent-orange:    #f97316;
    --grad:             linear-gradient(135deg, #9b5cf6 0%, #c0399f 50%, #f97316 100%);
    --grad-text:        linear-gradient(135deg, #c084fc 0%, #ffffff 45%, #fb923c 100%);

    /* Catalya Navbar/Footer variable aliases */
    --bg-primary:       #08080e;
    --primary:          #9b5cf6;
    --primary-light:    #c084fc;
    --success:          #00d4aa;
    --text-primary:     #f0f0f6;
    --text-secondary:   rgba(240, 240, 246, 0.72);
    --text-disabled:    rgba(240, 240, 246, 0.24);
    --font-heading:     'Syne', sans-serif;
    --transition:       all 0.25s cubic-bezier(0.16, 1, 0.3, 1);

    /* Spacing */
    --space-1:  0.25rem;
    --space-2:  0.5rem;
    --space-3:  0.75rem;
    --space-4:  1rem;
    --space-6:  1.5rem;
    --space-8:  2rem;
    --space-12: 3rem;
    --space-16: 4rem;
}

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

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

body {
    font-family: 'Manrope', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }

/* ── BACKGROUND ── */
.site-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: var(--bg);
}

.site-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 55% at 50% 0%, black 20%, transparent 100%);
}

.site-bg::after {
    content: '';
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(155, 92, 246, 0.1) 0%, rgba(192, 57, 159, 0.05) 50%, transparent 72%);
    pointer-events: none;
}

#app {
    position: relative;
    z-index: 2;
}

/* ── PAGES ── */
.page {
    display: none;
    min-height: 100vh;
    padding-top: 88px; /* account for floating navbar */
}

.page.active {
    display: block;
}

.page-enter {
    animation: pageIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-l {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-r {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible,
.reveal-l.visible,
.reveal-r.visible {
    opacity: 1;
    transform: translate(0);
}

/* ── LAYOUT ── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
}

.section {
    padding: 88px 0;
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .section   { padding: 60px 0; }
}

/* ── LABELS ── */
.label {
    display: inline-block;
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

/* ── PULSE ANIMATION ── */
@keyframes pulse {
    0%, 100% { opacity: 1;   box-shadow: 0 0 6px currentColor; }
    50%       { opacity: 0.5; box-shadow: 0 0 2px currentColor; }
}

/* ── BUTTONS ── */
.btn-primary {
    font-family: 'Manrope', sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    color: #fff;
    background: var(--grad);
    border: none;
    padding: 9px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(155, 92, 246, 0.28);
}

.btn-outline {
    font-family: 'Manrope', sans-serif;
    font-size: 0.84rem;
    font-weight: 700;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--border);
    padding: 9px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.18);
    background: var(--surface-hover);
    transform: translateY(-1px);
}

.btn-ghost {
    font-family: 'Manrope', sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-muted);
    background: none;
    border: none;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.2s;
}

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

/* ── PAGE & COMPONENT STYLES (from original) ── */

    :root {
      --bg: #08080e;
      --bg2: #0f0f1a;
      --bg3: #131320;
      --surface: rgba(255, 255, 255, 0.03);
      --surface-hover: rgba(255, 255, 255, 0.06);
      --border: rgba(255, 255, 255, 0.07);
      --text: #f0f0f6;
      --text-muted: rgba(240, 240, 246, 0.48);
      --text-subtle: rgba(240, 240, 246, 0.24);
      --accent: #9b5cf6;
      --accent-orange: #f97316;
      --grad: linear-gradient(135deg, #9b5cf6 0%, #c0399f 50%, #f97316 100%);
      --grad-text: linear-gradient(135deg, #c084fc 0%, #ffffff 45%, #fb923c 100%);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Manrope', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* ─── BACKGROUND ─── */
    .site-bg {
      position: fixed;
      inset: 0;
      z-index: 0;
      background: var(--bg);
    }

    .site-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: radial-gradient(ellipse 80% 55% at 50% 0%, black 20%, transparent 100%);
    }

    .site-bg::after {
      content: '';
      position: absolute;
      top: -180px;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 500px;
      background: radial-gradient(ellipse, rgba(155, 92, 246, 0.1) 0%, rgba(192, 57, 159, 0.05) 50%, transparent 72%);
      pointer-events: none;
    }

    #app {
      position: relative;
      z-index: 2;
    }

    /* ─── NAVBAR ─── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(8, 8, 14, 0.1);
      /* ULTRA transparent */
      backdrop-filter: blur(40px);
      -webkit-backdrop-filter: blur(40px);
      transition: background 0.3s;
    }

    nav.scrolled {
      background: rgba(8, 8, 14, 0.2);
      /* Barely visible when scrolled */
    }

    nav.scrolled {
      background: rgba(8, 8, 14, 0.96);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
    }

    .logo-icon {
      width: 34px;
      height: 34px;
    }


    .nav-center {
      display: flex;
      align-items: center;
      gap: 2px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .nav-center a {
      font-size: 0.84rem;
      font-weight: 500;
      color: var(--text-muted);
      text-decoration: none;
      padding: 6px 13px;
      border-radius: 6px;
      transition: color 0.2s, background 0.2s;
      cursor: pointer;
      white-space: nowrap;
    }

    .nav-center a:hover {
      color: var(--text);
      background: var(--surface-hover);
    }

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

    .nav-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn-ghost {
      font-family: 'Manrope', sans-serif;
      font-size: 0.84rem;
      font-weight: 600;
      color: var(--text-muted);
      background: none;
      border: none;
      padding: 8px 14px;
      border-radius: 8px;
      cursor: pointer;
      transition: color 0.2s;
    }

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

    .btn-primary {
      font-family: 'Manrope', sans-serif;
      font-size: 0.84rem;
      font-weight: 700;
      color: #fff;
      background: var(--grad);
      border: none;
      padding: 9px 20px;
      border-radius: 8px;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    }

    .btn-primary:hover {
      opacity: 0.88;
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(155, 92, 246, 0.28);
    }

    .btn-outline {
      font-family: 'Manrope', sans-serif;
      font-size: 0.84rem;
      font-weight: 700;
      color: var(--text);
      background: transparent;
      border: 1px solid var(--border);
      padding: 9px 20px;
      border-radius: 8px;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s, transform 0.2s;
    }

    .btn-outline:hover {
      border-color: rgba(255, 255, 255, 0.18);
      background: var(--surface-hover);
      transform: translateY(-1px);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--text);
      border-radius: 2px;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 64px;
      left: 0;
      right: 0;
      background: rgba(8, 8, 14, 0.98);
      backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--border);
      padding: 14px 24px 20px;
      z-index: 99;
      flex-direction: column;
      gap: 4px;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      color: var(--text-muted);
      font-size: 0.95rem;
      font-weight: 500;
      padding: 11px 14px;
      border-radius: 8px;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
    }

    .mobile-menu a:hover {
      background: var(--surface-hover);
      color: var(--text);
    }

    /* ─── PAGES ─── */
    .page {
      display: none;
      min-height: 100vh;
      padding-top: 64px;
    }

    .page.active {
      display: block;
    }

    .page-enter {
      animation: pageIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    @keyframes pageIn {
      from {
        opacity: 0;
        transform: translateY(18px);
      }

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

    /* ─── REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal-l {
      opacity: 0;
      transform: translateX(-28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal-r {
      opacity: 0;
      transform: translateX(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible,
    .reveal-l.visible,
    .reveal-r.visible {
      opacity: 1;
      transform: translate(0);
    }

    /* ─── LAYOUT ─── */
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .section {
      padding: 88px 0;
    }

    .label {
      display: inline-block;
      font-size: 0.71rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 14px;
    }

    h1.display {
      font-family: 'Momo Trust Display', sans-serif;
      font-weight: 800;
      letter-spacing: 0.2em;
      font-size: clamp(2.8rem, 6vw, 5.2rem);
      line-height: 1.04;
      letter-spacing: -0.03em;
    }

    h2.heading {
      font-family: 'Momo Trust Display', sans-serif;
      font-weight: 700;
      font-size: clamp(1.9rem, 3.2vw, 2.8rem);
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    h3.sh {
      font-family: 'Momo Trust Display', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      letter-spacing: -0.01em;
      margin-bottom: 6px;
    }

    .grad-text {
      background: var(--grad-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-family: 'Momo Trust Display', sans-serif;
    }

    p.lg {
      font-size: 1.02rem;
      line-height: 1.76;
      color: var(--text-muted);
    }

    p.sm {
      font-size: 0.9rem;
      line-height: 1.7;
      color: var(--text-muted);
    }

    hr.div {
      border: none;
      border-top: 1px solid var(--border);
    }

    /* ─── HERO ─── */
    .hero {
      min-height: calc(100vh - 64px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 72px 24px 56px;
      position: relative;
    }

    .hero-badge {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 8px;

      font-size: 0.77rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--text-muted);

      background: var(--surface);
      /* stays clean */
      padding: 5px 14px 5px 10px;
      border-radius: 100px;
      margin-bottom: 35px;
    }

    /* Gradient BORDER ONLY */
    .hero-badge::before {
      content: "";
      position: absolute;
      inset: 0;
      padding: 1px;
      /* border thickness */
      border-radius: inherit;

      background: linear-gradient(90deg,
          #FF9933,
          /* saffron */
          #ffffff,
          /* white */
          #138808
          /* green */
        );

      -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;

      pointer-events: none;
    }

    .dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: white;
      box-shadow: 0 0 8px white;
      animation: blink 2.5s infinite;
    }

    @keyframes blink {

      0%,
      100% {
        opacity: 1
      }

      50% {
        opacity: 0.25
      }
    }

    .hero-logo {
      width: 110px;
      height: 110px;
      margin: 0 auto 40px;
    }

    .hero-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 0 36px rgba(155, 92, 246, 0.45));
      animation: float 5s ease-in-out infinite;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-10px)
      }
    }

    .hero h1 {
      margin-bottom: 22px;
    }

    .hero-sub {
      max-width: 500px;
      margin: 0 auto 40px;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
      padding: 12px 28px;
      font-size: 0.88rem;
    }

    /* ─── STATS ─── */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .stat {
      padding: 34px 22px;
      text-align: center;
      border-right: 1px solid var(--border);
    }

    .stat:last-child {
      border-right: none;
    }

    .stat-num {
      font-family: 'Momo Trust Display', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      letter-spacing: -0.04em;
      background: var(--grad-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-label {
      font-size: 0.76rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-subtle);
      margin-top: 5px;
    }

    /* ─── CARD ─── */
    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 30px 26px;
      transition: background 0.22s, border-color 0.22s, transform 0.22s;
    }

    .card:hover {
      background: var(--surface-hover);
      border-color: rgba(255, 255, 255, 0.1);
      transform: translateY(-4px);
    }

    .card-icon {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      font-size: 1.2rem;
      background: rgba(155, 92, 246, 0.08);
      border: 1px solid rgba(155, 92, 246, 0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }

    /* ─── GRIDS ─── */
    .g3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .g2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    /* ─── FAQ ─── */
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 48px;
    }

    .faq-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 13px;
      overflow: hidden;
      transition: border-color 0.22s;
    }

    .faq-item:hover {
      border-color: rgba(155, 92, 246, 0.25);
    }

    .faq-item.open {
      border-color: rgba(155, 92, 246, 0.35);
    }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      cursor: pointer;
      gap: 16px;
      font-family: 'Momo Trust Display', sans-serif;
      font-size: 0.95rem;
      font-weight: 100;
      user-select: none;
    }

    .faq-q:hover {
      background: var(--surface-hover);
    }

    .faq-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      flex-shrink: 0;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      color: var(--text-muted);
      transition: all 0.3s;
      background: rgba(255, 255, 255, 0.03);
    }

    .faq-item.open .faq-icon {
      background: rgba(155, 92, 246, 0.12);
      border-color: rgba(155, 92, 246, 0.35);
      color: var(--accent);
      transform: rotate(45deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
      padding: 0 24px;
      font-size: 0.9rem;
      line-height: 1.72;
      color: var(--text-muted);
    }

    .faq-item.open .faq-a {
      max-height: 200px;
      padding: 0 24px 20px;
    }

    /* ─── PRICING ─── */
    .plans {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 48px;
    }

    .plan {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 34px 28px;
      position: relative;
      overflow: hidden;
      transition: transform 0.22s, border-color 0.22s;
    }

    .plan:hover {
      transform: translateY(-5px);
    }

    .plan.featured {
      border-color: rgba(155, 92, 246, 0.38);
      background: rgba(155, 92, 246, 0.04);
    }

    .plan-badge {
      position: absolute;
      top: 18px;
      right: 18px;
      font-size: 0.67rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #fff;
      background: var(--grad);
      padding: 4px 10px;
      border-radius: 100px;
      z-index: 2;
    }

    .plan-name {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-subtle);
      margin-bottom: 18px;
    }

    .plan-price {
      font-family: 'Momo Trust Display', sans-serif;
      font-size: 3rem;
      font-weight: 800;
      letter-spacing: -0.04em;
      line-height: 1;
      margin-bottom: 4px;
    }

    .plan-price sup {
      font-size: 1.1rem;
      vertical-align: super;
      opacity: 0.4;
    }

    .plan-price sub {
      font-size: 0.85rem;
      opacity: 0.38;
      font-family: 'Manrope', sans-serif;
      font-weight: 500;
    }

    .plan-desc {
      font-size: 0.84rem;
      color: var(--text-muted);
      margin-bottom: 28px;
    }

    .plan-div {
      border: none;
      border-top: 1px solid var(--border);
      margin-bottom: 24px;
    }

    .plan-feats {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 11px;
      margin-bottom: 28px;
    }

    .plan-feats li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.86rem;
      color: var(--text-muted);
    }

    .plan-feats li::before {
      content: '';
      width: 15px;
      height: 15px;
      flex-shrink: 0;
      border-radius: 50%;
      background: rgba(155, 92, 246, 0.08) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%239b5cf6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
      border: 1px solid rgba(155, 92, 246, 0.22);
    }

    .w100 {
      width: 100%;
      padding: 12px;
    }

    /* ─── COMING SOON PLAN OVERLAY ─── */
    .plan-cs-wrap {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
    }

    .plan-cs-wrap .plan {
      /* content blurred underneath */
      filter: blur(5px) brightness(0.6);
      pointer-events: none;
      user-select: none;
      transition: none;
    }

    .cs-overlay {
      position: absolute;
      inset: 0;
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: rgba(8, 8, 14, 0.45);
      backdrop-filter: blur(1px);
      border-radius: 16px;
      border: 1px solid rgba(155, 92, 246, 0.3);
      pointer-events: none;
    }

    .cs-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--grad);
      color: #fff;
      font-family: 'Momo Trust Display', sans-serif;
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 8px 20px;
      border-radius: 100px;
      box-shadow: 0 4px 24px rgba(155, 92, 246, 0.4);
    }

    .cs-sub {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.45);
      letter-spacing: 0.05em;
    }

    /* ─── TESTIMONIALS ─── */
    .testis {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 48px;
    }

    .testi {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 26px;
      transition: transform 0.22s, border-color 0.22s;
    }

    .testi:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 255, 255, 0.1);
    }

    .testi-stars {
      font-size: 0.73rem;
      letter-spacing: 2px;
      color: var(--accent-orange);
      margin-bottom: 12px;
    }

    .testi-text {
      font-size: 0.88rem;
      line-height: 1.7;
      color: var(--text-muted);
      margin-bottom: 20px;
      font-style: italic;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .testi-av {
      font-family: 'Momo Trust Display', sans-serif;
      font-size: 0.77rem;
      font-weight: 800;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      flex-shrink: 0;
      background: var(--grad);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .testi-name {
      font-size: 0.86rem;
      font-weight: 700;
    }

    .testi-handle {
      font-size: 0.77rem;
      color: var(--text-subtle);
    }

    /* ─── STORE UNDER DEV ─── */
    .store-page-inner {
      position: relative;
    }

    .store-blur-wrap {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
    }

    .store-blurred {
      filter: blur(6px) brightness(0.5);
      pointer-events: none;
      user-select: none;
    }

    .store-dev-overlay {
      position: absolute;
      inset: 0;
      z-index: 20;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
      background: rgba(8, 8, 14, 0.55);
      backdrop-filter: blur(2px);
      border-radius: 16px;
      border: 1px solid rgba(155, 92, 246, 0.2);
    }

    .store-dev-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: rgba(155, 92, 246, 0.1);
      border: 1px solid rgba(155, 92, 246, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      font-family: 'Momo Trust Display', sans-serif;
    }

    .store-dev-title {
      font-family: 'Momo Trust Display', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      text-align: center;
      letter-spacing: -0.02em;
    }

    .store-dev-sub {
      font-size: 0.9rem;
      color: var(--text-muted);
      text-align: center;
      max-width: 360px;
      line-height: 1.65;
    }

    .store-dev-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(155, 92, 246, 0.35);
      background: rgba(155, 92, 246, 0.07);
      color: var(--accent);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 7px 18px;
      border-radius: 100px;
    }

    .store-dev-badge .dot {
      background: var(--accent);
      box-shadow: 0 0 8px var(--accent);
    }

    /* ─── TABLE ─── */
    .ctable {
      width: 100%;
      border-collapse: collapse;
      margin-top: 44px;
    }

    .ctable thead th {
      padding: 13px 18px;
      text-align: left;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-subtle);
      border-bottom: 1px solid var(--border);
    }

    .ctable thead th.fc {
      color: var(--accent);
      background: rgba(155, 92, 246, 0.04);
      border-radius: 8px 8px 0 0;
      text-align: center;
    }

    .ctable tbody td {
      padding: 15px 18px;
      font-size: 0.88rem;
      border-bottom: 1px solid var(--border);
      color: var(--text-muted);
    }

    .ctable tbody td.fc {
      background: rgba(155, 92, 246, 0.03);
      text-align: center;
      color: var(--accent);
      font-weight: 700;
    }

    .ctable tbody tr:last-child td {
      border-bottom: none;
    }

    .tick {
      color: #86efac;
    }

    .no {
      color: var(--text-subtle);
    }

    /* ─── TEAM ─── */
    .team {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 48px;
    }

    .team-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px 20px;
      text-align: center;
      transition: transform 0.22s, border-color 0.22s;
    }

    .team-card:hover {
      transform: translateY(-5px);
      border-color: rgba(155, 92, 246, 0.22);
    }

    .team-av {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: var(--grad);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Syne', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      margin: 0 auto 16px;
      border: 2px solid rgba(155, 92, 246, 0.18);
    }

    .team-name {
      font-family: 'Syne', sans-serif;
      font-size: 0.92rem;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .team-role {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 10px;
    }

    .team-bio {
      font-size: 0.82rem;
      line-height: 1.6;
      color: var(--text-muted);
    }

    /* ─── VACANCIES ─── */
    .vac-filters {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin: 32px 0;
    }

    .fb {
      font-family: 'Manrope', sans-serif;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 6px 15px;
      border-radius: 100px;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.2s;
    }

    .fb:hover {
      border-color: rgba(155, 92, 246, 0.28);
      color: var(--text);
    }

    .fb.active {
      border-color: rgba(155, 92, 246, 0.4);
      background: rgba(155, 92, 246, 0.07);
      color: var(--accent);
    }

    .vac-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .vac-card {
      display: flex;
      align-items: center;
      gap: 18px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 13px;
      padding: 22px 26px;
      cursor: pointer;
      transition: all 0.22s;
    }

    .vac-card:hover {
      border-color: rgba(155, 92, 246, 0.24);
      background: var(--surface-hover);
      transform: translateX(5px);
    }

    .vac-icon {
      width: 46px;
      height: 46px;
      flex-shrink: 0;
      border-radius: 11px;
      background: rgba(155, 92, 246, 0.07);
      border: 1px solid rgba(155, 92, 246, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }

    .vac-info {
      flex: 1;
    }

    .vac-title {
      font-family: 'Syne', sans-serif;
      font-size: 0.93rem;
      font-weight: 700;
      margin-bottom: 3px;
    }

    .vac-meta {
      font-size: 0.79rem;
      color: var(--text-subtle);
      margin-bottom: 8px;
      display: flex;
      gap: 12px;
    }

    .vac-tags {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }

    .tag {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 3px 9px;
      border-radius: 100px;
      border: 1px solid;
    }

    .tp {
      color: var(--accent);
      border-color: rgba(155, 92, 246, 0.24);
      background: rgba(155, 92, 246, 0.07);
    }

    .to {
      color: var(--accent-orange);
      border-color: rgba(249, 115, 22, 0.24);
      background: rgba(249, 115, 22, 0.07);
    }

    .tg {
      color: #86efac;
      border-color: rgba(134, 239, 172, 0.22);
      background: rgba(134, 239, 172, 0.07);
    }

    .vac-arr {
      color: var(--text-subtle);
      font-size: 0.95rem;
      flex-shrink: 0;
      transition: color 0.2s, transform 0.2s;
    }

    .vac-card:hover .vac-arr {
      color: var(--accent);
      transform: translateX(3px);
    }

    .open-cta {
      margin-top: 48px;
      padding: 44px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: var(--surface);
      text-align: center;
    }

    .open-cta h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .open-cta p {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin-bottom: 24px;
    }

    /* ─── CONNECT ─── */
    .connect-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 56px;
      align-items: start;
    }

    .social-item {
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 13px 16px;
      border: 1px solid var(--border);
      border-radius: 11px;
      text-decoration: none;
      color: var(--text);
      cursor: pointer;
      margin-bottom: 9px;
      transition: all 0.2s;
    }

    .social-item:hover {
      border-color: rgba(155, 92, 246, 0.28);
      background: var(--surface-hover);
      transform: translateX(4px);
    }

    .social-ic {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      flex-shrink: 0;
      background: rgba(155, 92, 246, 0.07);
      border: 1px solid rgba(155, 92, 246, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
    }

    .social-nm {
      font-size: 0.88rem;
      font-weight: 700;
    }

    .social-hd {
      font-size: 0.78rem;
      color: var(--text-subtle);
    }

    .form-wrap {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 36px 32px;
    }

    .form-wrap h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 26px;
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-group label {
      display: block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      color: var(--text-subtle);
      margin-bottom: 7px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      background: rgba(255, 255, 255, 0.025);
      border: 1px solid var(--border);
      border-radius: 9px;
      color: var(--text);
      font-family: 'Manrope', sans-serif;
      font-size: 0.9rem;
      padding: 11px 14px;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
      -webkit-appearance: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: var(--text-subtle);
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: rgba(155, 92, 246, 0.38);
      background: rgba(155, 92, 246, 0.04);
      box-shadow: 0 0 0 3px rgba(155, 92, 246, 0.07);
    }

    .form-group textarea {
      min-height: 124px;
      resize: vertical;
    }

    .form-group select option {
      background: var(--bg3);
      color: var(--text);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .submit-btn {
      width: 100%;
      background: var(--grad);
      border: none;
      color: #fff;
      font-family: 'Manrope', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      padding: 13px;
      border-radius: 9px;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    }

    .submit-btn:hover {
      opacity: 0.88;
      transform: translateY(-1px);
      box-shadow: 0 10px 28px rgba(155, 92, 246, 0.28);
    }

    .success-msg {
      display: none;
      text-align: center;
      padding: 16px;
      color: #86efac;
      font-size: 0.86rem;
      font-weight: 600;
    }

    /* ─── FOOTER ─── */
    footer {
      border-top: 1px solid var(--border);
      background: var(--bg);
      position: relative;
      z-index: 2;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 60px 48px 28px;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 44px;
      margin-bottom: 48px;
    }

    .footer-brand p {
      font-size: 0.86rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-top: 12px;
      max-width: 300px;
    }

    .footer-col h5 {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-subtle);
      margin-bottom: 16px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .footer-col ul li a {
      font-size: 0.86rem;
      color: var(--text-muted);
      text-decoration: none;
      cursor: pointer;
      transition: color 0.2s;
    }

    .footer-col ul li a:hover {
      color: var(--text);
    }

    .footer-bottom {
      padding-top: 22px;
      border-top: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.78rem;
      color: var(--text-subtle);
    }

    .brand-name {
      background: var(--grad-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 600;
    }

    /* ─── RESPONSIVE ─── */
    @media(max-width:960px) {
      nav {
        padding: 0 24px;
      }

      .nav-center {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .btn-ghost {
        display: none;
      }

      .container {
        padding: 0 24px;
      }

      .g3,
      .plans,
      .testis,
      .team {
        grid-template-columns: 1fr 1fr;
      }

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

      .connect-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .stats-row {
        grid-template-columns: 1fr 1fr;
      }

      .stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
      }

      .stat:nth-child(odd) {
        border-right: 1px solid var(--border);
      }

      .stat:nth-child(3),
      .stat:nth-child(4) {
        border-bottom: none;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
      }
    }

    @media(max-width:600px) {

      .g3,
      .plans,
      .testis,
      .team {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .footer-top {
        grid-template-columns: 1fr;
      }

      .hero-actions {
        flex-direction: column;
        align-items: center;
      }

      .store-dev-title {
        font-size: 1.2rem;
      }
    }


    /* ─── DOWNLOAD MODAL ─── */
    .dl-modal-bg {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 500;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(8px);
      align-items: center;
      justify-content: center;
    }

    .dl-modal-bg.open {
      display: flex;
    }

    .dl-modal {
      background: #0f0f1a;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      padding: 40px 32px 28px;
      width: 100%;
      max-width: 420px;
      position: relative;
      animation: dlPop 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }

    @keyframes dlPop {
      from {
        opacity: 0;
        transform: scale(0.92) translateY(16px)
      }

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

    .dl-modal h2 {
      font-family: 'Syne', sans-serif;
      font-size: 1.35rem;
      font-weight: 800;
      text-align: center;
      margin-bottom: 8px;
    }

    .dl-modal .dl-sub {
      text-align: center;
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 28px;
    }

    .dl-option {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 18px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.07);
      background: rgba(255, 255, 255, 0.03);
      margin-bottom: 10px;
      cursor: pointer;
      transition: all 0.2s;
      text-decoration: none;
      color: var(--text);
    }

    .dl-option:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(155, 92, 246, 0.3);
      transform: translateX(3px);
    }

    .dl-option.recommended {
      border-color: rgba(155, 92, 246, 0.5);
      background: rgba(155, 92, 246, 0.07);
    }

    .dl-option-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .dl-option-icon {
      font-size: 1.1rem;
      width: 28px;
      text-align: center;
    }

    .dl-option-name {
      font-family: 'Momo Trust Display', sans-serif;
      font-size: 0.95rem;
      font-weight: 100;
    }

    .dl-badge {
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 11px;
      border-radius: 100px;
    }

    .dl-badge.rec {
      background: var(--grad);
      color: #fff;
    }

    .dl-badge.stable {
      background: rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.55);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dl-badge.forge {
      background: transparent;
      color: rgba(255, 255, 255, 0.35);
      font-size: 0.72rem;
      border: none;
    }

    .dl-dismiss {
      display: block;
      width: 100%;
      margin-top: 18px;
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.35);
      font-family: 'Manrope', sans-serif;
      font-size: 0.85rem;
      cursor: pointer;
      text-align: center;
      transition: color 0.2s;
      padding: 8px;
    }

    .dl-dismiss:hover {
      color: rgba(255, 255, 255, 0.7);
    }

    .dl-modal-close {
      position: absolute;
      top: 16px;
      right: 18px;
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.3);
      font-size: 1.3rem;
      cursor: pointer;
      line-height: 1;
      transition: color 0.2s;
    }

    .dl-modal-close:hover {
      color: #fff;
    }



    /* ─── TEAM V2 ─── */
    .team-section {
      margin-top: 0;
    }

    .team-role-group {
      margin-bottom: 56px;
      text-align: center;
    }

    .team-role-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--grad);
      color: #fff;
      font-family: 'Momo Trust Display', sans-serif;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 9px 22px;
      border-radius: 10px;
      margin-bottom: 20px;
      box-shadow: 0 4px 20px rgba(155, 92, 246, 0.25);
    }

    .team-role-label .role-count {
      background: rgba(255, 255, 255, 0.22);
      padding: 2px 8px;
      border-radius: 100px;
      font-size: 0.72rem;
    }

    .team-cards-row {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
    }

    .tm-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      width: 172px;
      flex-shrink: 0;
      transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
      cursor: default;
    }

    .tm-card:hover {
      transform: translateY(-8px);
      border-color: rgba(155, 92, 246, 0.35);
      box-shadow: 0 16px 40px rgba(155, 92, 246, 0.12);
    }

    .tm-skin-wrap {
      width: 100%;
      height: 180px;
      background: radial-gradient(ellipse at 50% 110%, rgba(155, 92, 246, 0.18) 0%, transparent 65%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0.3) 100%);
      display: flex;
      align-items: flex-end;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .tm-skin-wrap::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 40px;
      background: linear-gradient(to top, rgba(155, 92, 246, 0.08), transparent);
    }

    .tm-skin-wrap img {
      height: 160px;
      width: auto;
      object-fit: contain;
      object-position: bottom;
      image-rendering: pixelated;
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
    }

    .tm-skin-placeholder {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--grad);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Syne', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
      box-shadow: 0 4px 20px rgba(155, 92, 246, 0.35);
    }

    .tm-info {
      padding: 14px 14px 16px;
      border-top: 1px solid var(--border);
    }

    .tm-name {
      font-family: 'Momo Trust Display', sans-serif;
      font-size: 0.9rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 3px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .tm-role-tag {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-subtle);
      margin-bottom: 10px;
    }

    .tm-contact {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 0.75rem;
      color: var(--text-muted);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 5px 9px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .tm-contact span {
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Owner — bright magenta */
    .team-role-group:nth-child(1) .team-role-label {
      background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
      box-shadow: 0 4px 20px rgba(236, 72, 153, 0.35);
    }

    .team-role-group:nth-child(1) .tm-card {
      border-color: rgba(236, 72, 153, 0.3);
      background: rgba(236, 72, 153, 0.04);
    }

    .team-role-group:nth-child(1) .tm-card:hover {
      border-color: rgba(236, 72, 153, 0.5);
      box-shadow: 0 16px 40px rgba(236, 72, 153, 0.12);
    }

    /* Developers — yellow */
    .team-role-group:nth-child(3) .team-role-label {
      background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
      box-shadow: 0 4px 20px rgba(234, 179, 8, 0.35);
    }

    .team-role-group:nth-child(3) .tm-card {
      border-color: rgba(234, 179, 8, 0.3);
      background: rgba(234, 179, 8, 0.04);
    }

    .team-role-group:nth-child(3) .tm-card:hover {
      border-color: rgba(234, 179, 8, 0.5);
      box-shadow: 0 16px 40px rgba(234, 179, 8, 0.12);
    }

    /* Admins — dark red */
    .team-role-group:nth-child(4) .team-role-label {
      background: linear-gradient(135deg, #991b1b 0%, #7f1d1d 100%);
      box-shadow: 0 4px 20px rgba(153, 27, 27, 0.35);
    }

    .team-role-group:nth-child(4) .tm-card {
      border-color: rgba(153, 27, 27, 0.3);
      background: rgba(153, 27, 27, 0.04);
    }

    .team-role-group:nth-child(4) .tm-card:hover {
      border-color: rgba(153, 27, 27, 0.5);
      box-shadow: 0 16px 40px rgba(153, 27, 27, 0.12);
    }

    /* Moderators — light red */
    .team-role-group:nth-child(5) .team-role-label {
      background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
      box-shadow: 0 4px 20px rgba(239, 68, 68, 0.35);
    }

    .team-role-group:nth-child(5) .tm-card {
      border-color: rgba(239, 68, 68, 0.3);
      background: rgba(239, 68, 68, 0.04);
    }

    .team-role-group:nth-child(5) .tm-card:hover {
      border-color: rgba(239, 68, 68, 0.5);
      box-shadow: 0 16px 40px rgba(239, 68, 68, 0.12);
    }

    /* Designers — orange */
    .team-role-group:nth-child(6) .team-role-label {
      background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
      box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
    }

    .team-role-group:nth-child(6) .tm-card {
      border-color: rgba(249, 115, 22, 0.3);
      background: rgba(249, 115, 22, 0.04);
    }

    .team-role-group:nth-child(6) .tm-card:hover {
      border-color: rgba(249, 115, 22, 0.5);
      box-shadow: 0 16px 40px rgba(249, 115, 22, 0.12);
    }

    .team-role-group:nth-child(2) .team-role-label {
      background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
      box-shadow: 0 4px 20px rgba(6, 182, 212, 0.35);
    }

    .team-role-group:nth-child(2) .tm-card {
      border-color: rgba(6, 182, 212, 0.3);
      background: rgba(6, 182, 212, 0.04);
    }

    .team-role-group:nth-child(2) .tm-card:hover {
      border-color: rgba(6, 182, 212, 0.5);
      box-shadow: 0 16px 40px rgba(6, 182, 212, 0.12);
    }

    /* open slot card */
    .tm-card.open-slot {
      border-style: dashed;
      opacity: 0.45;
    }

    .tm-card.open-slot .tm-skin-wrap {
      background: rgba(255, 255, 255, 0.02);
    }

    .tm-card.open-slot .tm-name {
      color: var(--text-subtle);
    }






    @media(max-width:960px) {
      .tm-card {
        width: calc(50% - 8px);
      }
    }

    @media(max-width:500px) {
      .tm-card {
        width: 100%;
      }
    }

    h2.get {
      font-family: Momo Trust Display, sans-serif;
    }

    .footer-link {
      color: lightslategray;
      /* uses parent text color */
      text-decoration: none;
      /* removes underline */
    }

    .footer-link:hover {
      opacity: 0.85;
      /* optional subtle hover */
    }
  

/* ── LOADER ── */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.loader-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 0 24px rgba(155, 92, 246, 0.5));
    animation: loaderFloat 2s ease-in-out infinite;
}

.loader-bar-wrap {
    width: 180px;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    background: var(--grad);
    border-radius: 999px;
    width: 0%;
    transition: width 0.4s ease;
}

.loader-text {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

/* ── DYNAMIC HERO VIDEO BG ── */
.hero-bg {
    position: fixed;
    inset: 0;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 14, 0.55);
    transition: background 1.2s ease;
}

/* Hero-BG NUR auf der Home-Page sichtbar */
body:not(.page-home-active) .hero-bg {
    opacity: 0 !important;
    pointer-events: none;
}

/* ── HERO WITH VIDEO ── */
.hero-with-video {
    position: relative;
    z-index: 3;
}

/* Theme Badge */
.hero-theme-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.6;
}

.theme-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── NEWS GRID ── */
.news-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 1.25rem;
}

.news-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.news-card:hover {
    border-color: rgba(var(--accent-rgb, 155, 92, 246), 0.35);
    transform: translateY(-3px);
}

.news-card--featured {
    grid-row: span 1;
    background: rgba(var(--accent-rgb, 155, 92, 246), 0.04);
    border-color: rgba(var(--accent-rgb, 155, 92, 246), 0.2);
}

.news-card__tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(var(--accent-rgb, 155, 92, 246), 0.1);
    border: 1px solid rgba(var(--accent-rgb, 155, 92, 246), 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    width: fit-content;
}

.news-card__tag--dev      { color: #38bdf8; background: rgba(56,189,248,0.08); border-color: rgba(56,189,248,0.2); }
.news-card__tag--cosmetic { color: #f59e0b; background: rgba(245,158,11,0.08); border-color: rgba(245,158,11,0.2); }

.news-card__title {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
}

.news-card__body {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}

.news-card__meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--text-subtle);
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
    .news-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .news-grid { grid-template-columns: 1fr; }
}

/* ── ABOUT US GRID ── */
.about-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-us-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.about-stat-card:hover {
    border-color: rgba(var(--accent-rgb, 155, 92, 246), 0.3);
    transform: translateY(-2px);
}

.about-stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    transition: color 1.2s ease;
}

.about-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .about-us-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}