:root {
      --orange: #FF8C42;
      --orange-glow: rgba(255, 140, 66, 0.4);
      --orange-dim: rgba(255, 140, 66, 0.12);
      --bg: #0d0d0f;
      --bg2: #111114;
      --surface: rgba(255,255,255,0.04);
      --surface-hover: rgba(255,255,255,0.08);
      --border: rgba(255,255,255,0.08);
      --text: #f0f0f0;
      --muted: #888;
      --radius: 18px;
    }

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

    html { scroll-behavior: smooth; }

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

    /* ── CANVAS PARTICLES ─────────────────────── */
    #canvas-bg {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    /* ── GLOW ORBS ────────────────────────────── */
    .orb {
      position: fixed;
      border-radius: 50%;
      filter: blur(100px);
      pointer-events: none;
      z-index: 0;
      animation: orbFloat 8s ease-in-out infinite;
    }
    .orb-1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(255,140,66,0.18) 0%, transparent 70%);
      top: -200px; left: -200px;
      animation-delay: 0s;
    }
    .orb-2 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(255,180,100,0.1) 0%, transparent 70%);
      bottom: -100px; right: -100px;
      animation-delay: -4s;
    }

    @keyframes orbFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -20px) scale(1.05); }
      66% { transform: translate(-20px, 15px) scale(0.95); }
    }

    /* ── CONTAINER ────────────────────────────── */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 1;
    }

    /* ── HEADER ───────────────────────────────── */
    header {
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(13,13,15,0.8);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--border);
    }

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

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Syne', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--orange);
      text-decoration: none;
      padding: 6px 14px;
      border-radius: 30px;
      transition: background 0.3s;
    }
    .logo:hover { background: var(--orange-dim); }
    .logo-image { width: 36px; height: 36px; border-radius: 50%; }

    .nav-links { display: flex; gap: 0.5rem; list-style: none; align-items: center; }
    .nav-links a {
      text-decoration: none;
      color: var(--muted);
      font-weight: 500;
      font-size: 0.9rem;
      padding: 8px 16px;
      border-radius: 20px;
      transition: color 0.25s, background 0.25s;
    }
    .nav-links a:hover, .nav-links a.active {
      color: var(--text);
      background: var(--surface-hover);
    }

    .invite-btn {
      background: linear-gradient(135deg, #FF8C42, #FFB366) !important;
      color: #fff !important;
      padding: 9px 20px !important;
      border-radius: 30px;
      font-weight: 600;
      box-shadow: 0 0 20px var(--orange-glow);
      transition: box-shadow 0.3s, transform 0.3s !important;
    }
    .invite-btn:hover {
      box-shadow: 0 0 35px var(--orange-glow) !important;
      transform: translateY(-2px) !important;
      background: var(--surface-hover) !important;
    }

    /* ── MOBILE NAV ───────────────────────────── */
    .mobile-menu-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
    }
    .mobile-menu-btn span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: 0.3s;
    }
    .mobile-nav {
      display: none;
      background: rgba(13,13,15,0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
    .mobile-nav-links { list-style: none; padding: 1rem 24px; }
    .mobile-nav-links li { padding: 0.5rem 0; }
    .mobile-nav-links a { color: var(--muted); text-decoration: none; font-size: 1rem; }
    .mobile-invite-btn {
      display: inline-block;
      background: linear-gradient(135deg, #FF8C42, #FFB366);
      color: #fff !important;
      padding: 10px 20px;
      border-radius: 30px;
      margin-top: 0.5rem;
    }

    /* ── HERO ─────────────────────────────────── */
    .hero {
      position: relative;
      min-height: calc(100vh - 72px);
      display: flex;
      align-items: center;
      z-index: 1;
      padding: 6rem 0 4rem;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 300px;
      align-items: center;
      gap: 4rem;
      width: 100%;
    }

    .hero-text { min-width: 0; }

    .hero-badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--orange-dim);
      border: 1px solid rgba(255,140,66,0.3);
      color: var(--orange);
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 600;
      margin-bottom: 1.8rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      animation: fadeSlideDown 0.6s ease both;
    }
    .hero-badge-pill .dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }

    @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

    .hero-text h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(3rem, 7vw, 5.5rem);
      font-weight: 800;
      line-height: 1.05;
      color: #fff;
      margin-bottom: 1.5rem;
      animation: fadeSlideDown 0.7s 0.1s ease both;
    }

    .hero-text h1 .gradient-word {
      background: linear-gradient(135deg, #FF8C42, #FFB366, #FFCC80);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-text p {
      font-size: 1.15rem;
      color: var(--muted);
      max-width: 520px;
      line-height: 1.75;
      margin-bottom: 2.5rem;
      animation: fadeSlideDown 0.7s 0.2s ease both;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      animation: fadeSlideDown 0.7s 0.3s ease both;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, #FF8C42, #FFB366);
      color: white;
      padding: 0.9rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: transform 0.3s, box-shadow 0.3s;
      box-shadow: 0 0 30px var(--orange-glow);
      position: relative;
      overflow: hidden;
    }
    .cta-button::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .cta-button:hover { transform: translateY(-3px); box-shadow: 0 0 50px var(--orange-glow); }
    .cta-button:hover::before { opacity: 1; }

    .secondary-button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0.9rem 2rem;
      border-radius: 50px;
      background: var(--surface);
      color: var(--text);
      border: 1px solid var(--border);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
    }
    .secondary-button:hover {
      background: var(--surface-hover);
      border-color: rgba(255,255,255,0.2);
      transform: translateY(-3px);
    }

    /* HERO CARD (floating right) */
    .hero-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 2rem;
      min-width: 280px;
      backdrop-filter: blur(12px);
      animation: fadeSlideUp 0.8s 0.4s ease both, cardFloat 5s ease-in-out infinite 1.2s;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--border);
    }
    @keyframes cardFloat {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }
    .hero-card-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 1.5rem;
      padding-bottom: 1.2rem;
      border-bottom: 1px solid var(--border);
    }
    .hero-card-avatar {
      width: 48px; height: 48px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .hero-card-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1rem; }
    .hero-card-status { font-size: 0.78rem; color: var(--muted); }
    .hero-card-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.6rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      font-size: 0.88rem;
    }
    .hero-card-row:last-child { border-bottom: none; }
    .hero-card-label { color: var(--muted); }
    .hero-card-value { color: var(--orange); font-weight: 600; }
    .online-dot { width: 8px; height: 8px; border-radius: 50%; background: #2ecc71; display: inline-block; margin-right: 4px; animation: pulse 2s infinite; }

    /* ── STATS ────────────────────────────────── */
    .stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin: 5rem 0;
      position: relative;
      z-index: 1;
    }

    .stat-card {
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 2rem 1.5rem;
      border-radius: var(--radius);
      text-align: center;
      transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
      cursor: default;
    }
    .stat-card:hover {
      border-color: rgba(255,140,66,0.4);
      background: var(--orange-dim);
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(255,140,66,0.1);
    }
    .stat-number {
      font-family: 'Syne', sans-serif;
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--orange);
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    .stat-card p { color: var(--muted); font-size: 0.88rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

    /* ── SECTION LABEL ────────────────────────── */
    .section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }
    .section-tag {
      display: inline-block;
      background: var(--orange-dim);
      border: 1px solid rgba(255,140,66,0.25);
      color: var(--orange);
      padding: 4px 14px;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 1rem;
    }
    .section-header h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.8rem;
    }
    .section-header p { color: var(--muted); font-size: 1.05rem; max-width: 500px; margin: 0 auto; line-height: 1.7; }

    /* ── FEATURES ─────────────────────────────── */
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-bottom: 5rem;
      position: relative;
      z-index: 1;
    }

    .feature-card {
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 2.2rem;
      border-radius: var(--radius);
      transition: border-color 0.35s, background 0.35s, transform 0.35s, box-shadow 0.35s;
      position: relative;
      overflow: hidden;
      cursor: default;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 0%, rgba(255,140,66,0.08) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .feature-card:hover {
      border-color: rgba(255,140,66,0.35);
      background: rgba(255,255,255,0.06);
      transform: translateY(-8px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 40px rgba(255,140,66,0.08);
    }
    .feature-card:hover::before { opacity: 1; }

    .feature-icon-wrap {
      width: 54px; height: 54px;
      border-radius: 14px;
      background: var(--orange-dim);
      border: 1px solid rgba(255,140,66,0.25);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.4rem;
      transition: background 0.3s, border-color 0.3s, transform 0.3s;
    }
    .feature-card:hover .feature-icon-wrap {
      background: rgba(255,140,66,0.2);
      border-color: rgba(255,140,66,0.5);
      transform: scale(1.1) rotate(-3deg);
    }

    .feature-card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.7rem;
    }
    .feature-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

    /* ── CTA BANNER ───────────────────────────── */
    .cta-banner {
      position: relative;
      z-index: 1;
      margin: 2rem 0 5rem;
      border-radius: 24px;
      padding: 4rem 3rem;
      text-align: center;
      overflow: hidden;
      background: var(--surface);
      border: 1px solid var(--border);
    }
    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% -20%, rgba(255,140,66,0.2) 0%, transparent 65%);
      pointer-events: none;
    }
    .cta-banner h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.8rem;
      position: relative;
    }
    .cta-banner p { color: var(--muted); font-size: 1.05rem; margin-bottom: 2rem; position: relative; }
    .cta-banner .cta-button { position: relative; }

    /* ── FOOTER ───────────────────────────────── */
    footer {
      background: rgba(255,255,255,0.02);
      border-top: 1px solid var(--border);
      padding: 2.5rem 0;
      position: relative;
      z-index: 1;
    }
    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
    .footer-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.25s;
    }
    .footer-links a:hover { color: var(--orange); }
    footer p { color: var(--muted); font-size: 0.82rem; }

    /* ── ANIMATIONS ───────────────────────────── */
    @keyframes fadeSlideDown {
      from { opacity: 0; transform: translateY(-20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── MOBILE ───────────────────────────────── */
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .mobile-menu-btn { display: flex; }

      .hero { min-height: auto; padding: 4rem 0 3rem; }
      .hero-inner { grid-template-columns: 1fr; }
      .hero-text h1 { font-size: 2.8rem; }
      .hero-card { width: 100%; animation: fadeSlideUp 0.8s 0.4s ease both !important; }

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

      .footer-content { flex-direction: column; text-align: center; }
      .footer-links { justify-content: center; }

      .cta-banner { padding: 3rem 1.5rem; }
    }

    @media (max-width: 480px) {
      .stats { grid-template-columns: 1fr 1fr; }
      .hero-text h1 { font-size: 2.2rem; }
      .hero-buttons { flex-direction: column; }
    }