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

    :root {
      --bg: #f5f5f7;
      --card: #ffffff;
      --border: #d2d2d7;
      --text: #1d1d1f;
      --muted: #86868b;
      --green: #2DB757;
      --green-light: #e8f7ed;
      --radius: 12px;
      --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
      font-size: 15px;
      line-height: 1.5;
    }

    h1, h2, h3, h4 {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      letter-spacing: -0.01em;
    }

    /* ─── NAV ─────────────────────────────────────────────────────── */
    nav {
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav-inner {
      max-width: 1080px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-logo {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 18px;
      color: var(--text);
      text-decoration: none;
      padding: 16px 0;
      margin-right: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-logo .chevron {
      color: var(--green);
      font-style: normal;
    }

    .nav-tabs {
      display: flex;
      align-items: center;
      gap: 2px;
      flex: 1;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
    .nav-tabs::-webkit-scrollbar { display: none; }

    .nav-tab {
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
      padding: 8px 14px;
      border-radius: 8px;
      cursor: pointer;
      border: none;
      background: none;
      transition: color 0.15s, background 0.15s;
      white-space: nowrap;
    }

    .nav-tab:hover { color: var(--text); background: rgba(0,0,0,0.04); }
    .nav-tab.active { color: var(--text); background: rgba(0,0,0,0.06); font-weight: 600; }

    #admin-tab-btn { display: none; }
    #admin-tab-btn.visible { display: inline-block; }
    .alert.visible { display: block; }
    .approval-error-msg.visible { display: block; }

    /* ─── MAIN ─────────────────────────────────────────────────────── */
    main {
      max-width: 1080px;
      margin: 0 auto;
      padding: 40px 20px 80px;
    }

    .page { display: none; pointer-events: none; }
    .page.active { display: block; pointer-events: auto; }

    /* ─── ANNOUNCEMENT BANNER (home-01) ──────────────────────────── */
    .announcement-banner {
      background: var(--text);
      color: #fff;
      padding: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, opacity 0.3s ease;
      max-height: 80px;
    }

    .announcement-banner.dismissed {
      max-height: 0;
      opacity: 0;
      pointer-events: none;
    }

    .announcement-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 10px 20px;
      position: relative;
      max-width: 1080px;
      margin: 0 auto;
    }

    .announcement-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      flex-shrink: 0;
      animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.6; transform: scale(1.3); }
    }

    .announcement-text {
      font-size: 13px;
      color: rgba(255,255,255,0.9);
      text-align: center;
      line-height: 1.4;
    }

    .announcement-text strong { color: #fff; }

    .announcement-close {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: rgba(255,255,255,0.6);
      font-size: 14px;
      cursor: pointer;
      padding: 4px 8px;
      line-height: 1;
      border-radius: 4px;
      transition: color 0.15s, background 0.15s;
    }

    .announcement-close:hover { color: #fff; background: rgba(255,255,255,0.1); }

    /* ─── FEATURED PROJECT (home-02) ─────────────────────────────── */
    .featured-project {
      margin-top: 48px;
    }

    .featured-project:empty { display: none; }

    .featured-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow);
      position: relative;
    }

    .featured-card-accent {
      height: 4px;
      background: linear-gradient(90deg, var(--green) 0%, #7ed9a3 100%);
    }

    .featured-card-body {
      padding: 32px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: start;
    }

    @media (max-width: 600px) {
      .featured-card-body { grid-template-columns: 1fr; }
    }

    .featured-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .featured-label::before {
      content: '';
      display: inline-block;
      width: 20px;
      height: 2px;
      background: var(--green);
    }

    .featured-name {
      font-family: 'Rajdhani', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 12px;
      line-height: 1.1;
    }

    .featured-problem {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 20px;
      max-width: 560px;
    }

    .featured-meta {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }

    .featured-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 16px;
    }

    .featured-score {
      font-family: 'Rajdhani', sans-serif;
      font-size: 48px;
      font-weight: 700;
      color: var(--text);
      line-height: 1;
      text-align: right;
    }

    .featured-score-label {
      font-size: 11px;
      color: var(--muted);
      text-align: right;
      margin-top: 2px;
    }

    .featured-view-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 20px;
      background: var(--text);
      color: #fff;
      border: none;
      border-radius: 980px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: opacity 0.15s, transform 0.1s;
      text-decoration: none;
      white-space: nowrap;
    }

    .featured-view-btn:hover { opacity: 0.82; }
    .featured-view-btn:active { transform: scale(0.97); }

    /* ─── HOME ─────────────────────────────────────────────────────── */
    .hero {
      text-align: center;
      padding: 72px 24px 64px;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 600;
      color: var(--green);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 20px;
    }

    .hero-eyebrow .chevron-mark {
      font-size: 16px;
      line-height: 1;
    }

    .hero h1 {
      font-size: clamp(36px, 6vw, 64px);
      line-height: 1.05;
      color: var(--text);
      margin-bottom: 20px;
    }

    .hero h1 span { color: var(--green); }

    .hero p {
      font-size: 17px;
      color: var(--muted);
      max-width: 520px;
      margin: 0 auto 36px;
    }

    .btn {
      display: inline-block;
      padding: 12px 28px;
      border-radius: 980px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      text-decoration: none;
      transition: opacity 0.15s, transform 0.1s;
    }

    .btn:active { transform: scale(0.97); }

    .btn-primary {
      background: var(--green);
      color: #fff;
    }

    .btn-primary:hover { opacity: 0.88; }

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

    .btn-secondary:hover { background: var(--bg); }

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

    /* Stats row */
    .stats-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 16px;
      margin-top: 64px;
    }

    .stat-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      text-align: center;
      box-shadow: var(--shadow);
    }

    .stat-card .stat-icon {
      font-size: 24px;
      margin-bottom: 12px;
      display: block;
    }

    .stat-card .stat-num {
      font-family: 'Rajdhani', sans-serif;
      font-size: 48px;
      font-weight: 700;
      color: var(--text);
      line-height: 1;
    }

    .stat-card .stat-num span { color: var(--green); }

    .stat-card .stat-label {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      margin-top: 8px;
    }

    .stat-card .stat-desc {
      font-size: 12px;
      color: var(--muted);
      margin-top: 4px;
      line-height: 1.4;
    }

    /* How it works */
    .section-title {
      font-size: 28px;
      margin-bottom: 8px;
    }

    .section-sub {
      color: var(--muted);
      font-size: 15px;
      margin-bottom: 32px;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
      margin-top: 16px;
    }

    .step-num {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--green-light);
      color: var(--green);
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

    .step-num-large {
      font-family: 'Rajdhani', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      color: var(--green);
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .step-icon {
      font-size: 28px;
      margin-bottom: 12px;
      display: block;
    }

    .step-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
      box-shadow: var(--shadow);
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .step-card:hover {
      border-color: var(--green);
      box-shadow: 0 4px 20px rgba(45,183,87,0.12);
    }

    .step-card h4 { font-size: 18px; margin-bottom: 8px; }
    .step-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

    /* ─── SUBMIT ─────────────────────────────────────────────────── */
    .form-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 40px;
      box-shadow: var(--shadow);
      max-width: 680px;
    }

    .form-card h2 { font-size: 28px; margin-bottom: 6px; }
    .form-card > p { color: var(--muted); margin-bottom: 32px; }

    /* Track toggle */
    .track-toggle {
      display: inline-flex;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 3px;
      margin-bottom: 32px;
    }

    .track-btn {
      padding: 8px 24px;
      border-radius: 6px;
      border: none;
      background: none;
      font-size: 14px;
      font-weight: 600;
      color: var(--muted);
      cursor: pointer;
      transition: all 0.15s;
    }

    .track-btn.active {
      background: var(--card);
      color: var(--text);
      box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }

    /* Form fields */
    .form-group { margin-bottom: 24px; }

    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 8px;
    }

    .form-group label span { color: var(--green); }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 10px 14px;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-size: 15px;
      font-family: inherit;
      color: var(--text);
      background: var(--card);
      outline: none;
      transition: border-color 0.15s, box-shadow 0.15s;
      appearance: none;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(45, 183, 87, 0.12);
    }

    .form-group input.error,
    .form-group textarea.error,
    .form-group select.error {
      border-color: #ff3b30;
      box-shadow: 0 0 0 3px rgba(255,59,48,0.1);
    }

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

    .field-hint { font-size: 12px; color: var(--muted); margin-top: 5px; }
    .field-error { font-size: 12px; color: #ff3b30; margin-top: 5px; display: none; }
    .field-error.visible { display: block; }

    /* Roles checkbox grid */
    .roles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 8px;
    }

    .role-chip {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 9px 12px;
      border: 1px solid var(--border);
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.15s;
      font-size: 14px;
      user-select: none;
      background: var(--card);
    }

    .role-chip input[type="checkbox"] { display: none; }
    .role-chip.selected { border-color: var(--green); background: var(--green-light); color: var(--green); font-weight: 600; }

    .mvp-only-fields { display: none; }
    .mvp-only-fields.visible { display: block; }

    .form-divider {
      border: none;
      border-top: 1px solid var(--border);
      margin: 28px 0;
    }

    .form-actions { display: flex; justify-content: flex-end; margin-top: 32px; }

    /* Alert / feedback */
    .alert {
      padding: 14px 18px;
      border-radius: 10px;
      font-size: 14px;
      margin-bottom: 24px;
      display: none;
    }

    .alert.visible { display: block; }
    .alert-success { background: var(--green-light); color: #1a6b38; border: 1px solid #a3d9b5; }
    .alert-error { background: #fff2f1; color: #c0392b; border: 1px solid #ffbcba; }

    /* ─── BOARD ─────────────────────────────────────────────────── */

    /* Search bar */
    .board-search-row {
      margin-bottom: 16px;
    }

    .board-search-wrap {
      position: relative;
      max-width: 100%;
    }

    .board-search-icon {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--muted);
      pointer-events: none;
    }

    .board-search-input {
      width: 100%;
      padding: 11px 16px 11px 40px;
      border: 1px solid var(--border);
      border-radius: 980px;
      font-size: 15px;
      font-family: inherit;
      color: var(--text);
      background: var(--card);
      outline: none;
      transition: border-color 0.15s, box-shadow 0.15s;
    }

    .board-search-input:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(45,183,87,0.12);
    }

    .board-header {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 28px;
    }

    .filter-bar { display: flex; gap: 8px; flex-wrap: wrap; }

    .filter-btn {
      padding: 7px 16px;
      border: 1px solid var(--border);
      border-radius: 980px;
      font-size: 13px;
      font-weight: 500;
      background: var(--card);
      color: var(--muted);
      cursor: pointer;
      transition: all 0.15s;
    }

    .filter-btn:hover { color: var(--text); border-color: #a0a0a5; }
    .filter-btn.active { background: var(--text); color: #fff; border-color: var(--text); }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
    }

    .project-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
      cursor: pointer;
      transition: transform 0.15s, box-shadow 0.15s;
    }

    .project-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
    .card-header-left { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
    .card-header-right { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }

    .stage-tag {
      font-size: 11px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 4px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .stage-tag.idea { background: #e8f4fd; color: #1a78c2; }
    .stage-tag.mvp { background: var(--green-light); color: var(--green); }

    .score-badge {
      font-family: 'Rajdhani', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--green);
    }

    .card-title { font-size: 18px; margin-bottom: 6px; }
    .card-pitch { font-size: 13px; color: var(--muted); margin-bottom: 12px; line-height: 1.4; }

    /* Category pill */
    .category-pill {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      padding: 3px 9px;
      border-radius: 980px;
      letter-spacing: 0.02em;
    }

    /* Endorsed badge */
    .endorsed-badge {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      padding: 3px 9px;
      border-radius: 4px;
      background: #fef9c3;
      color: #92400e;
      border: 1px solid #fde68a;
      letter-spacing: 0.03em;
    }

    /* Progress bar */
    .roles-progress {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
    }

    .roles-progress-bar-wrap {
      flex: 1;
      height: 5px;
      background: var(--border);
      border-radius: 980px;
      overflow: hidden;
    }

    .roles-progress-bar {
      height: 100%;
      background: var(--green);
      border-radius: 980px;
      transition: width 0.3s ease;
    }

    .roles-progress-label {
      font-size: 11px;
      color: var(--muted);
      white-space: nowrap;
    }

    /* Card footer */
    .card-footer {
      margin-top: 4px;
    }

    .roles-needed { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }

    .card-meta-row {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 8px;
    }

    .applicant-count {
      font-size: 12px;
      font-weight: 600;
      color: var(--text);
    }

    .urgency-label {
      font-size: 11px;
      color: var(--muted);
    }

    /* Admin tabs */
    .admin-tabs {
      display: flex;
      gap: 4px;
      margin-bottom: 24px;
      border-bottom: 1px solid var(--border);
      padding-bottom: 0;
    }

    .admin-tab-btn {
      font-size: 14px;
      font-weight: 500;
      color: var(--muted);
      padding: 10px 18px;
      border: none;
      background: none;
      cursor: pointer;
      border-bottom: 2px solid transparent;
      margin-bottom: -1px;
      transition: color 0.15s, border-color 0.15s;
    }

    .admin-tab-btn.active {
      color: var(--text);
      border-bottom-color: var(--green);
      font-weight: 600;
    }

    .role-tag {
      font-size: 11px;
      padding: 3px 8px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 4px;
      color: var(--muted);
    }

    /* Empty state */
    .empty-state {
      display: none;
      text-align: center;
      padding: 72px 24px;
      color: var(--muted);
    }

    .empty-state.visible { display: block; }
    .empty-state .empty-icon { font-size: 48px; margin-bottom: 16px; }
    .empty-state h3 { font-size: 20px; color: var(--text); margin-bottom: 8px; }
    .empty-state p { font-size: 14px; max-width: 360px; margin: 0 auto; }

    /* ─── MY SUBMISSIONS ─────────────────────────────────────────── */
    .lookup-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: var(--shadow);
      max-width: 540px;
      margin-bottom: 32px;
    }

    .lookup-card h2 { font-size: 22px; margin-bottom: 6px; }
    .lookup-card p { color: var(--muted); font-size: 14px; margin-bottom: 20px; }

    .lookup-row { display: flex; gap: 10px; }
    .lookup-row input { flex: 1; }

    /* ─── DASHBOARD TWO-COLUMN LAYOUT ───────────────────────────── */
    .dash-layout {
      display: grid;
      grid-template-columns: 60% 40%;
      gap: 32px;
      align-items: start;
    }

    @media (max-width: 768px) {
      .dash-layout {
        grid-template-columns: 1fr;
        gap: 24px;
      }
    }

    .dash-col-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: 18px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 16px;
      padding-bottom: 10px;
      border-bottom: 1px solid var(--border);
    }

    .dash-empty {
      padding: 40px 24px;
    }

    /* ─── PROJECT CARDS ──────────────────────────────────────────── */
    .dash-project-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px 22px;
      box-shadow: var(--shadow);
      margin-bottom: 12px;
    }

    .dash-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
      gap: 12px;
    }

    .dash-card-name {
      font-weight: 700;
      font-size: 15px;
      color: var(--text);
    }

    .dash-card-meta {
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 12px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .dash-card-meta span { display: flex; align-items: center; gap: 4px; }

    .dash-card-actions {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 12px;
    }

    .dash-btn {
      font-size: 12px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: opacity 0.15s;
    }
    .dash-btn:hover { opacity: 0.8; }

    .dash-btn-primary { background: var(--green); color: #fff; }
    .dash-btn-secondary { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
    .dash-btn-warning { background: #FF9500; color: #fff; }

    .dash-applicants-section {
      margin-top: 12px;
      border-top: 1px solid var(--border);
      padding-top: 12px;
    }

    .dash-applicants-section h4 {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 10px;
    }

    .dash-applicant-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 10px;
      background: var(--surface);
      border-radius: 8px;
      margin-bottom: 6px;
      font-size: 13px;
    }

    .dash-applicant-role {
      font-size: 10px;
      font-weight: 700;
      padding: 2px 7px;
      border-radius: 4px;
      background: var(--green-light);
      color: var(--green);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .dash-applicant-email { color: var(--muted); font-size: 12px; margin-left: auto; }

    .revision-feedback-box {
      background: #fff2f1;
      border-left: 3px solid #FF3B30;
      border-radius: 0 8px 8px 0;
      padding: 10px 14px;
      font-size: 13px;
      color: var(--text);
      margin-top: 8px;
    }

    .revision-feedback-box .rev-label {
      font-size: 11px;
      font-weight: 700;
      color: #FF3B30;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 4px;
    }

    /* ─── ACTIVITY FEED ──────────────────────────────────────────── */
    .activity-feed {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .activity-item {
      display: flex;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
    }
    .activity-item:last-child { border-bottom: none; }

    .activity-icon {
      font-size: 18px;
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--surface);
    }

    .activity-body { flex: 1; min-width: 0; }

    .activity-text {
      font-size: 13px;
      color: var(--text);
      line-height: 1.4;
      margin-bottom: 3px;
    }

    .activity-time {
      font-size: 11px;
      color: var(--muted);
    }

    .activity-item.type-apply { border-left: 3px solid var(--green); padding-left: 10px; }
    .activity-item.type-approved { border-left: 3px solid #34C759; padding-left: 10px; }
    .activity-item.type-revision { border-left: 3px solid #FF3B30; padding-left: 10px; }
    .activity-item.type-pending { border-left: 3px solid #FF9500; padding-left: 10px; }

    .activity-loading, .activity-empty {
      font-size: 13px;
      color: var(--muted);
      padding: 24px 0;
      text-align: center;
    }

    .submission-item {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 20px 24px;
      box-shadow: var(--shadow);
      margin-bottom: 12px;
    }

    .submission-item-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }

    .status-badge {
      font-size: 11px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 980px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .status-badge.pending { background: #fff8e6; color: #b07700; }
    .status-badge.approved { background: var(--green-light); color: var(--green); }
    .status-badge.revision { background: #fff2f1; color: #c0392b; }

    .submission-meta { font-size: 12px; color: var(--muted); }

    /* ─── ADMIN ─────────────────────────────────────────────────── */
    .admin-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 32px;
    }

    .admin-badge {
      font-size: 11px;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 4px;
      background: #fff8e6;
      color: #b07700;
      border: 1px solid #f5d980;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .admin-item {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
      margin-bottom: 16px;
    }

    /* ─── SCORING SLIDERS ────────────────────────────────────────── */
    .scoring-section {
      margin-top: 20px;
      border-top: 1px solid var(--border);
      padding-top: 20px;
    }

    .scoring-section h4 {
      font-size: 15px;
      margin-bottom: 16px;
      color: var(--text);
    }

    .criterion-row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .criterion-label {
      font-size: 13px;
      color: var(--text);
      width: 160px;
      flex-shrink: 0;
    }

    .criterion-slider {
      flex: 1;
      -webkit-appearance: none;
      appearance: none;
      height: 4px;
      border-radius: 2px;
      background: var(--border);
      outline: none;
      cursor: pointer;
    }

    .criterion-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--green);
      cursor: pointer;
      box-shadow: 0 1px 4px rgba(0,0,0,0.2);
      transition: transform 0.1s;
    }

    .criterion-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }

    .criterion-value {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 15px;
      color: var(--text);
      width: 32px;
      text-align: right;
      flex-shrink: 0;
    }

    .score-total-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 16px;
      padding: 14px 16px;
      background: var(--bg);
      border-radius: 10px;
      border: 1px solid var(--border);
    }

    .score-total-label {
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
    }

    .score-total-num {
      font-family: 'Rajdhani', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--text);
      transition: color 0.2s;
    }

    .score-total-num.pass { color: var(--green); }
    .score-total-num.fail { color: #ff3b30; }

    .feedback-section {
      margin-top: 16px;
    }

    .feedback-section textarea {
      width: 100%;
      padding: 10px 14px;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-size: 14px;
      font-family: inherit;
      color: var(--text);
      background: var(--card);
      outline: none;
      resize: vertical;
      min-height: 80px;
      transition: border-color 0.15s, box-shadow 0.15s;
    }

    .feedback-section textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(45,183,87,0.12);
    }

    .admin-actions {
      display: flex;
      gap: 10px;
      margin-top: 16px;
      flex-wrap: wrap;
    }

    .btn-approve {
      background: var(--green);
      color: #fff;
      padding: 10px 24px;
      border-radius: 980px;
      font-size: 14px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: opacity 0.15s;
    }

    .btn-approve:disabled {
      opacity: 0.35;
      cursor: not-allowed;
    }

    .btn-approve:not(:disabled):hover { opacity: 0.85; }

    .btn-revise {
      background: var(--card);
      color: #c0392b;
      padding: 10px 24px;
      border-radius: 980px;
      font-size: 14px;
      font-weight: 600;
      border: 1px solid #ffbcba;
      cursor: pointer;
      transition: background 0.15s;
    }

    .btn-revise:hover { background: #fff2f1; }

    /* ─── PROJECT DETAIL MODAL ───────────────────────────────────── */
    .modal-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.45);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 500;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal-backdrop.open { display: flex; }

    .modal {
      background: var(--card);
      border-radius: 16px;
      max-width: 680px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 20px 60px rgba(0,0,0,0.25);
      padding: 36px;
      position: relative;
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--bg);
      border: 1px solid var(--border);
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      transition: background 0.15s;
    }

    .modal-close:hover { background: var(--border); color: var(--text); }

    .modal-track-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 12px;
    }

    .modal-title {
      font-size: 28px;
      margin-bottom: 6px;
    }

    .modal-score-bar {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 12px;
      background: var(--green-light);
      border-radius: 980px;
      margin-bottom: 24px;
    }

    .modal-score-bar span {
      font-family: 'Rajdhani', sans-serif;
      font-weight: 700;
      font-size: 15px;
      color: var(--green);
    }

    .modal-section {
      margin-bottom: 20px;
    }

    .modal-section-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .modal-section-text {
      font-size: 15px;
      color: var(--text);
      line-height: 1.55;
    }

    .modal-criteria-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 10px;
      margin-top: 8px;
    }

    .modal-criterion-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 12px 14px;
    }

    .modal-criterion-card .crit-label {
      font-size: 11px;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .modal-criterion-card .crit-score {
      font-family: 'Rajdhani', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color: var(--text);
    }

    .modal-video-embed {
      width: 100%;
      aspect-ratio: 16/9;
      border-radius: 10px;
      border: none;
      margin-top: 8px;
    }

    .modal-demo-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--green);
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      padding: 8px 14px;
      border: 1px solid var(--green);
      border-radius: 8px;
      margin-top: 8px;
      transition: background 0.15s;
    }

    .modal-demo-link:hover { background: var(--green-light); }

    .modal-footer {
      border-top: 1px solid var(--border);
      padding-top: 20px;
      margin-top: 24px;
    }

    /* ─── PLAYER CARD SYSTEM ────────────────────────────────────── */
    :root {
      --role-build: #007AFF;
      --role-design: #FF2D55;
      --role-research: #5856D6;
      --role-grow: #FF9500;
      --role-advise: #34C759;
    }

    /* Player card creator modal */
    .pc-modal-backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.55);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 600;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }
    .pc-modal-backdrop.open { display: flex; }

    .pc-modal {
      background: var(--card);
      border-radius: 20px;
      max-width: 560px;
      width: 100%;
      max-height: 92vh;
      overflow-y: auto;
      box-shadow: 0 24px 80px rgba(0,0,0,0.3);
      padding: 36px;
      position: relative;
    }

    .pc-modal h2 { font-size: 24px; margin-bottom: 6px; }
    .pc-modal > p { color: var(--muted); font-size: 14px; margin-bottom: 28px; }

    .pc-close {
      position: absolute; top: 16px; right: 16px;
      width: 32px; height: 32px; border-radius: 50%;
      background: var(--bg); border: 1px solid var(--border);
      font-size: 16px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: var(--muted); transition: background 0.15s;
    }
    .pc-close:hover { background: var(--border); color: var(--text); }

    /* Role selector for player card */
    .pc-role-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 8px;
      margin-bottom: 24px;
    }

    .pc-role-btn {
      padding: 8px 4px;
      border-radius: 10px;
      border: 2px solid var(--border);
      background: var(--card);
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      text-align: center;
      transition: all 0.15s;
      color: var(--muted);
    }

    .pc-role-btn.selected-build { border-color: var(--role-build); background: rgba(0,122,255,0.08); color: var(--role-build); }
    .pc-role-btn.selected-design { border-color: var(--role-design); background: rgba(255,45,85,0.08); color: var(--role-design); }
    .pc-role-btn.selected-research { border-color: var(--role-research); background: rgba(88,86,214,0.08); color: var(--role-research); }
    .pc-role-btn.selected-grow { border-color: var(--role-grow); background: rgba(255,149,0,0.08); color: var(--role-grow); }
    .pc-role-btn.selected-advise { border-color: var(--role-advise); background: rgba(52,199,89,0.08); color: var(--role-advise); }

    /* Ability sliders */
    .ability-row {
      display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
    }
    .ability-label { font-size: 12px; font-weight: 600; color: var(--text); width: 140px; flex-shrink: 0; }
    .ability-slider {
      flex: 1; -webkit-appearance: none; appearance: none;
      height: 4px; border-radius: 2px; background: var(--border);
      outline: none; cursor: pointer;
    }
    .ability-slider::-webkit-slider-thumb {
      -webkit-appearance: none; appearance: none;
      width: 16px; height: 16px; border-radius: 50%;
      background: var(--green); cursor: pointer;
      box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    }
    .ability-val { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 14px; width: 20px; text-align: right; color: var(--text); flex-shrink: 0; }

    /* Radar preview */
    #pc-radar-preview { display: block; margin: 20px auto 24px; }

    /* Trading cards display */
    .player-cards-section {
      margin-top: 28px;
      border-top: 1px solid var(--border);
      padding-top: 24px;
    }

    .player-cards-section h3 {
      font-size: 16px; margin-bottom: 16px;
      display: flex; align-items: center; gap: 8px;
    }

    .player-cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 16px;
    }

    .trading-card {
      border-radius: 16px;
      padding: 18px 16px 16px;
      background: var(--card);
      box-shadow: 0 4px 20px rgba(0,0,0,0.1), 0 1px 4px rgba(0,0,0,0.06);
      position: relative;
      overflow: hidden;
      border: 2px solid transparent;
      transition: transform 0.15s, box-shadow 0.15s;
    }

    .trading-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    }

    .trading-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
    }

    .trading-card.role-Build { border-color: rgba(0,122,255,0.2); }
    .trading-card.role-Build::before { background: var(--role-build); }
    .trading-card.role-Design { border-color: rgba(255,45,85,0.2); }
    .trading-card.role-Design::before { background: var(--role-design); }
    .trading-card.role-Research { border-color: rgba(88,86,214,0.2); }
    .trading-card.role-Research::before { background: var(--role-research); }
    .trading-card.role-Grow { border-color: rgba(255,149,0,0.2); }
    .trading-card.role-Grow::before { background: var(--role-grow); }
    .trading-card.role-Advise { border-color: rgba(52,199,89,0.2); }
    .trading-card.role-Advise::before { background: var(--role-advise); }
    .tc-roles { display: flex; gap: 4px; flex-wrap: wrap; }

    .tc-role-badge {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      padding: 2px 7px;
      border-radius: 4px;
      margin-bottom: 10px;
    }

    .tc-role-badge.role-Build { background: rgba(0,122,255,0.1); color: var(--role-build); }
    .tc-role-badge.role-Design { background: rgba(255,45,85,0.1); color: var(--role-design); }
    .tc-role-badge.role-Research { background: rgba(88,86,214,0.1); color: var(--role-research); }
    .tc-role-badge.role-Grow { background: rgba(255,149,0,0.1); color: var(--role-grow); }
    .tc-role-badge.role-Advise { background: rgba(52,199,89,0.1); color: var(--role-advise); }

    .tc-name { font-family: 'Rajdhani', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 2px; line-height: 1.2; }
    .tc-degree { font-size: 11px; color: var(--muted); margin-bottom: 10px; }
    .tc-superpower {
      font-size: 11px; color: var(--text);
      font-style: italic;
      border-left: 2px solid var(--border);
      padding-left: 8px;
      margin-bottom: 12px;
      line-height: 1.4;
    }

    /* Revision flow */
    .revision-box {
      background: #fff8f0;
      border: 1px solid #ffd5a0;
      border-radius: 10px;
      padding: 14px 16px;
      margin-top: 12px;
      font-size: 13px;
    }
    .revision-box .rev-label {
      font-size: 11px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.06em; color: #b07700; margin-bottom: 6px;
    }
    .revision-box .rev-feedback { color: var(--text); line-height: 1.5; margin-bottom: 12px; }
    .btn-resubmit {
      background: #FF9500; color: #fff;
      padding: 8px 20px; border-radius: 980px;
      font-size: 13px; font-weight: 600;
      border: none; cursor: pointer; transition: opacity 0.15s;
    }
    .btn-resubmit:hover { opacity: 0.85; }

    /* ─── PAGE HEADINGS ──────────────────────────────────────────── */
    .page-head { margin-bottom: 32px; }
    .page-head h1 { font-size: 32px; margin-bottom: 4px; }
    .page-head p { color: var(--muted); }

    /* ─── ADMIN ITEM HEADER ──────────────────────────────────────── */
    .admin-item-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
    }
    .admin-item-title { font-size: 16px; }
    .admin-item-meta { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
    .admin-item-field { font-size: 14px; margin-bottom: 6px; }
    .admin-item-field-gap { font-size: 14px; margin-bottom: 12px; }
    .admin-item-field-sm { font-size: 14px; margin-bottom: 4px; }

    /* ─── MODAL FOOTER ROW ───────────────────────────────────────── */
    .modal-footer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    /* ─── TRADING CARD EMAIL ─────────────────────────────────────── */
    .tc-email { font-size: 10px; color: var(--muted); text-align: center; margin-top: 4px; }

    /* ─── MISC ───────────────────────────────────────────────────── */
    .feedback-label { font-size: 13px; font-weight: 600; display: block; margin-bottom: 6px; }
    .admin-page-title { font-size: 28px; }
    .player-cards-count {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 980px;
      font-size: 12px;
      padding: 2px 10px;
      font-family: system-ui;
      font-weight: 600;
    }
    .score-breakdown-inline { font-size: 13px; font-weight: 400; color: var(--muted); }
    .mini-radar-svg { display: block; margin: 0 auto 4px; }
    .approval-error-msg { display: none; margin-top: 10px; }

    /* ─── REACT BITS: SHINY TEXT (eyebrow sweep) ────────────────── */
    .shiny-text {
      background-image: linear-gradient(
        120deg,
        var(--green) 0%, var(--green) 35%,
        #B8E63A 50%,
        var(--green) 65%, var(--green) 100%
      );
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: shiny-sweep 3s linear infinite;
    }
    @keyframes shiny-sweep {
      0% { background-position: 150% center; }
      100% { background-position: -50% center; }
    }

    /* ─── REACT BITS: DECRYPTED TEXT ─────────────────────────────── */
    .decrypt-target { cursor: pointer; }
    .decrypt-target .char { display: inline-block; }
    .decrypt-target .char.scrambled {
      color: var(--border);
      font-family: 'Courier New', monospace;
    }

    /* ─── REACT BITS: STAR BORDER (orbiting gradient buttons) ──── */
    .star-border-container {
      position: relative;
      border-radius: 980px;
      padding: 2px;
      overflow: hidden;
      display: inline-block;
    }
    .star-border-container .border-gradient-bottom,
    .star-border-container .border-gradient-top {
      position: absolute;
      width: 200%; height: 200%;
      border-radius: 50%;
      animation: star-orbit 4s linear infinite;
      pointer-events: none;
      opacity: 0.85;
    }
    .star-border-container .border-gradient-bottom {
      bottom: -100%; left: -50%;
      background: radial-gradient(circle, var(--green), transparent 10%);
    }
    .star-border-container .border-gradient-top {
      top: -100%; left: -50%;
      background: radial-gradient(circle, #5EC847, transparent 10%);
      animation-delay: -2s;
    }
    @keyframes star-orbit {
      0% { transform: rotate(0deg) translateX(0); }
      100% { transform: rotate(360deg) translateX(0); }
    }
    .star-border-container .star-inner {
      position: relative;
      z-index: 1;
      display: block;
      border-radius: 980px;
      padding: 12px 28px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      text-decoration: none;
    }
    .star-inner-primary { background: var(--green); color: #fff; }
    .star-inner-secondary { background: var(--card); color: var(--text); }
    .star-border-container:hover .star-inner { opacity: 0.92; }

    /* ─── REACT BITS: SPOTLIGHT CARD (cursor glow) ────────────── */
    .spotlight-card {
      position: relative;
      overflow: hidden;
      --mouse-x: 50%;
      --mouse-y: 50%;
      --spotlight-color: rgba(45, 183, 87, 0.25);
    }
    .spotlight-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), var(--spotlight-color), transparent 80%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
      z-index: 1;
    }
    .spotlight-card:hover::after { opacity: 1; }

    /* ─── REACT BITS: CLICK SPARK ────────────────────────────────── */
    #click-spark-canvas {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      z-index: 9999;
    }

    /* ─── REACT BITS: COUNT UP ───────────────────────────────────── */
    .stat-num {
      transition: none;
    }

    /* ─── REACT BITS: FILTER SLIDING PILL ────────────────────────── */
    .filter-bar {
      position: relative;
    }
    .filter-pill {
      position: absolute;
      height: 100%;
      border-radius: 980px;
      background: var(--text);
      transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 0;
    }
    .filter-btn {
      position: relative;
      z-index: 1;
      transition: color 0.2s;
    }
    .filter-btn.active {
      background: #1d1d1f;
      color: #fff;
      border-color: #1d1d1f;
    }
    .filter-bar.pill-active .filter-btn.active {
      background: transparent;
      border-color: transparent;
    }

    /* ─── CONFETTI ────────────────────────────────────────────────── */
    #confetti-canvas {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      z-index: 9998;
    }

    /* ─── EMPTY STATE ANIMATIONS ─────────────────────────────────── */
    .empty-state .empty-icon {
      animation: float-bounce 2.5s ease-in-out infinite;
    }
    @keyframes float-bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }
    .empty-state h3, .empty-state p {
      animation: fade-slide-in 0.6s ease forwards;
      opacity: 0;
    }
    .empty-state h3 { animation-delay: 0.2s; }
    .empty-state p { animation-delay: 0.4s; }
    @keyframes fade-slide-in {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ─── PAGE TRANSITIONS ───────────────────────────────────────── */
    .page {
      opacity: 0;
      transform: translateX(12px);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .page.active {
      opacity: 1;
      transform: translateX(0);
    }

    /* ─── GLITCH TEXT ────────────────────────────────────────────── */
    .glitch-text {
      position: relative;
      display: inline-block;
    }
    .glitch-text::before,
    .glitch-text::after {
      content: attr(data-text);
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
    }
    .glitch-text::before {
      color: var(--green);
      animation: glitch-1 2.5s infinite linear;
      clip-path: inset(0 0 65% 0);
    }
    .glitch-text::after {
      color: #5EC847;
      animation: glitch-2 2.5s infinite linear;
      clip-path: inset(65% 0 0 0);
    }
    @keyframes glitch-1 {
      0%, 100% { transform: translate(0); }
      20% { transform: translate(-3px, 2px); }
      40% { transform: translate(3px, -1px); }
      60% { transform: translate(-2px, 1px); }
      80% { transform: translate(2px, -2px); }
    }
    @keyframes glitch-2 {
      0%, 100% { transform: translate(0); }
      20% { transform: translate(3px, -1px); }
      40% { transform: translate(-2px, 2px); }
      60% { transform: translate(3px, 1px); }
      80% { transform: translate(-3px, -1px); }
    }

    /* ─── FLOAT LABELS ───────────────────────────────────────────── */
    .float-group {
      position: relative;
    }
    .float-group .float-label {
      position: absolute;
      left: 14px;
      top: 11px;
      font-size: 15px;
      color: var(--muted);
      pointer-events: none;
      transition: all 0.2s ease;
      background: var(--card);
      padding: 0 4px;
      z-index: 1;
    }
    .float-group input:focus + .float-label,
    .float-group input:not(:placeholder-shown) + .float-label,
    .float-group textarea:focus + .float-label,
    .float-group textarea:not(:placeholder-shown) + .float-label {
      top: -8px;
      font-size: 11px;
      color: var(--green);
      font-weight: 600;
    }
    .float-group select:focus + .float-label,
    .float-group select.has-value + .float-label {
      top: -8px;
      font-size: 11px;
      color: var(--green);
      font-weight: 600;
    }

    /* ─── PLAYER CARD FLIP REVEAL ────────────────────────────────── */
    .card-flip-container {
      perspective: 800px;
      width: 200px;
      height: 280px;
      margin: 0 auto;
    }
    .card-flip-inner {
      position: relative;
      width: 100%; height: 100%;
      transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      transform-style: preserve-3d;
    }
    .card-flip-inner.flipped {
      transform: rotateY(180deg);
    }
    .card-flip-front, .card-flip-back {
      position: absolute;
      width: 100%; height: 100%;
      backface-visibility: hidden;
      border-radius: 16px;
      overflow: hidden;
    }
    .card-flip-front {
      background: linear-gradient(135deg, var(--green), #5EC847, #B8E63A);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-family: 'Rajdhani', sans-serif;
      font-size: 48px;
      font-weight: 700;
    }
    .card-flip-back {
      transform: rotateY(180deg);
      background: var(--card);
      border: 2px solid var(--green);
    }

    /* ─── REACT BITS: SCROLL REVEAL ──────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─── REACT BITS: ENHANCED TRADING CARDS ─────────────────────── */
    .trading-card {
      --mouse-x: 50%;
      --mouse-y: 50%;
    }
    .trading-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(45,183,87,0.12), transparent 60%);
      opacity: 0;
      transition: opacity 0.4s;
      pointer-events: none;
      border-radius: 16px;
      z-index: 0;
    }
    .trading-card:hover::after { opacity: 1; }

    /* ─── RESPONSIVE ─────────────────────────────────────────────── */
    @media (max-width: 640px) {
      main { padding: 24px 16px 64px; }
      .form-card { padding: 24px 20px; }
      .hero { padding: 48px 16px 40px; }
      .nav-inner { overflow-x: auto; gap: 0; }
      .nav-tab { padding: 8px 10px; font-size: 13px; }
    }

/* ─── AUTH ─────────────────────────────────────────────────────── */
.auth-container {
  max-width: 400px;
  margin: 60px auto;
  padding: 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.auth-container h2 {
  text-align: center;
  margin-bottom: 24px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--muted);
  font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 980px;
  background: var(--card);
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.15s;
}

.btn-google:hover { background: var(--bg); }

.auth-form { display: flex; flex-direction: column; gap: 12px; }

.auth-toggle {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

.auth-toggle a {
  color: var(--green);
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
}

.nav-user {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-left: auto;
  white-space: nowrap;
}

.nav-user-name { font-weight: 500; color: var(--text); }

.btn-logout {
  background: none;
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 980px;
  font-size: 12px;
  cursor: pointer;
  color: var(--muted);
}

.btn-logout:hover { background: var(--bg); }

.login-prompt {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
}

.login-prompt a {
  color: var(--green);
  cursor: pointer;
  font-weight: 500;
}

/* ─── DARK FOOTER ────────────────────────────────────────────────────── */
.site-footer {
  background: #1d1d1f;
  color: #f5f5f7;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.footer-logo .chevron {
  color: #2DB757;
  font-style: normal;
}

.footer-tagline {
  font-size: 13px;
  color: #86868b;
  line-height: 1.6;
  margin: 0;
}

.footer-links h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #86868b;
  margin: 0 0 16px;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: #d2d2d7;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-coming-soon {
  font-size: 14px;
  color: #555;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding: 20px 24px;
  font-size: 12px;
  color: #555;
}

@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px 32px;
  }
}

/* ─── COMPREHENSIVE RESPONSIVE (fix-06) ──────────────────────────────── */

/* Tablet (≤768px) */
@media (max-width: 768px) {
  /* Stats grid: 2 columns on tablet */
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Board grid: single column */
  .projects-grid {
    grid-template-columns: 1fr;
  }

  /* Modal: reduce padding */
  .modal {
    padding: 24px 20px;
  }

  .pc-modal {
    padding: 24px 20px;
  }

  /* Section spacing */
  .hero {
    padding: 56px 20px 48px;
  }

  /* Steps grid: single column on tablet */
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
  main {
    padding: 16px 12px 60px;
  }

  /* Hero: tighter */
  .hero {
    padding: 40px 16px 32px;
  }

  .hero p {
    font-size: 15px;
  }

  /* Hero CTAs: stack */
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .star-border-container {
    width: 100%;
    max-width: 260px;
  }

  .star-inner {
    width: 100%;
    justify-content: center;
  }

  /* Stats: single column on mobile */
  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 40px;
  }

  .stat-card {
    padding: 16px 12px;
  }

  .stat-card .stat-num {
    font-size: 36px;
  }

  /* Section titles */
  .section-title {
    font-size: 22px;
  }

  /* Steps: full width */
  .steps-grid {
    grid-template-columns: 1fr;
  }

  /* Board grid */
  .projects-grid {
    grid-template-columns: 1fr;
  }

  /* Modal: full-width, less padding */
  .modal-backdrop {
    padding: 0;
    align-items: flex-end;
  }

  .modal {
    border-radius: 16px 16px 0 0;
    max-height: 92vh;
    padding: 20px 16px;
    width: 100%;
    max-width: 100%;
  }

  .pc-modal {
    border-radius: 16px 16px 0 0;
    max-height: 92vh;
    padding: 20px 16px;
  }

  /* Dashboard: always single column */
  .dash-layout {
    grid-template-columns: 1fr;
  }

  /* Form card */
  .form-card {
    padding: 20px 16px;
    border-radius: 12px;
  }

  /* Nav user: hide name, show logout only */
  .nav-user-name {
    display: none;
  }

  /* Featured card: stack */
  .featured-card-body {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 16px;
  }

  .featured-right {
    align-items: flex-start;
  }

  /* Trading cards: single column */
  .trading-cards-row {
    grid-template-columns: 1fr;
  }

  /* Admin scoring: make sliders full width */
  .scoring-row {
    flex-wrap: wrap;
  }

  .score-slider {
    width: 100%;
  }
}

/* ─── EDITORIAL POLISH (home-06) ──────────────────────────────────────── */

/* ── How It Works section ── */
.how-it-works-section {
  margin-top: 80px;
}

/* ── Funding section ── */
.funding-section {
  margin-top: 80px;
  text-align: center;
  padding: 60px 24px 0;
}

/* Generous section spacing on home page */
#page-home .stats-row {
  margin-top: 72px;
}

/* Section dividers — subtle */
.home-section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 72px 0 0;
  opacity: 0.6;
}

/* Section title hierarchy */
.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.5;
}

/* Step cards */
.step-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text);
}

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

/* Featured project: breathing room */
.featured-project {
  margin-top: 48px;
}

/* Body copy readability */
#page-home p {
  line-height: 1.65;
}

@media (max-width: 480px) {
  .how-it-works-section {
    margin-top: 56px;
  }

  .funding-section {
    margin-top: 56px;
    padding: 40px 16px 0;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLESS.NETWORK PREMIUM AESTHETIC — Override Layer
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Design tokens update ── */
:root {
  --bg: #fafafa;
  --card: #ffffff;
  --border: #e8e8e8;
  --text: #111111;
  --muted: #888888;
  --green: #2DB757;
  --green-light: #edf7f1;
  --radius: 18px;
  --shadow: 0 1px 2px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.04);
  --serif: 'DM Serif Display', serif;
}

/* ── Serif typography for hero + section titles ── */
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  letter-spacing: -0.015em;
}

.featured-name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
}

.stat-card .stat-num {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* ── Hero section: more breathing room, soft gradient ── */
.hero {
  padding: 120px 24px 80px;
  background: linear-gradient(160deg, #f5f9ff 0%, #fafafa 55%, #f5fdf7 100%);
  border-radius: 0 0 32px 32px;
  margin: 0 0 0;
  text-align: center;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.65;
}

/* Hero CTAs: dark pill primary, outlined secondary */
.star-inner-primary {
  background: #111111;
  color: #fff;
}

.star-inner-secondary {
  background: #ffffff;
  color: #111111;
  border: 1px solid var(--border);
}

/* ── Nav redesign: logo left, centered pill, right CTA ── */
nav {
  background: rgba(250,250,250,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1140px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 0;
  flex-shrink: 0;
}

/* Center pill wrapper */
.nav-pill-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-tabs {
  border: 1px solid #e0e0e0;
  border-radius: 980px;
  padding: 4px;
  background: rgba(255,255,255,0.8);
  display: inline-flex;
  gap: 2px;
  flex: none;
  overflow: visible;
}

.nav-tab {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 7px 16px;
  border-radius: 980px;
  border: none;
  background: none;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav-tab:hover { color: var(--text); background: rgba(0,0,0,0.04); }
.nav-tab.active { color: #fff; background: #111111; font-weight: 700; }

/* Nav user: dark pill button style */
.nav-user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-left: 0;
  flex-shrink: 0;
}

.nav-user-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.btn-logout {
  background: #111111;
  border: none;
  padding: 7px 16px;
  border-radius: 980px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  transition: opacity 0.15s;
}

.btn-logout:hover { opacity: 0.8; background: #111; }

/* Nav login link styled as dark pill */
.nav-user .nav-tab {
  background: #111111;
  color: #fff;
  padding: 7px 18px;
}

.nav-user .nav-tab:hover { background: #333; color: #fff; }

/* ── Stats row: more spacing, no heavy shadow ── */
.stats-row {
  gap: 20px;
  margin-top: 80px;
}

.stat-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: none;
  padding: 32px 24px;
}

.stat-card .stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 10px;
}

.stat-card .stat-icon {
  color: var(--green);
}

/* ── How It Works: vertical timeline ── */
.how-it-works-section {
  margin-top: 100px;
  padding: 100px 0 0;
}

.steps-timeline {
  position: relative;
  max-width: 640px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-track {
  position: absolute;
  left: 24px;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: linear-gradient(to bottom, var(--green), #e0e0e0);
}

.timeline-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  position: relative;
}

.timeline-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(45,183,87,0.12);
}

.timeline-content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  flex: 1;
  box-shadow: none;
  transition: border-color 0.2s;
}

.timeline-content:hover {
  border-color: var(--green);
}

.timeline-content .step-icon {
  color: var(--green);
  margin-bottom: 12px;
}

.timeline-content h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Featured project: left accent line ── */
.featured-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: none;
  border-left: 3px solid var(--green);
  overflow: hidden;
}

.featured-card-accent {
  display: none;
}

.featured-card-body {
  padding: 40px;
}

/* ── Funding section ── */
.funding-section {
  margin-top: 100px;
  padding: 80px 24px 0;
}

.funding-section h2 {
  font-family: var(--serif);
  font-weight: 400;
}

/* ── Footer: dark rounded card style ── */
.site-footer {
  background: transparent;
  margin-top: 100px;
  padding: 0 24px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 48px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  background: #111111;
  border-radius: 24px;
  color: #f5f5f7;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0 0;
  border-top: none;
  text-align: center;
  font-size: 12px;
  color: #888;
}

/* ── Project cards: more whitespace, subtle borders ── */
.project-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: none;
  transition: border-color 0.2s, transform 0.15s;
}

.project-card:hover {
  border-color: #b0b0b0;
  box-shadow: none;
  transform: translateY(-1px);
}

.card-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ── Board search: cleaner ── */
.board-search-input {
  border: 1px solid var(--border);
  border-radius: 980px;
  background: #fff;
  transition: border-color 0.15s;
}

.board-search-input:focus {
  border-color: #aaa;
  box-shadow: none;
}

/* ── Filter pills: refined ── */
.filter-btn {
  border: 1px solid var(--border);
  border-radius: 980px;
  font-size: 13px;
  padding: 6px 14px;
  background: #fff;
  font-weight: 500;
}

.filter-btn.active {
  background: #111111;
  color: #fff;
  border-color: #111111;
}

/* ── General card radius ── */
.form-card,
.lookup-card,
.step-card,
.admin-item,
.submission-item,
.dash-project-card {
  border-radius: var(--radius);
  box-shadow: none;
  border: 1px solid var(--border);
}

/* ── Btn primary: dark pill ── */
.btn-primary {
  background: #111111;
  color: #fff;
  border-radius: 980px;
}

.btn-primary:hover { opacity: 0.82; background: #111; }

/* ── Btn secondary: outlined pill ── */
.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 980px;
}

/* ── Main container ── */
main {
  max-width: 1100px;
  padding: 0 24px 120px;
}

/* ── Page head section ── */
.page-head {
  margin-bottom: 40px;
  padding-top: 48px;
}

.page-head h1 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* ── Announcement banner ── */
.announcement-banner {
  margin-bottom: 0;
}

/* ── Responsive adjustments ── */
@media (max-width: 768px) {
  .nav-pill-wrap {
    flex: 1;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .nav-pill-wrap::-webkit-scrollbar { display: none; }

  .nav-tabs {
    border: none;
    background: none;
    padding: 0;
    gap: 0;
  }

  .nav-tab {
    font-size: 13px;
    padding: 7px 10px;
    border-radius: 8px;
  }

  .nav-tab.active {
    background: rgba(0,0,0,0.08);
    color: var(--text);
  }

  .nav-inner {
    justify-content: space-between;
  }

  .hero {
    padding: 80px 20px 60px;
    border-radius: 0 0 20px 20px;
  }

  .timeline-track { display: none; }
  .timeline-step { flex-direction: column; gap: 16px; }
  .timeline-circle { width: 40px; height: 40px; font-size: 13px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 28px 28px;
    border-radius: 16px;
  }

  .site-footer {
    padding: 0 16px 32px;
  }

  .how-it-works-section {
    padding-top: 64px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 16px 48px;
  }

  .stats-row {
    margin-top: 56px;
  }

  .how-it-works-section {
    margin-top: 64px;
    padding-top: 40px;
  }
}

/* ─── INTRO SPLASH ───────────────────────────────────────────────────────── */
.intro-splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
}

.splash-left,
.splash-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: #ffffff;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.splash-left  { left: 0; }
.splash-right { right: 0; }

.intro-splash.split .splash-left  { transform: translateX(-100%); }
.intro-splash.split .splash-right { transform: translateX(100%); }

.splash-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.intro-splash.split .splash-content {
  opacity: 0;
}

.splash-chevron {
  font-size: 80px;
  line-height: 1;
  color: #2DB757;
  animation: splashChevron 1.2s ease forwards;
  transform-origin: center;
}

@keyframes splashChevron {
  0%   { opacity: 0; transform: scale(0.4); filter: drop-shadow(0 0 0px #2DB757); }
  50%  { opacity: 1; transform: scale(1.15); filter: drop-shadow(0 0 20px rgba(45,183,87,0.6)); }
  75%  { transform: scale(0.95); filter: drop-shadow(0 0 8px rgba(45,183,87,0.4)); }
  100% { opacity: 1; transform: scale(1); filter: drop-shadow(0 0 12px rgba(45,183,87,0.35)); }
}

.splash-text {
  display: flex;
  gap: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #1d1d1f;
}

.splash-text span {
  opacity: 0;
  animation: splashLetter 0.3s ease forwards;
}
.splash-text span:nth-child(1) { animation-delay: 0.5s; }
.splash-text span:nth-child(2) { animation-delay: 0.65s; }
.splash-text span:nth-child(3) { animation-delay: 0.8s; }
.splash-text span:nth-child(4) { animation-delay: 0.95s; }

@keyframes splashLetter {
  0%   { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ─── ANIMATED HERO GRADIENT MESH ───────────────────────────────────────── */
.hero {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(45,183,87,0.09) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(94,200,71,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(45,140,200,0.05) 0%, transparent 50%),
    #fafafa;
  animation: heroMesh 12s ease-in-out infinite;
}

@keyframes heroMesh {
  0%   {
    background:
      radial-gradient(ellipse at 20% 50%, rgba(45,183,87,0.09) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 20%, rgba(94,200,71,0.06) 0%, transparent 50%),
      radial-gradient(ellipse at 50% 80%, rgba(45,140,200,0.05) 0%, transparent 50%),
      #fafafa;
  }
  33%  {
    background:
      radial-gradient(ellipse at 65% 30%, rgba(45,183,87,0.08) 0%, transparent 50%),
      radial-gradient(ellipse at 20% 70%, rgba(94,200,71,0.07) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 60%, rgba(45,140,200,0.06) 0%, transparent 50%),
      #fafafa;
  }
  66%  {
    background:
      radial-gradient(ellipse at 50% 20%, rgba(45,183,87,0.07) 0%, transparent 50%),
      radial-gradient(ellipse at 85% 65%, rgba(94,200,71,0.05) 0%, transparent 50%),
      radial-gradient(ellipse at 15% 40%, rgba(45,140,200,0.07) 0%, transparent 50%),
      #fafafa;
  }
  100% {
    background:
      radial-gradient(ellipse at 20% 50%, rgba(45,183,87,0.09) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 20%, rgba(94,200,71,0.06) 0%, transparent 50%),
      radial-gradient(ellipse at 50% 80%, rgba(45,140,200,0.05) 0%, transparent 50%),
      #fafafa;
  }
}

/* ─── HERO TEXT REVEAL ───────────────────────────────────────────────────── */
.hero-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-reveal.animate-in {
  opacity: 1;
  transform: translateY(0);
}
