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

    :root {
      --charcoal: #111111;
      --charcoal-nav: #111111;
      --orange-light: #D4600A;
      --orange:        #BF5700;
      --orange-hover:  #A84C00;
      --orange-glow:   rgba(191, 87, 0, 0.14);
      --orange-faint:  rgba(191, 87, 0, 0.07);
      --orange-border: rgba(191, 87, 0, 0.22);
      --bg:            #FAFAF8;
      --surface:       #FFFFFF;
      --surface-2:     #F4F1EC;
      --surface-3:     #EDE9E3;
      --border:        rgba(0,0,0,0.08);
      --border-light:  rgba(0,0,0,0.13);
      --text:          #1A1A1A;
      --text-muted:    #595550;
      --text-dim:      #9A9590;
      --white:         #FFFFFF;
      --limestone:     #D6D2C4;
      --green:         #1A9C4A;
      --green-faint:   rgba(26, 156, 74, 0.08);
      --green-border:  rgba(26, 156, 74, 0.22);
      --amber:         #B07A0A;
      --amber-faint:   rgba(176, 122, 10, 0.08);
      --amber-border:  rgba(176, 122, 10, 0.22);
      --dell-blue:     #007DB8;
      --dell-faint:    rgba(0, 125, 184, 0.08);
      --dell-border:   rgba(0, 125, 184, 0.22);
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* ── HERO STAYS DARK ────────────────────────────── */
    .page-hero {
      background: #111111;
      padding: 80px 48px;
      position: relative;
      overflow: hidden;
    }
    .page-hero .page-hero-desc { color: rgba(255,255,255,0.55); }
    .page-hero .qj-label { color: rgba(255,255,255,0.35); }
    .page-hero .qj-card {
      background: rgba(255,255,255,0.05);
      border-color: rgba(255,255,255,0.1);
    }
    .page-hero .qj-card:hover {
      background: rgba(255,255,255,0.09);
      border-color: var(--orange-border);
    }
    .page-hero .qj-icon { background: rgba(255,255,255,0.08); }
    .page-hero .qj-name { color: #F2EDE8; }
    .page-hero .btn-secondary {
      color: rgba(255,255,255,0.8);
      border-color: rgba(255,255,255,0.2);
    }
    .page-hero .btn-secondary:hover {
      background: rgba(255,255,255,0.06);
      border-color: rgba(255,255,255,0.32);
    }
    .page-hero-bg {
      background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(191,87,0,0.10), transparent);
    }
    .page-hero-grid {
      background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
      background-size: 48px 48px;
    }

    /* ── BREADCRUMB BAND ────────────────────────────── */
/* ── NAV ────────────────────────────────────────── */

/* ── SYSTEM BAR ── */
.page-hero-bg {
      position: absolute; inset: 0; pointer-events: none;
      background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(191,87,0,0.08), transparent);
    }
    .page-hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 70% 100% at 100% 50%, black 20%, transparent);
    }
    .page-hero-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr auto;
      gap: 60px; align-items: center;
      position: relative; z-index: 1;
    }
    .page-hero-eyebrow {
      font-size: 11px; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 14px;
      display: flex; align-items: center; gap: 8px;
    }
    .page-hero-eyebrow::before {
      content: ''; width: 24px; height: 2px;
      background: var(--orange);
    }
    .page-hero-title {
      font-family: 'Sora', sans-serif;
      font-size: clamp(36px, 4vw, 56px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.08;
      letter-spacing: -0.025em;
      margin-bottom: 18px;
    }
    .page-hero-title .accent { color: var(--orange); }
    .page-hero-desc {
      font-size: 16px; line-height: 1.75;
      color: var(--text-muted);
      max-width: 580px;
      margin-bottom: 32px;
    }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 7px;
      background: #bf5700; color: var(--white);
      font-size: 13.5px; font-weight: 600;
      padding: 11px 22px; border-radius: 7px;
      text-decoration: none; transition: all 0.2s;
    }
    .btn-primary:hover {
      background: var(--orange-hover);
      transform: translateY(-1px);
      box-shadow: 0 6px 24px rgba(191,87,0,0.3);
    }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 7px;
      background: transparent; color: var(--text);
      font-size: 13.5px; font-weight: 500;
      padding: 11px 22px; border-radius: 7px;
      text-decoration: none;
      border: 1px solid var(--border-light);
      transition: all 0.2s;
    }
    .btn-secondary:hover {
      border-color: rgba(0,0,0,0.22);
      background: rgba(0,0,0,0.04);
    }

    /* Hero right — quick-jump cards */
    .hero-quickjump {
      display: flex; flex-direction: column; gap: 10px;
      min-width: 240px;
    }
    .qj-label {
      font-size: 10px; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 4px;
    }
    .qj-card {
      display: flex; align-items: center; gap: 12px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 9px;
      padding: 12px 16px;
      text-decoration: none;
      transition: all 0.2s;
    }
    .qj-card:hover {
      border-color: var(--orange-border);
      background: var(--surface-2);
    }
    .qj-icon {
      width: 32px; height: 32px;
      border-radius: 7px;
      background: var(--surface-2);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; flex-shrink: 0;
    }
    .qj-text {}
    .qj-name {
      font-size: 13px; font-weight: 600;
      color: var(--text);
      line-height: 1.2;
    }
    .qj-badge {
      font-size: 10px; font-weight: 600;
      padding: 2px 6px; border-radius: 4px;
      display: inline-block; margin-top: 3px;
    }
    .badge-free {
      background: var(--green-faint);
      border: 1px solid var(--green-border);
      color: var(--green);
    }
    .badge-paid {
      background: var(--amber-faint);
      border: 1px solid var(--amber-border);
      color: var(--amber);
    }

    /* ── SECTION UTILITY ────────────────────────────── */
    .section { padding: 80px 48px; }
    .section-inner { max-width: 1200px; margin: 0 auto; }
    .section-alt { background: var(--surface); }
    .section-label {
      font-size: 11px; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--orange); margin-bottom: 10px;
    }
    .section-title {
      font-family: 'Sora', sans-serif;
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 700; color: var(--text);
      line-height: 1.15; letter-spacing: -0.02em;
      margin-bottom: 14px;
    }
    .section-desc {
      font-size: 15px; line-height: 1.75;
      color: var(--text-muted); max-width: 560px;
    }
    .section-header {
      display: flex; justify-content: space-between;
      align-items: flex-end; margin-bottom: 44px;
      gap: 40px;
    }

    /* ── TOOLS TABS ─────────────────────────────────── */
    .tools-tabs {
      display: flex; gap: 4px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 5px;
      margin-bottom: 36px;
      width: fit-content;
    }
    .tab-btn {
      padding: 8px 20px;
      border-radius: 7px;
      border: none; cursor: pointer;
      font-size: 13px; font-weight: 500;
      color: var(--text-muted);
      background: transparent;
      transition: all 0.2s;
    }
    .tab-btn.active {
      background: #bf5700;
      color: var(--white);
      font-weight: 600;
    }
    .tab-btn:hover:not(.active) {
      color: var(--text);
      background: var(--surface-2);
    }
    .tab-panel { display: none; }
    .tab-panel.active { display: block; }

    /* ── TOOL CARDS ─────────────────────────────────── */
    .tools-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 16px;
    }
    .tool-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 28px;
      display: flex; flex-direction: column;
      transition: all 0.22s;
      position: relative;
      overflow: hidden;
    }
    .tool-card:hover {
      border-color: var(--orange-border);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.09);
    }
    .tool-card-header {
      display: flex; align-items: flex-start;
      justify-content: space-between;
      margin-bottom: 16px;
    }
    .tool-icon {
      width: 44px; height: 44px;
      border-radius: 10px;
      background: var(--surface-2);
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
    }
    .tool-badges { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
    .badge {
      font-size: 10px; font-weight: 600;
      padding: 3px 8px; border-radius: 5px;
      display: inline-block;
    }
    .badge-approved {
      background: var(--green-faint);
      border: 1px solid var(--green-border);
      color: var(--green);
    }
    .badge-review {
      background: var(--amber-faint);
      border: 1px solid var(--amber-border);
      color: var(--amber);
    }
    .tool-name {
      font-family: 'Sora', sans-serif;
      font-size: 18px; font-weight: 700;
      color: var(--text);
      margin-bottom: 6px;
      line-height: 1.2;
    }
    .tool-audience {
      font-size: 11px; font-weight: 600;
      color: var(--orange);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .tool-desc {
      font-size: 13.5px; line-height: 1.65;
      color: var(--text-muted); flex: 1;
      margin-bottom: 20px;
    }
    .tool-features {
      display: flex; flex-wrap: wrap; gap: 6px;
      margin-bottom: 20px;
    }
    .tool-feature {
      font-size: 11px; font-weight: 500;
      background: var(--surface-2);
      border: 1px solid var(--border);
      color: var(--text-muted);
      padding: 4px 9px; border-radius: 5px;
    }
    .tool-cta {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 600;
      color: var(--orange);
      text-decoration: none;
      transition: gap 0.2s;
      margin-top: auto;
    }
    .tool-cta:hover { gap: 10px; }
    .tool-price {
      font-size: 13px; font-weight: 600;
      color: var(--amber);
      margin-bottom: 4px;
    }

    /* Highlighted tool card */
    .tool-card-featured {
      border-color: var(--orange-border);
      background: linear-gradient(135deg, var(--orange-faint), var(--surface));
    }
    .tool-card-featured::before {
      content: 'Most Used';
      position: absolute; top: 16px; right: -24px;
      background: var(--orange);
      color: white;
      font-size: 10px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      padding: 4px 32px;
      transform: rotate(35deg);
    }

    /* ── ROADMAP SECTION ────────────────────────────── */
    .roadmap-section {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .roadmap-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 320px 1fr;
      gap: 80px; align-items: center;
    }
    .roadmap-phases {
      display: flex; flex-direction: column; gap: 0;
    }
    .roadmap-phase {
      display: flex; gap: 20px;
      padding: 20px 0;
      border-bottom: 1px solid var(--border);
      position: relative;
    }
    .roadmap-phase:last-child { border-bottom: none; }
    .phase-dot {
      width: 10px; height: 10px; border-radius: 50%;
      background: var(--text-dim);
      flex-shrink: 0; margin-top: 5px;
    }
    .phase-dot.active { background: var(--orange); box-shadow: 0 0 0 3px var(--orange-faint); }
    .phase-dot.upcoming { background: var(--surface-3); border: 1px solid var(--border-light); }
    .phase-period {
      font-size: 10.5px; font-weight: 700;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 4px;
    }
    .phase-title {
      font-family: 'Sora', sans-serif;
      font-size: 15px; font-weight: 700;
      color: var(--text);
      margin-bottom: 6px;
    }
    .phase-desc {
      font-size: 12.5px; line-height: 1.6;
      color: var(--text-muted);
    }
    .roadmap-highlight {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 36px;
    }
    .roadmap-highlight-title {
      font-family: 'Sora', sans-serif;
      font-size: 22px; font-weight: 700;
      color: var(--text);
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .roadmap-highlight-desc {
      font-size: 14px; line-height: 1.7;
      color: var(--text-muted);
      margin-bottom: 24px;
    }
    .roadmap-tools {
      display: flex; flex-wrap: wrap; gap: 8px;
      margin-bottom: 24px;
    }
    .roadmap-tool-tag {
      font-size: 12px; font-weight: 600;
      background: var(--surface-2);
      border: 1px solid var(--border);
      color: var(--text);
      padding: 5px 12px; border-radius: 6px;
      display: flex; align-items: center; gap: 6px;
    }
    .roadmap-tool-tag .dot {
      width: 5px; height: 5px;
      border-radius: 50%; background: var(--orange);
    }

    /* ── STUDIO CALLOUT ─────────────────────────────── */
    .studio-callout {
      background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      padding: 52px;
      display: grid; grid-template-columns: 1fr auto;
      gap: 48px; align-items: center;
      position: relative; overflow: hidden;
      margin: 0 48px 80px;
    }
    .studio-callout::before {
      content: '';
      position: absolute; top: -60px; right: -60px;
      width: 280px; height: 280px; border-radius: 50%;
      background: radial-gradient(circle, rgba(191,87,0,0.14), transparent 70%);
      pointer-events: none;
    }
    .studio-callout-inner { max-width: 1200px; margin: 0 auto; }
    .studio-callout-dell {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(0,125,184,0.18);
      border: 1px solid rgba(0,125,184,0.38);
      border-radius: 6px;
      padding: 5px 12px; margin-bottom: 18px;
      font-size: 11px; font-weight: 600;
      color: #5BC4F5;
      letter-spacing: 0.05em;
    }
    .studio-callout-title {
      font-family: 'Sora', sans-serif;
      font-size: 30px; font-weight: 800;
      color: #FFFFFF;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
    }
    .studio-callout-title .accent { color: var(--orange); }
    .studio-callout-desc {
      font-size: 15px; line-height: 1.7;
      color: rgba(255,255,255,0.62);
      max-width: 520px;
      margin-bottom: 28px;
    }
    .studio-stats {
      display: flex; gap: 36px;
    }
    .studio-stat-num {
      font-family: 'Sora', sans-serif;
      font-size: 28px; font-weight: 800;
      color: var(--orange); line-height: 1;
    }
    .studio-stat-label {
      font-size: 11px; font-weight: 500;
      color: rgba(255,255,255,0.45); margin-top: 4px;
    }
    .studio-callout-actions {
      display: flex; flex-direction: column; gap: 12px;
      flex-shrink: 0; align-items: flex-end;
    }
    .btn-dell {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--dell-blue); color: var(--white);
      font-size: 13.5px; font-weight: 600;
      padding: 11px 22px; border-radius: 7px;
      text-decoration: none; transition: all 0.2s;
      white-space: nowrap;
    }
    .btn-dell:hover {
      background: #0090d4;
      transform: translateY(-1px);
    }

    /* ── TRAINING / EVENTS ──────────────────────────── */
    .events-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .event-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px; padding: 24px;
      transition: all 0.22s;
      display: flex; flex-direction: column;
    }
    .event-card:hover {
      border-color: var(--orange-border);
      transform: translateY(-2px);
    }
    .event-status {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 10px; font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--green);
      margin-bottom: 14px;
    }
    .event-status::before {
      content: ''; width: 5px; height: 5px;
      border-radius: 50%; background: var(--green);
    }
    .event-title {
      font-family: 'Sora', sans-serif;
      font-size: 16px; font-weight: 700;
      color: var(--text); line-height: 1.3;
      margin-bottom: 14px; flex: 1;
    }
    .event-meta {
      display: flex; flex-direction: column; gap: 6px;
      margin-bottom: 18px;
    }
    .event-meta-row {
      display: flex; align-items: center; gap: 8px;
      font-size: 12.5px; color: var(--text-muted);
    }
    .event-meta-row svg { flex-shrink: 0; opacity: 0.5; }
    .event-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 18px;
      flex: 1;
    }
    .event-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 12.5px; font-weight: 600;
      color: var(--orange); text-decoration: none;
      transition: gap 0.2s; margin-top: auto;
    }
    .event-link:hover { gap: 10px; }

    /* Async learning */
    .async-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    .async-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 10px; padding: 22px 24px;
      display: flex; gap: 16px; align-items: flex-start;
      transition: all 0.2s;
    }
    .async-card:hover { border-color: var(--orange-border); }
    .async-icon {
      width: 38px; height: 38px; border-radius: 8px;
      background: var(--orange-faint);
      border: 1px solid var(--orange-border);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; flex-shrink: 0;
    }
    .async-title {
      font-size: 14px; font-weight: 600;
      color: var(--text); line-height: 1.35;
      margin-bottom: 5px;
    }
    .async-desc {
      font-size: 12px; line-height: 1.6;
      color: var(--text-muted);
    }

    /* ── TOOLS MATRIX CARD ──────────────────────────── */
    .matrix-banner {
      background: var(--surface-2);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 36px 44px;
      display: flex; align-items: center; gap: 40px;
      margin-bottom: 60px;
    }
    .matrix-icons {
      display: flex; gap: -6px;
    }
    .matrix-icon {
      width: 44px; height: 44px; border-radius: 10px;
      background: var(--surface);
      border: 2px solid var(--bg);
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
      margin-right: -8px;
    }
    .matrix-content { flex: 1; }
    .matrix-title {
      font-family: 'Sora', sans-serif;
      font-size: 20px; font-weight: 700;
      color: var(--text); margin-bottom: 6px;
    }
    .matrix-desc {
      font-size: 14px; color: var(--text-muted);
      line-height: 1.6; max-width: 480px;
    }

    /* ── GUIDANCE GRID ──────────────────────────────── */
    .guidance-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .guidance-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 12px; padding: 28px;
      transition: all 0.2s;
    }
    .guidance-card:hover { border-color: var(--orange-border); }
    .guidance-card-icon {
      font-size: 28px; margin-bottom: 14px;
    }
    .guidance-card-title {
      font-family: 'Sora', sans-serif;
      font-size: 17px; font-weight: 700;
      color: var(--text); margin-bottom: 10px;
      line-height: 1.3;
    }
    .guidance-card-desc {
      font-size: 13.5px; line-height: 1.65;
      color: var(--text-muted); margin-bottom: 18px;
    }
    .guidance-link {
      font-size: 13px; font-weight: 600;
      color: var(--orange); text-decoration: none;
      display: inline-flex; align-items: center; gap: 5px;
      transition: gap 0.2s;
    }
    .guidance-link:hover { gap: 9px; }

    /* ── FAQ ────────────────────────────────────────── */
    .faq-section { background: var(--surface-2); }
    .faq-list { max-width: 760px; }
    .faq-item {
      border-bottom: 1px solid var(--border);
      padding: 20px 0;
    }
    .faq-item:first-child { border-top: 1px solid var(--border); }
    .faq-q {
      font-size: 15px; font-weight: 600;
      color: var(--text); margin-bottom: 10px;
      cursor: pointer;
      display: flex; justify-content: space-between;
      align-items: flex-start; gap: 16px;
    }
    .faq-q::after {
      content: '+'; color: var(--orange);
      font-size: 20px; font-weight: 400;
      flex-shrink: 0; line-height: 1;
    }
    .faq-a {
      font-size: 14px; line-height: 1.75;
      color: var(--text-muted);
    }

    /* ── SUPPORT BAND ───────────────────────────────── */
    .support-band {
      background: var(--surface);
      border-top: 1px solid var(--border);
      padding: 60px 48px;
    }
    .support-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; align-items: center;
      justify-content: space-between; gap: 40px;
    }
    .support-title {
      font-family: 'Sora', sans-serif;
      font-size: 26px; font-weight: 700;
      color: var(--text); margin-bottom: 8px;
    }
    .support-desc {
      font-size: 15px; color: var(--text-muted);
      max-width: 480px; line-height: 1.65;
    }
    .support-actions { display: flex; gap: 14px; flex-shrink: 0; }

    /* ── FOOTER ─────────────────────────────────────── */
.footer-brand {
      display: flex; align-items: center; gap: 12px;
      text-decoration: none;
    }
