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

  :root {
    --bg: #161026;
    --bg2: #1d1533;
    --bg3: #261c45;
    --accent: #f04173;
    --accent2: #a399ff;
    --accent3: #99ffe6;
    --text: #f0eeff;
    --muted: #ab93d8;
    --border: rgba(234, 188, 255, 0.08);
    --card: rgba(223, 206, 255, 0.04);
    --pixel: 3px;
    --font-head: 'EB Garamond', serif;
    --font-mono: 'DM Mono', monospace;
  }

  html { scroll-behavior: smooth; }

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

  /* === PIXEL GRID BG === */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(123,94,167,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(123,94,167,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
  }

  /* === SCANLINES === */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(5, 4, 13, 0.06) 2px,
      rgba(5, 4, 13, 0.06) 4px
    );
    pointer-events: none;
    z-index: 0;
  }

  .container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  /* === NAV === */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(14, 10, 18, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
  }
  nav .inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }
  .nav-logo {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--accent3);
    letter-spacing: 0.05em;
  }
  .nav-logo span { color: var(--accent); }
  .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
  }
  .nav-links a {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }

  /* === HERO === */
  .hero {
    padding: 90px 0 60px;
    position: relative;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent3);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(0,212,160,0.25);
    background: rgba(0,212,160,0.06);
    padding: 6px 14px;
    margin-bottom: 28px;
  }
  .hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent3);
    animation: blink 1.2s step-start infinite;
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  h1 {
    font-size: clamp(42px, 8vw, 80px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
  .h1-lua { color: var(--accent3); }
  .h1-plus {
    color: var(--muted);
    font-weight: 400;
    font-size: 0.55em;
    margin: 0 6px;
  }
  .h1-love { color: var(--accent); }

  .hero-sub {
    font-size: clamp(22px, 4vw, 34px);
    font-weight: 600;
    color: var(--text);
    opacity: 0.85;
    margin-bottom: 20px;
    margin-top: 6px;
    line-height: 1.2;
  }

  .hero-desc {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 40px;
  }

  .hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 28px;
    text-decoration: none;
    border: 2px solid var(--accent);
    transition: background 0.18s, transform 0.12s;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  }
  .btn-primary:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
  }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--muted);
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 28px;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: color 0.18s, border-color 0.18s;
  }
  .btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

  /* === PIXEL ART DECORATIONS === */
  .pixel-art {
    position: absolute;
    right: 0;
    top: 60px;
    opacity: 0.18;
    pointer-events: none;
  }

  /* === STATS BAR === */
  .stats-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
  }
  .stat-item {
    text-align: center;
    padding: 12px;
    position: relative;
  }
  .stat-item + .stat-item::before {
    content: ':';
    text-align: center;
    color: var(--muted);
    font-size: 32px;
    position: absolute;
    left: 0;
    top: 10%;
  }
  .stat-number {
    font-size: 34px;
    font-weight: 800;
    color: var(--accent3);
    font-family: var(--font-mono);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
  }
  .stat-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* === SECTION TITLE === */
  .section { padding: 72px 0; position: relative; z-index: 1; }

  .section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .section-label::before {
    content: '//';
    color: var(--accent2);
  }

  h2 {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }

  .section-intro {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.9;
    margin-bottom: 48px;
  }

  /* === ABOUT === */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  @media (max-width: 600px) { .about-grid { grid-template-columns: 1fr; } }

  .about-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 28px;
    position: relative;
    overflow: hidden;
  }
  .about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent2), var(--accent));
  }
  .about-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
  }
  .about-card p {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--muted);
    line-height: 1.85;
  }
  .about-card .card-icon {
    font-size: 28px;
    margin-bottom: 16px;
  }

  /* === TOPICS === */
  .topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
  }
  .topic-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    transition: border-color 0.2s;
  }
  .topic-item:hover {
    border-color: rgba(123,94,167,0.4);
  }
  .topic-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent2);
    min-width: 28px;
    padding-top: 2px;
  }
  .topic-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
  }
  .topic-content p {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--muted);
    line-height: 1.7;
  }

  /* === ORG === */
  .org-block {
    background: var(--bg3);
    border: 1px solid var(--border);
    padding: 40px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: start;
    position: relative;
    overflow: hidden;
  }
  .org-block::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123,94,167,0.12), transparent 70%);
    pointer-events: none;
  }
  @media (max-width: 600px) {
    .org-block { grid-template-columns: 1fr; }
  }
  .org-avatar {
    width: 72px;
    height: 72px;
    background: var(--bg);
    border: 2px solid linear-gradient(135deg, #8f82ff, #f20548);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }
  .org-name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text);
  }
  .org-desc {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--muted);
    line-height: 1.9;
  }
  .org-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(123,94,167,0.15);
    color: var(--accent2);
    border: 1px solid rgba(123,94,167,0.25);
    padding: 3px 10px;
    margin: 12px 6px 0 0;
  }

  /* === LINKS / CTA === */
  .links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 40px;
  }
  .link-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 24px 20px;
    background: var(--card);
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: border-color 0.2s, transform 0.15s;
    position: relative;
  }
  .link-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-3px);
  }
  .link-card::after {
    content: '→';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    color: var(--muted);
    transition: color 0.2s, right 0.2s;
  }
  .link-card:hover::after { color: var(--text); right: 16px; }

  .link-card.primary-link { border-color: rgba(232,67,147,0.3); }
  .link-card.primary-link::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--accent);
  }

  .link-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid var(--border);
  }
  .link-icon.pink { background: rgba(232,67,147,0.1); border-color: rgba(232,67,147,0.2); }
  .link-icon.purple { background: rgba(123,94,167,0.1); border-color: rgba(123,94,167,0.2); }
  .link-icon.teal { background: rgba(0,212,160,0.1); border-color: rgba(0,212,160,0.2); }
  .link-icon.yellow { background: rgba(249,224,75,0.1); border-color: rgba(249,224,75,0.2); }

  .link-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
  }
  .link-card p {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--muted);
    line-height: 1.6;
  }

  /* === FOOTER === */
  footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
    position: relative;
    z-index: 1;
  }
  footer .inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  footer p {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--muted);
  }
  footer span { color: var(--accent); }

  /* === DIVIDER === */
  .divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
  }

  /* === PIXEL DECORATION SVG === */
  .hero-pixels {
    position: absolute;
    right: -20px;
    top: 40px;
    pointer-events: none;
    opacity: 0.22;
    animation: float 6s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
  }

  /* === HIGHLIGHT === */
  .highlight { color: var(--accent3); }
  .highlight-pink { color: var(--accent); }
  .highlight-yellow { color: var(--accent3); }

  /* === MOBILE NAV === */
  @media (max-width: 500px) {
    .nav-links { display: none; }
    .org-desc { font-size: 12px; }
  }
