﻿/* ============================================================
   Apskil - Data Science Landing Page Stylesheet
   ds-style.css  |  v1.0.0
   ============================================================
   Prefix  : ds-
   Fonts   : Outfit · Inter · JetBrains Mono
   Palette : Deep purple / cyan-data / canvas black
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ────────────────────────────────────────────────────────────
   0.  DESIGN TOKENS
   ──────────────────────────────────────────────────────────── */
:root {
  /* Surfaces */
  --canvas:          #F8FAFC;
  --surface:         #FFFFFF;
  --surface-2:       #EFF6FF;
  --border:          #E2E8F0;
  --border-purple:   rgba(124,58,237,0.18);

  /* Accents */
  --purple-primary:  #6D28D9;
  --purple-dim:      #F5F3FF;
  --purple-glow:     rgba(109,40,217,0.06);
  --cyan-data:       #0891B2;
  --green-valid:     #10B981;
  --red-error:       #EF4444;

  /* Typography colours */
  --text-primary:    #0F172A;
  --text-secondary:  #475569;
  --text-muted:      #94A3B8;

  /* Font stacks */
  --font-display:  'Outfit', sans-serif;
  --font-head:     'Outfit', sans-serif;
  --font-body:     'Inter', sans-serif;
  --font-mono:     'JetBrains Mono', monospace;

  /* Radii */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;

  /* Layout */
  --max-w:  1200px;
  --pad-x:  40px;
  --sec-py: 90px;
}

@media (max-width: 1024px) {
  :root {
    --pad-x:  24px;
    --sec-py: 80px;
  }
}

@media (max-width: 768px) {
  :root {
    --pad-x:  20px;
    --sec-py: 72px;
  }
}

/* ────────────────────────────────────────────────────────────
   1.  RESET & BASE
   ──────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.ds-page {
  background: var(--canvas);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Ambient glow orbs */
body.ds-page::before {
  content: '';
  position: fixed;
  top: -220px;
  left: -220px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

body.ds-page::after {
  content: '';
  position: fixed;
  bottom: -220px;
  right: -220px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

body.ds-page a {
  color: inherit;
  text-decoration: none;
}

body.ds-page button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

body.ds-page img,
body.ds-page svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ────────────────────────────────────────────────────────────
   2.  LAYOUT
   ──────────────────────────────────────────────────────────── */
.ds-container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.ds-section {
  padding-top: var(--sec-py);
  padding-bottom: var(--sec-py);
  position: relative;
  z-index: 1;
}

/* ────────────────────────────────────────────────────────────
   3.  TYPOGRAPHY
   ──────────────────────────────────────────────────────────── */
.ds-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-primary);
  margin-bottom: 16px;
}

.ds-eyebrow--muted {
  color: var(--text-muted);
}

.ds-section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text-primary);
  margin-top: 14px;
  margin-bottom: 56px;
}

.ds-section-title em {
  color: var(--purple-primary);
  font-style: normal;
}

.ds-section-title .cyan-word {
  color: var(--cyan-data);
}

.ds-card-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.ds-body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.purple {
  color: var(--purple-primary);
}

.muted {
  color: var(--text-muted);
}

.cyan {
  color: var(--cyan-data);
}

body.ds-page code {
  font-family: var(--font-mono);
  font-size: 14px;
  background: rgba(139,92,246,0.1);
  border-radius: 4px;
  padding: 2px 6px;
  color: var(--purple-primary);
}

/* ────────────────────────────────────────────────────────────
   4.  BUTTONS
   ──────────────────────────────────────────────────────────── */
.ds-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
}

.ds-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Primary */
.ds-btn-primary {
  background: var(--purple-primary);
  color: #fff;
  border: 1px solid var(--purple-primary);
}

.ds-btn-primary:hover {
  background: #7C3AED;
  border-color: #7C3AED;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(139,92,246,0.30);
}

.ds-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(139,92,246,0.20);
}

/* Outline */
.ds-btn-outline {
  background: transparent;
  border: 1px solid rgba(6,182,212,0.4);
  color: var(--cyan-data);
}

.ds-btn-outline:hover {
  border-color: var(--cyan-data);
  background: rgba(6,182,212,0.05);
  transform: translateY(-1px);
}

.ds-btn-outline:active {
  transform: translateY(0);
}

/* Ghost */
.ds-btn-ghost {
  background: var(--purple-dim);
  border: 1px solid rgba(139,92,246,0.25);
  color: var(--purple-primary);
}

.ds-btn-ghost:hover {
  background: rgba(139,92,246,0.15);
  border-color: rgba(139,92,246,0.45);
  transform: translateY(-1px);
}

.ds-btn-ghost:active {
  transform: translateY(0);
}

/* ────────────────────────────────────────────────────────────
   5.  NAVIGATION
   ──────────────────────────────────────────────────────────── */
.ds-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(9,12,21,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.ds-nav .ds-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.ds-nav-brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}

.ds-nav-brand span {
  color: var(--purple-primary);
}

.ds-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.ds-nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.ds-nav-links a:hover,
.ds-nav-links a.active {
  color: var(--text-primary);
  border-bottom-color: var(--purple-primary);
}

.ds-nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.ds-nav-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 12px;
  color: var(--text-secondary);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .ds-nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .ds-nav-badge {
    display: none;
  }
}

/* ────────────────────────────────────────────────────────────
   6.  HERO
   ──────────────────────────────────────────────────────────── */
.ds-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  overflow: hidden;
}

.ds-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
  pointer-events: none;
}

.ds-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    repeating-linear-gradient(0deg,   rgba(139,92,246,0.04) 0px, transparent 1px, transparent 48px),
    repeating-linear-gradient(90deg,  rgba(139,92,246,0.04) 0px, transparent 1px, transparent 48px);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 20%, transparent 100%);
  pointer-events: none;
}

.ds-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, var(--canvas) 100%);
  pointer-events: none;
}

.ds-hero-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  max-width: 760px;
}

/* Hero pill */
.ds-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 999px;
  padding: 6px 18px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-primary);
  margin-bottom: 28px;
}

.ds-hero-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-primary);
  box-shadow: 0 0 8px rgba(139,92,246,0.6);
  animation: ds-pulse-purple 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes ds-pulse-purple {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

/* Hero copy container */
.ds-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Hero heading */
.ds-hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.ds-hero-h1 em {
  color: var(--purple-primary);
  font-style: normal;
}

/* Hero sub */
.ds-hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 44px;
}

/* Hero CTAs */
.ds-hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Hero metrics */
.ds-hero-metrics {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Hero chip */
.ds-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
}

.ds-hero-chip svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Hero credentials */
.ds-hero-creds {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  width: 100%;
}

.ds-cred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0 28px;
}

.ds-cred-item + .ds-cred-item {
  border-left: 1px solid var(--border);
}

.ds-cred-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ds-cred-value {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.ds-cred-value .purple {
  color: var(--purple-primary);
}

@media (max-width: 768px) {
  .ds-hero {
    padding: 80px 0 60px;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .ds-hero-creds {
    gap: 16px;
  }
  .ds-cred-item {
    border-left: none !important;
    padding: 8px 16px;
  }
}

/* ────────────────────────────────────────────────────────────
   7.  FLOATING CODE FRAGMENT
   ──────────────────────────────────────────────────────────── */
.ds-code-float {
  position: absolute;
  bottom: 60px;
  right: 40px;
  z-index: 10;
  opacity: 0.55;
  display: block;
  animation: ds-float 4s ease-in-out infinite;
}

@keyframes ds-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.ds-code-card {
  background: var(--surface);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--r-sm);
  padding: 20px;
  max-width: 360px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.ds-code-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}

.ds-code-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ds-code-dot:nth-child(1) { background: var(--red-error); }
.ds-code-dot:nth-child(2) { background: #F59E0B; }
.ds-code-dot:nth-child(3) { background: var(--green-valid); }

.ds-code-filename {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  margin-left: auto;
}

.ds-code-body {
  white-space: pre;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.ds-code-keyword {
  color: var(--purple-primary);
}

.ds-code-comment {
  color: var(--text-muted);
}

.ds-code-value {
  color: var(--green-valid);
}

.ds-code-string {
  color: var(--cyan-data);
}

@media (max-width: 1100px) {
  .ds-code-float {
    display: none;
  }
}

/* ────────────────────────────────────────────────────────────
   8.  CAREER TIMELINE
   ──────────────────────────────────────────────────────────── */
.ds-timeline {
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
}

.ds-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  width: 4px;
  height: 100%;
  background: var(--border);
  border-radius: 2px;
}

.ds-timeline-fill {
  position: absolute;
  top: 0;
  left: 28px;
  width: 4px;
  height: 0%;
  background: var(--purple-primary);
  border-radius: 2px;
  transition: height 0.8s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 0 12px rgba(139,92,246,0.4);
  z-index: 1;
}

.ds-timeline-item {
  position: relative;
  padding-left: 56px;
  margin-bottom: 56px;
}

.ds-timeline-item:last-child {
  margin-bottom: 0;
}

.ds-timeline-dot {
  position: absolute;
  left: 18px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--canvas);
  border: 3px solid var(--border);
  z-index: 2;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ds-timeline-dot.purple {
  border-color: var(--purple-primary);
  background: var(--purple-dim);
  box-shadow: 0 0 0 4px rgba(139,92,246,0.15);
}

.ds-timeline-dot.cyan {
  border-color: var(--cyan-data);
  background: rgba(6,182,212,0.15);
  box-shadow: 0 0 0 4px rgba(6,182,212,0.15);
}

.ds-timeline-dot.green {
  border-color: var(--green-valid);
  background: rgba(16,185,129,0.15);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.15);
}

.ds-timeline-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ds-timeline-card:hover {
  border-color: rgba(139,92,246,0.3);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.ds-timeline-stage {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-primary);
  margin-bottom: 8px;
}

.ds-timeline-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.ds-timeline-role-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  background: var(--purple-dim);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 999px;
  padding: 5px 14px;
  color: var(--purple-primary);
}

.ds-timeline-salary {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--purple-primary);
  margin-top: 12px;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.ds-timeline-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-top: 8px;
}

.ds-timeline-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.ds-chip {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 4px;
  background: transparent;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.ds-chip:hover {
  border-color: rgba(139,92,246,0.3);
  color: var(--text-primary);
}

@media (max-width: 640px) {
  .ds-timeline {
    padding-left: 10px;
  }

  .ds-timeline::before,
  .ds-timeline-fill {
    left: 18px;
  }

  .ds-timeline-dot {
    left: 8px;
  }

  .ds-timeline-item {
    padding-left: 44px;
    margin-bottom: 40px;
  }

  .ds-timeline-card {
    padding: 24px 20px;
  }

  .ds-timeline-salary {
    font-size: 26px;
  }
}

/* ────────────────────────────────────────────────────────────
   9.  CURRICULUM GRID
   ──────────────────────────────────────────────────────────── */
.ds-curriculum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ds-module-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--cyan-data);
  border-radius: var(--r-md);
  padding: 32px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.ds-module-card:hover {
  transform: translateY(-2px);
  border-color: rgba(139,92,246,0.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.ds-module-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-data);
  margin-bottom: 10px;
}

.ds-module-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.ds-module-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.ds-module-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.ds-module-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: 6px;
  padding: 4px 10px;
  color: var(--cyan-data);
  transition: background 0.2s ease;
}

.ds-module-pill:hover {
  background: rgba(6,182,212,0.18);
}

/* Tool Bar */
.ds-tool-bar {
  margin-top: 56px;
  text-align: center;
}

.ds-tool-bar-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  text-align: center;
}

.ds-tool-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.ds-tool-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.ds-tool-logo:hover {
  opacity: 1;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .ds-curriculum-grid {
    grid-template-columns: 1fr;
  }

  .ds-module-card {
    padding: 24px 20px;
  }

  .ds-tool-logos {
    gap: 24px;
  }
}

/* ────────────────────────────────────────────────────────────
   10.  CAREER OUTCOME ENGINE (MATRIX)
   ──────────────────────────────────────────────────────────── */
.ds-matrix-card {
  background: var(--surface);
  border: 1px solid var(--border-purple);
  border-radius: var(--r-md);
  padding: 48px;
  box-shadow: 0 8px 40px rgba(139,92,246,0.06);
}

.ds-matrix-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.ds-pill-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 32px;
  padding-bottom: 4px;
}

.ds-pill-row::-webkit-scrollbar {
  display: none;
}

.ds-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.ds-pill:hover {
  border-color: rgba(139,92,246,0.4);
  color: var(--text-primary);
}

.ds-pill.active {
  background: var(--purple-dim);
  border-color: rgba(139,92,246,0.5);
  color: var(--text-primary);
}

/* Slider row */
.ds-slider-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.ds-slider-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.ds-slider-val {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--purple-primary);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  min-width: 50px;
  text-align: right;
}

/* Custom range */
input[type=range].ds-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  flex: 1;
}

input[type=range].ds-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: var(--purple-primary);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

input[type=range].ds-range::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 4px rgba(139,92,246,0.2);
}

input[type=range].ds-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: var(--purple-primary);
  border: none;
  border-radius: 2px;
  cursor: pointer;
}

input[type=range].ds-range::-moz-range-track {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
}

/* Matrix results */
.ds-matrix-results {
  display: none;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  margin-top: 32px;
}

.ds-matrix-results.show {
  display: block;
  animation: ds-fadeUp 0.5s ease-out;
}

@keyframes ds-fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ds-results-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ds-result-box {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 28px;
}

.ds-result-box-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.ds-result-salary {
  font-family: var(--font-mono);
  font-size: 52px;
  font-weight: 700;
  color: var(--purple-primary);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.ds-result-role-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin-top: 8px;
}

.ds-result-role-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 13px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--text-secondary);
}

.role-pay {
  font-family: var(--font-mono);
  color: var(--purple-primary);
  font-variant-numeric: tabular-nums;
}

.ds-result-note {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 20px;
}

.ds-calc-progress {
  width: 100%;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 32px;
}

.ds-calc-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--purple-primary), var(--cyan-data));
  border-radius: 2px;
  transition: width 0.5s ease;
}

.ds-matrix-cta-row {
  text-align: center;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .ds-matrix-card {
    padding: 28px 20px;
  }

  .ds-results-cols {
    grid-template-columns: 1fr;
  }

  .ds-result-salary {
    font-size: 40px;
  }
}

/* ────────────────────────────────────────────────────────────
   11.  SKILL GAP CHART
   ──────────────────────────────────────────────────────────── */
.ds-gap-zone {
  margin-top: 32px;
}

.ds-skill-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.ds-skill-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  min-width: 120px;
  flex-shrink: 0;
  text-align: right;
}

.ds-skill-bars {
  display: flex;
  gap: 4px;
  flex: 1;
  align-items: center;
}

.ds-skill-bar {
  height: 8px;
  border-radius: 4px;
  transition: width 0.6s ease-out;
}

.ds-skill-bar--current {
  background: var(--border);
}

.ds-skill-bar--post {
  background: var(--purple-primary);
  width: 0;
  transition: width 0.6s ease-out;
}

.ds-skill-bar--post.animate {
  /* width set via inline style */
}

.ds-skill-legend {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  align-items: center;
}

.ds-skill-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.ds-skill-legend span::before {
  content: '';
  width: 12px;
  height: 8px;
  border-radius: 4px;
  display: inline-block;
}

.ds-skill-legend span:first-child::before {
  background: var(--border);
}

.ds-skill-legend span:last-child::before {
  background: var(--purple-primary);
}

@media (max-width: 640px) {
  .ds-skill-label {
    min-width: 80px;
    font-size: 11px;
  }
}

/* ────────────────────────────────────────────────────────────
   12.  EUROPEAN IMMERSION
   ──────────────────────────────────────────────────────────── */
.ds-europe-wrap {
  position: relative;
  overflow: hidden;
}

.ds-europe-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--canvas) 0%, rgba(17,24,39,0.9) 50%, var(--canvas) 100%);
  z-index: 0;
}

.ds-europe-bg::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ds-europe-bg::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ds-europe-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ds-europe-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.ds-europe-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 999px;
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  align-self: flex-start;
}

.ds-europe-tag svg {
  width: 16px;
  height: 16px;
  color: var(--purple-primary);
  flex-shrink: 0;
}

/* Glass panel */
.ds-glass-panel {
  background: rgba(17,24,39,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-purple);
  border-radius: var(--r-md);
  padding: 32px;
}

.ds-panel-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-primary);
  text-align: center;
  margin-bottom: 20px;
}

.ds-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}

.ds-check-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
}

.ds-check-icon--yes {
  color: var(--purple-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.ds-check-icon--own {
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 2px;
}

.ds-check-item--yes .ds-check-text {
  color: var(--text-primary);
}

.ds-check-item--own .ds-check-text {
  color: var(--text-secondary);
}

.ds-panel-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .ds-europe-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .ds-checklist-grid {
    grid-template-columns: 1fr;
  }

  .ds-glass-panel {
    padding: 24px 20px;
  }
}

/* ────────────────────────────────────────────────────────────
   13.  ADMISSIONS TERMINAL
   ──────────────────────────────────────────────────────────── */
.ds-terminal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--purple-primary);
  border-radius: var(--r-md);
  padding: 48px;
}

.ds-terminal-bar {
  background: var(--surface-2);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  margin-bottom: 32px;
}

.ds-terminal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ds-terminal-dot:nth-child(1) { background: var(--red-error); }
.ds-terminal-dot:nth-child(2) { background: #F59E0B; }
.ds-terminal-dot:nth-child(3) { background: var(--green-valid); }

.ds-terminal-bar-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-left: auto;
}

/* Bool params */
.ds-bool-param {
  margin-bottom: 32px;
}

.ds-bool-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--green-valid);
  background: rgba(16,185,129,0.1);
  border-radius: 4px;
  padding: 4px 10px;
}

.ds-bool-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 8px;
}

.ds-bool-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
  line-height: 1.6;
}

.ds-bool-sep {
  border: none;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}

/* Selection box */
.ds-selection-box {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 24px;
  margin-top: 24px;
}

.ds-selection-box .result-line {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--purple-primary);
}

@media (max-width: 768px) {
  .ds-terminal-card {
    padding: 28px 20px;
  }
}

/* ────────────────────────────────────────────────────────────
   14.  FINANCIALS
   ──────────────────────────────────────────────────────────── */
.ds-invest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.ds-invest-card {
  background: var(--surface);
  border: 1px solid var(--border-purple);
  border-radius: var(--r-md);
  padding: 40px;
}

.ds-assurance-card {
  background: var(--surface);
  border: 1px solid var(--border-purple);
  border-radius: var(--r-md);
  padding: 40px;
}

.ds-price {
  font-family: var(--font-mono);
  font-size: 64px;
  font-weight: 700;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.ds-price-tax {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.ds-emi {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--cyan-data);
  margin-top: 16px;
}

.ds-emi-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.ds-roi-block {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--canvas);
  padding: 20px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  margin-top: 24px;
  line-height: 1.7;
}

.ds-roi-block strong {
  color: var(--purple-primary);
}

/* Stamp SVG */
.ds-stamp-svg {
  width: 80px;
  height: 80px;
  color: var(--purple-primary);
  opacity: 0.5;
  margin-bottom: 16px;
}

.ds-assurance-headline {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.ds-assurance-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.ds-assurance-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ds-assurance-list li {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.ds-assurance-list li::before {
  content: '✓';
  color: var(--purple-primary);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ds-invest-grid {
    grid-template-columns: 1fr;
  }

  .ds-invest-card,
  .ds-assurance-card {
    padding: 28px 20px;
  }

  .ds-price {
    font-size: 48px;
  }
}

/* ────────────────────────────────────────────────────────────
   15.  SOCIAL PROOF - TICKER STRIP
   ──────────────────────────────────────────────────────────── */
.ds-ticker-strip {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--surface);
  position: relative;
  z-index: 1;
}

.ds-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  animation: ds-ticker 35s linear infinite;
}

.ds-ticker-strip:hover .ds-ticker-track {
  animation-play-state: paused;
}

@keyframes ds-ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ds-ticker-entry {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ds-ticker-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.ds-ticker-pay {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-primary);
  font-variant-numeric: tabular-nums;
}

.ds-ticker-sep {
  color: var(--text-muted);
  font-size: 10px;
  opacity: 0.5;
}

.ds-ticker-gem {
  color: var(--purple-primary);
  opacity: 0.5;
  font-size: 12px;
}

/* ────────────────────────────────────────────────────────────
   16.  SOCIAL PROOF - ALUMNI GRID
   ──────────────────────────────────────────────────────────── */
.ds-alumni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.ds-alumni-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.ds-alumni-card:hover {
  border-color: rgba(139,92,246,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

/* Alumni head */
.ds-alumni-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.ds-alumni-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(139,92,246,0.4);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.ds-alumni-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-dim) 0%, var(--surface-2) 100%);
  border-radius: 50%;
}

.ds-alumni-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.ds-alumni-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.ds-alumni-prev {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.ds-alumni-transition {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.ds-alumni-transition .arrow {
  color: var(--purple-primary);
  font-weight: 600;
  margin: 0 4px;
}

.ds-alumni-quote {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  border-left: 3px solid var(--purple-primary);
  padding-left: 14px;
  margin-top: auto;
  font-style: italic;
}

.ds-alumni-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--purple-dim);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 999px;
  padding: 4px 12px;
  color: var(--purple-primary);
  margin-top: 16px;
  align-self: flex-start;
}

/* Partners bar */
.ds-partners-bar {
  text-align: center;
  margin-top: 56px;
}

.ds-partners-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.ds-partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.ds-partner-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-muted);
  opacity: 0.4;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.ds-partner-logo:hover {
  opacity: 1;
  color: var(--text-secondary);
}

.ds-partner-logo img {
  height: 28px;
  filter: grayscale(1) brightness(0.5);
  transition: filter 0.3s ease;
}

.ds-partner-logo:hover img {
  filter: grayscale(0) brightness(1);
}

/* Cohort bar */
.ds-cohort-bar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 32px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.ds-cohort-bar-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-primary);
}

.ds-cohort-stats {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.ds-cohort-stats span {
  white-space: nowrap;
}

.ds-cohort-stats strong {
  color: var(--text-primary);
}

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

@media (max-width: 640px) {
  .ds-alumni-grid {
    grid-template-columns: 1fr;
  }

  .ds-alumni-card {
    padding: 24px 20px;
  }

  .ds-cohort-bar {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .ds-partners-logos {
    gap: 24px;
  }
}

/* ────────────────────────────────────────────────────────────
   17.  FAQ
   ──────────────────────────────────────────────────────────── */
.ds-faq-head {
  text-align: center;
  margin-bottom: 48px;
}

.ds-faq-list {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid var(--border);
}

.ds-faq-item {
  border-bottom: 1px solid var(--border);
}

.ds-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.ds-faq-btn:hover {
  color: var(--purple-primary);
}

.ds-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--purple-primary);
  transition: background 0.3s ease, transform 0.3s ease;
  background: transparent;
}

.ds-faq-item.open .ds-faq-icon {
  background: var(--purple-primary);
  color: #fff;
  transform: rotate(45deg);
}

.ds-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.ds-faq-item.open .ds-faq-body {
  max-height: 500px;
}

.ds-faq-body-inner {
  padding: 0 0 24px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.ds-faq-body-inner p {
  margin-bottom: 12px;
}

.ds-faq-body-inner p:last-child {
  margin-bottom: 0;
}

/* ────────────────────────────────────────────────────────────
   18.  FINAL CTA
   ──────────────────────────────────────────────────────────── */
.ds-cta-section {
  background:
    radial-gradient(ellipse 50% 40% at 30% 60%, rgba(139,92,246,0.08) 0%, transparent 100%),
    var(--canvas);
  position: relative;
  z-index: 1;
}

.ds-cta-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}

.ds-cta-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.ds-cta-headline .line1 {
  color: var(--text-primary);
  display: block;
}

.ds-cta-headline .line2 {
  color: var(--purple-primary);
  display: block;
}

/* Seats */
.ds-seats-wrap {
  margin-top: 32px;
}

.ds-seats-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.ds-seats-header strong {
  color: var(--purple-primary);
}

.ds-seats-bar {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.ds-seats-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple-primary), #A78BFA);
  border-radius: 3px;
  transition: width 1s ease-out;
}

/* Form card */
.ds-form-card {
  background: var(--surface-2);
  border: 1px solid var(--border-purple);
  border-radius: var(--r-md);
  padding: 40px;
  box-shadow: 0 8px 40px rgba(139,92,246,0.06);
}

.ds-form-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.ds-form-field {
  margin-bottom: 14px;
}

.ds-form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.ds-form-input {
  width: 100%;
  background: rgba(9,12,21,0.65);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ds-form-input::placeholder {
  color: var(--text-muted);
}

.ds-form-input:focus {
  border-color: var(--purple-primary);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.12);
}

select.ds-form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
}

select.ds-form-input:focus {
  border-color: var(--purple-primary);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.12);
}

.ds-form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  background: var(--purple-primary);
  color: #fff;
  border: 1px solid var(--purple-primary);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  margin-top: 8px;
}

.ds-form-submit:hover {
  background: #7C3AED;
  border-color: #7C3AED;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(139,92,246,0.30);
}

.ds-form-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(139,92,246,0.20);
}

.ds-form-trust {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

.ds-form-trust svg {
  display: inline;
  width: 12px;
  height: 12px;
  vertical-align: -2px;
  margin-right: 4px;
}

@media (max-width: 900px) {
  .ds-cta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .ds-form-card {
    padding: 28px 20px;
  }
}

/* ────────────────────────────────────────────────────────────
   19.  MOBILE STICKY BAR
   ──────────────────────────────────────────────────────────── */
.ds-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: rgba(9,12,21,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-purple);
  padding: 12px var(--pad-x);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.ds-mobile-bar.show {
  transform: translateY(0);
}

.ds-mobile-bar-text {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.ds-mobile-bar-text span {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
}

.ds-mobile-bar .ds-btn {
  padding: 10px 20px;
  font-size: 13px;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .ds-mobile-bar {
    display: flex;
  }
}

/* ────────────────────────────────────────────────────────────
   20.  SCROLL ANIMATIONS
   ──────────────────────────────────────────────────────────── */
.ds-anim {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ds-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

.ds-anim-d1 {
  transition-delay: 0.1s;
}

.ds-anim-d2 {
  transition-delay: 0.2s;
}

.ds-anim-d3 {
  transition-delay: 0.3s;
}

.ds-anim-d4 {
  transition-delay: 0.4s;
}

@media (prefers-reduced-motion: reduce) {
  .ds-anim {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ds-anim-d1,
  .ds-anim-d2,
  .ds-anim-d3,
  .ds-anim-d4 {
    transition-delay: 0s;
  }

  .ds-hero-pill-dot {
    animation: none;
  }

  .ds-code-float {
    animation: none;
  }

  .ds-ticker-track {
    animation: none;
  }
}

/* ────────────────────────────────────────────────────────────
   21.  MISCELLANEOUS
   ──────────────────────────────────────────────────────────── */

/* Trace divider */
.ds-trace {
  width: 100%;
  height: 1px;
  background: var(--border);
  border: none;
  margin: 0;
}

/* Matrix progress bar (bottom of matrix card) */
.ds-calc-progress {
  width: 100%;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 32px;
}

.ds-calc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple-primary), var(--cyan-data));
  border-radius: 2px;
  transition: width 0.5s ease;
  width: 0%;
}

/* Matrix CTA row */
.ds-matrix-cta-row {
  text-align: center;
  margin-top: 32px;
}

/* ────────────────────────────────────────────────────────────
   22.  SECTION-SPECIFIC HEADER PATTERNS
   ──────────────────────────────────────────────────────────── */

/* Centered section header pattern */
.ds-section-head {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px;
}

.ds-section-head .ds-body {
  margin-top: 12px;
}

/* Left-aligned section header */
.ds-section-head--left {
  text-align: left;
  max-width: 700px;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 48px;
}

.ds-section-head--left .ds-body {
  margin-top: 12px;
}

/* ────────────────────────────────────────────────────────────
   23.  FOOTER
   ──────────────────────────────────────────────────────────── */
.ds-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ds-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.ds-footer-copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
}

.ds-footer-links {
  display: flex;
  gap: 24px;
}

.ds-footer-links a {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ds-footer-links a:hover {
  color: var(--text-secondary);
}

@media (max-width: 640px) {
  .ds-footer-inner {
    flex-direction: column;
    gap: 12px;
  }
}

/* ────────────────────────────────────────────────────────────
   24.  ADDITIONAL UTILITY CLASSES
   ──────────────────────────────────────────────────────────── */

/* Gradient text helper */
.ds-gradient-text {
  background: linear-gradient(135deg, var(--purple-primary), var(--cyan-data));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glow border card variant */
.ds-glow-card {
  position: relative;
}

.ds-glow-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(139,92,246,0.15), transparent, rgba(6,182,212,0.1));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ds-glow-card:hover::before {
  opacity: 1;
}

/* Icon wrappers */
.ds-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--purple-glow);
  border: 1px solid var(--border-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ds-icon-wrap svg {
  width: 20px;
  height: 20px;
  color: var(--purple-primary);
}

.ds-icon-wrap--cyan {
  background: rgba(6,182,212,0.08);
  border-color: rgba(6,182,212,0.2);
}

.ds-icon-wrap--cyan svg {
  color: var(--cyan-data);
}

/* Numbered badge */
.ds-numbered-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--purple-dim);
  border: 1px solid rgba(139,92,246,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-primary);
  flex-shrink: 0;
}

/* Stat highlight */
.ds-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ds-stat-value {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--purple-primary);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.ds-stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
}

/* ────────────────────────────────────────────────────────────
   25.  WORDPRESS OVERRIDE RESETS
   ──────────────────────────────────────────────────────────── */
body.ds-page .entry-content,
body.ds-page .page-content {
  max-width: none;
  padding: 0;
  margin: 0;
}

body.ds-page .wp-block-group,
body.ds-page .wp-block-columns {
  max-width: none;
  padding: 0;
  margin: 0;
}

body.ds-page .alignwide,
body.ds-page .alignfull {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}

body.ds-page p:empty {
  display: none;
}

/* WP admin-bar offset */
body.ds-page.admin-bar .ds-nav {
  top: 32px;
}

@media (max-width: 782px) {
  body.ds-page.admin-bar .ds-nav {
    top: 46px;
  }
}

/* ────────────────────────────────────────────────────────────
   26.  HAMBURGER MENU (MOBILE NAV)
   ──────────────────────────────────────────────────────────── */
.ds-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.ds-nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.ds-nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.ds-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.ds-nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
  .ds-nav-toggle {
    display: flex;
  }
}

/* Mobile nav drawer */
.ds-nav-drawer {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9,12,21,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 199;
  padding: 32px var(--pad-x);
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.ds-nav-drawer.open {
  display: flex;
}

.ds-nav-drawer a {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}

.ds-nav-drawer a:hover {
  color: var(--purple-primary);
}

body.ds-page.admin-bar .ds-nav-drawer {
  top: 100px;
}

@media (max-width: 782px) {
  body.ds-page.admin-bar .ds-nav-drawer {
    top: 114px;
  }
}

/* ────────────────────────────────────────────────────────────
   27.  FEATURE / HIGHLIGHT CARDS
   ──────────────────────────────────────────────────────────── */
.ds-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ds-feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.ds-feature-card:hover {
  border-color: rgba(139,92,246,0.3);
  transform: translateY(-2px);
}

.ds-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--purple-glow);
  border: 1px solid var(--border-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ds-feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--purple-primary);
}

.ds-feature-icon--cyan {
  background: rgba(6,182,212,0.08);
  border-color: rgba(6,182,212,0.2);
}

.ds-feature-icon--cyan svg {
  color: var(--cyan-data);
}

.ds-feature-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.ds-feature-desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

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

@media (max-width: 640px) {
  .ds-feature-grid {
    grid-template-columns: 1fr;
  }

  .ds-feature-card {
    padding: 24px 20px;
  }
}

/* ────────────────────────────────────────────────────────────
   28.  COMPARISON TABLE
   ──────────────────────────────────────────────────────────── */
.ds-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 14px;
}

.ds-compare-table thead th {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.ds-compare-table thead th:first-child {
  padding-left: 0;
}

.ds-compare-table thead th.ds-compare-highlight {
  color: var(--purple-primary);
}

.ds-compare-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: top;
}

.ds-compare-table tbody td:first-child {
  padding-left: 0;
  color: var(--text-primary);
  font-weight: 500;
}

.ds-compare-table tbody td.ds-compare-highlight {
  background: rgba(139,92,246,0.04);
  color: var(--text-primary);
}

.ds-compare-check {
  color: var(--purple-primary);
  font-size: 16px;
}

.ds-compare-cross {
  color: var(--text-muted);
  font-size: 16px;
}

@media (max-width: 768px) {
  .ds-compare-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ────────────────────────────────────────────────────────────
   29.  COUNTER / STATS ROW
   ──────────────────────────────────────────────────────────── */
.ds-stats-row {
  display: flex;
  align-items: stretch;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.ds-stat-cell {
  flex: 1;
  background: var(--surface);
  padding: 28px 24px;
  text-align: center;
}

.ds-stat-cell-value {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--purple-primary);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.ds-stat-cell-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

@media (max-width: 640px) {
  .ds-stats-row {
    flex-direction: column;
  }

  .ds-stat-cell {
    padding: 20px 16px;
  }

  .ds-stat-cell-value {
    font-size: 26px;
  }
}

/* ────────────────────────────────────────────────────────────
   30.  TESTIMONIAL CAROUSEL EXTRAS
   ──────────────────────────────────────────────────────────── */
.ds-testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.ds-testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.ds-testimonial-dot.active {
  background: var(--purple-primary);
  transform: scale(1.25);
}

.ds-testimonial-dot:hover {
  background: rgba(139,92,246,0.5);
}

/* ────────────────────────────────────────────────────────────
   31.  NOTIFICATION / TOAST
   ──────────────────────────────────────────────────────────── */
.ds-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  background: var(--surface-2);
  border: 1px solid var(--border-purple);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
  max-width: 380px;
}

.ds-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.ds-toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--purple-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ds-toast-icon svg {
  width: 16px;
  height: 16px;
  color: var(--purple-primary);
}

.ds-toast-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.4;
}

.ds-toast-text span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.ds-toast-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

.ds-toast-close:hover {
  color: var(--text-primary);
}

@media (max-width: 767px) {
  .ds-toast {
    left: 16px;
    right: 16px;
    bottom: 80px; /* above mobile bar */
    max-width: none;
  }
}

/* ────────────────────────────────────────────────────────────
   32.  LOADING / SKELETON STATES
   ──────────────────────────────────────────────────────────── */
.ds-skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: ds-shimmer 1.5s ease-in-out infinite;
  border-radius: var(--r-sm);
}

@keyframes ds-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.ds-skeleton-text {
  height: 14px;
  margin-bottom: 8px;
  border-radius: 4px;
}

.ds-skeleton-text:last-child {
  width: 60%;
}

.ds-skeleton-heading {
  height: 28px;
  margin-bottom: 16px;
  width: 70%;
  border-radius: 4px;
}

.ds-skeleton-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

/* ────────────────────────────────────────────────────────────
   33.  SCROLL PROGRESS INDICATOR
   ──────────────────────────────────────────────────────────── */
.ds-scroll-progress {
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  z-index: 201;
  pointer-events: none;
}

.ds-scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--purple-primary), var(--cyan-data));
  transition: width 0.1s linear;
}

body.ds-page.admin-bar .ds-scroll-progress {
  top: 100px;
}

@media (max-width: 782px) {
  body.ds-page.admin-bar .ds-scroll-progress {
    top: 114px;
  }
}

/* ────────────────────────────────────────────────────────────
   34.  BACK TO TOP BUTTON
   ──────────────────────────────────────────────────────────── */
.ds-back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 250;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--purple-primary);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.ds-back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ds-back-top:hover {
  background: var(--purple-dim);
}

.ds-back-top svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 767px) {
  .ds-back-top {
    bottom: 80px; /* above mobile bar */
    right: 16px;
  }
}

/* ────────────────────────────────────────────────────────────
   35.  TOOLTIP
   ──────────────────────────────────────────────────────────── */
.ds-tooltip-wrap {
  position: relative;
  display: inline-flex;
}

.ds-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-primary);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.ds-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--surface-2);
}

.ds-tooltip-wrap:hover .ds-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ────────────────────────────────────────────────────────────
   36.  BADGE VARIANTS
   ──────────────────────────────────────────────────────────── */
.ds-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  padding: 4px 12px;
  letter-spacing: 0.04em;
}

.ds-badge--purple {
  background: var(--purple-dim);
  border: 1px solid rgba(139,92,246,0.3);
  color: var(--purple-primary);
}

.ds-badge--cyan {
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.25);
  color: var(--cyan-data);
}

.ds-badge--green {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  color: var(--green-valid);
}

.ds-badge--red {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  color: var(--red-error);
}

/* ────────────────────────────────────────────────────────────
   37.  TAB NAVIGATION (in curriculum or elsewhere)
   ──────────────────────────────────────────────────────────── */
.ds-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ds-tabs::-webkit-scrollbar {
  display: none;
}

.ds-tab {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 12px 20px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.ds-tab:hover {
  color: var(--text-secondary);
}

.ds-tab.active {
  color: var(--purple-primary);
  border-bottom-color: var(--purple-primary);
}

.ds-tab-panel {
  display: none;
}

.ds-tab-panel.active {
  display: block;
  animation: ds-fadeUp 0.3s ease-out;
}

/* ────────────────────────────────────────────────────────────
   38.  STEP / PROCESS INDICATOR
   ──────────────────────────────────────────────────────────── */
.ds-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}

.ds-step {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ds-step-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.ds-step.active .ds-step-circle {
  background: var(--purple-primary);
  border-color: var(--purple-primary);
  color: #fff;
}

.ds-step.completed .ds-step-circle {
  background: var(--purple-dim);
  border-color: var(--purple-primary);
  color: var(--purple-primary);
}

.ds-step-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.ds-step.active .ds-step-label {
  color: var(--text-primary);
}

.ds-step.completed .ds-step-label {
  color: var(--text-secondary);
}

.ds-step-connector {
  flex: 1;
  min-width: 24px;
  height: 2px;
  background: var(--border);
  margin: 0 8px;
}

.ds-step-connector.completed {
  background: var(--purple-primary);
}

@media (max-width: 640px) {
  .ds-step-label {
    display: none;
  }

  .ds-step-connector {
    min-width: 12px;
  }
}

/* ────────────────────────────────────────────────────────────
   39.  INLINE CODE BLOCKS (extended)
   ──────────────────────────────────────────────────────────── */
body.ds-page pre {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 20px;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 16px 0;
}

body.ds-page pre code {
  background: none;
  padding: 0;
  border-radius: 0;
  font-size: inherit;
  color: inherit;
}

/* ────────────────────────────────────────────────────────────
   40.  SELECTION & FOCUS STYLES
   ──────────────────────────────────────────────────────────── */
body.ds-page ::selection {
  background: rgba(139,92,246,0.3);
  color: var(--text-primary);
}

body.ds-page ::-moz-selection {
  background: rgba(139,92,246,0.3);
  color: var(--text-primary);
}

body.ds-page *:focus-visible {
  outline: 2px solid var(--purple-primary);
  outline-offset: 2px;
}

/* ────────────────────────────────────────────────────────────
   41.  SCROLLBAR STYLING
   ──────────────────────────────────────────────────────────── */
body.ds-page ::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

body.ds-page ::-webkit-scrollbar-track {
  background: var(--canvas);
}

body.ds-page ::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

body.ds-page ::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

body.ds-page {
  scrollbar-width: thin;
  scrollbar-color: var(--border) var(--canvas);
}

/* ────────────────────────────────────────────────────────────
   42.  PRINT STYLES
   ──────────────────────────────────────────────────────────── */
@media print {
  body.ds-page {
    background: #fff;
    color: #000;
  }

  body.ds-page::before,
  body.ds-page::after {
    display: none;
  }

  .ds-nav,
  .ds-mobile-bar,
  .ds-back-top,
  .ds-scroll-progress,
  .ds-toast {
    display: none !important;
  }

  .ds-section {
    padding: 32px 0;
    page-break-inside: avoid;
  }

  .ds-hero {
    min-height: auto;
    padding: 32px 0;
  }

  .ds-hero-grid,
  .ds-hero-overlay,
  .ds-hero-canvas,
  .ds-code-float {
    display: none;
  }

  .ds-anim {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   END OF ds-style.css
   ============================================================ */


/* ────────────────────────────────────────────────────────────
   UNIFIED CURRICULUM MATRIX (FLEXBOX ALIGNMENT LOCK)
   ──────────────────────────────────────────────────────────── */
.ds-curriculum-matrix {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px !important;
    align-items: stretch !important; /* CRITICAL: Forces all cards in a row to match height exactly */
    margin-bottom: 56px !important;
    width: 100% !important;
}

.ds-curriculum-card {
    display: flex !important;
    flex-direction: column !important; /* Sets up vertical flex alignment */
    height: 100% !important; /* Fills grid cell entirely */
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--r-md) !important;
    padding: 48px 40px !important;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
    box-sizing: border-box !important;
}

.ds-curriculum-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(139,92,246,0.5) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px rgba(139,92,246,0.1) !important;
}

/* Header Box */
.ds-card-header {
    display: flex !important;
    align-items: flex-start !important;
    gap: 20px !important;
    margin-bottom: 24px !important;
    flex-shrink: 0 !important; /* Locks header height */
}

.ds-mod-num {
    font-family: var(--font-mono) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--purple-primary) !important;
    background: rgba(139,92,246,0.1) !important;
    border: 1px solid rgba(139,92,246,0.2) !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
}

.ds-mod-titles {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
}

.ds-mod-title {
    font-family: var(--font-head) !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--text-primary) !important;
    line-height: 1.2 !important;
    margin: 0 !important;
}

.ds-mod-subtitle {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--cyan-data) !important;
}

/* Body Text Auto-Expansion */
.ds-card-body {
    flex-grow: 1 !important; /* CRITICAL: This fills empty space, forcing all footers down evenly */
    margin-bottom: 32px !important;
}

.ds-card-body p {
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
    color: var(--text-secondary) !important;
    margin: 0 !important;
}

.ds-card-body code {
    font-family: var(--font-mono) !important;
    font-size: 13.5px !important;
    color: #F43F5E !important;
    background: rgba(244, 63, 94, 0.08) !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
}

/* Footer Implementation Areas */
.ds-card-footer {
    flex-shrink: 0 !important; /* Locks footer height */
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    padding-top: 24px !important;
}

.ds-footer-label {
    font-family: var(--font-mono) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    color: var(--text-muted) !important;
    margin-bottom: 16px !important;
}

.ds-impl-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.ds-impl-list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    font-family: var(--font-body) !important;
    font-size: 14.5px !important;
    color: var(--text-primary) !important;
    line-height: 1.5 !important;
}

.ds-list-icon {
    color: var(--purple-primary) !important;
    font-weight: 700 !important;
    margin-top: 2px !important;
}

@media (max-width: 900px) {
    .ds-curriculum-matrix { grid-template-columns: 1fr !important; gap: 24px !important; }
}
@media (max-width: 600px) {
    .ds-curriculum-card { padding: 32px 24px !important; }
    .ds-mod-title { font-size: 20px !important; }
}
/* ────────────────────────────────────────────────────────────
   FINAL LEAD CAPTURE & FORM
   ──────────────────────────────────────────────────────────── */
.ds-cta-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.ds-cta-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-top: 16px;
  margin-bottom: 24px;
}

.ds-cta-headline em {
  color: var(--purple-primary);
  font-style: normal;
}

/* Form Card */
.ds-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.ds-form-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.ds-form-field {
  margin-bottom: 20px;
}

.ds-form-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.2s ease;
  outline: none;
}

.ds-form-input:focus {
  border-color: var(--purple-primary);
  box-shadow: 0 0 0 4px rgba(139,92,246,0.1);
}

.ds-form-input::placeholder {
  color: var(--text-muted);
}

.ds-form-submit {
  width: 100%;
  margin-top: 12px;
  justify-content: center;
}

.ds-form-trust {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
}

/* Seats Bar */
.ds-seats-bar {
  margin-top: 40px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  max-width: 460px;
}

.ds-seats-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.ds-seats-track {
  width: 100%;
  height: 6px;
  background: var(--canvas);
  border-radius: 3px;
  overflow: hidden;
}

.ds-seats-fill {
  height: 100%;
  background: var(--purple-primary);
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(139,92,246,0.5);
}

/* Mobile Sticky Bar */
.ds-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(9,12,21,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
  .ds-mobile-bar.visible {
    display: flex;
  }
  .ds-form-card {
    padding: 24px;
  }
}
/* ────────────────────────────────────────────────────────────
   MISSING TERMINAL CSS
   ──────────────────────────────────────────────────────────── */
.ds-terminal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.ds-terminal-header {
  background: var(--surface-2);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.ds-terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
}
.ds-terminal-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-left: auto;
}
.ds-terminal-body {
  padding: 32px;
  background: var(--canvas);
}
.ds-terminal-param {
  margin-bottom: 24px;
}
.ds-terminal-param-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.ds-terminal-bool {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--green-valid);
}
.ds-terminal-param-name {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan-data);
  letter-spacing: 0.05em;
}
.ds-terminal-param-desc {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.ds-terminal-sep {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
  opacity: 0.5;
}
.ds-terminal-nested {
  padding: 24px;
  background: rgba(139,92,246,0.03);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: var(--r-sm);
  margin-top: 24px;
}
.ds-terminal-eval-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.ds-terminal-eval-item {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-primary);
}
.ds-terminal-result {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--green-valid);
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}

/* ────────────────────────────────────────────────────────────
   MISSING TOOLS CSS
   ──────────────────────────────────────────────────────────── */
.ds-tools-bar {
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.ds-tools-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.ds-tools-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.ds-tool-logo {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.ds-tool-logo:hover {
  opacity: 1;
  color: var(--text-primary);
}

/* ────────────────────────────────────────────────────────────
   MISSING GAP BARS CSS
   ──────────────────────────────────────────────────────────── */
.ds-gap-zone {
  margin-top: 32px;
}
.ds-gap-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.ds-gap-skill {
  margin-bottom: 16px;
}
.ds-gap-skill-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.ds-gap-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ds-gap-bar-track {
  width: 100%;
  height: 6px;
  background: var(--surface-2);
  border-radius: 3px;
  overflow: hidden;
}
.ds-gap-bar {
  height: 100%;
  border-radius: 3px;
}
.ds-gap-bar--current {
  background: var(--text-muted);
}
.ds-gap-bar--post {
  background: var(--purple-primary);
  box-shadow: 0 0 10px rgba(139,92,246,0.4);
}

/* ────────────────────────────────────────────────────────────
   MISSING FINANCIALS CSS
   ──────────────────────────────────────────────────────────── */
.ds-financials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.ds-invest-card, .ds-assurance-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 40px;
}
.ds-invest-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ds-invest-price {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.ds-invest-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.ds-invest-emi {
  display: inline-block;
  padding: 10px 16px;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: var(--r-sm);
  color: var(--cyan-data);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 40px;
}
.ds-invest-roi {
  background: var(--surface-2);
  border-radius: var(--r-sm);
  padding: 24px;
}
.ds-invest-roi-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}
.ds-invest-roi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
}
.ds-invest-roi-row:last-child {
  margin-bottom: 0;
}
.ds-invest-roi-sep {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

/* ────────────────────────────────────────────────────────────
   MISSING ASSURANCE CSS
   ──────────────────────────────────────────────────────────── */
.ds-assurance-headline {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.ds-assurance-stamp {
  float: right;
  margin: 0 0 20px 20px;
}
.ds-assurance-reqs {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ds-assurance-reqs li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(139,92,246,0.03);
  border: 1px solid rgba(139,92,246,0.1);
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
}
.ds-assurance-num {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--purple-primary);
  margin-top: 2px;
}

/* ────────────────────────────────────────────────────────────
   MISSING COHORT SNAPSHOT CSS
   ──────────────────────────────────────────────────────────── */
.ds-cohort-snapshot {
  margin-top: 64px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  text-align: center;
}
.ds-cohort-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ds-cohort-data {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}
.ds-cohort-num {
  font-family: var(--font-mono);
  color: var(--text-primary);
  font-weight: 600;
}

/* ────────────────────────────────────────────────────────────
   MISSING TIMELINE MODIFIERS
   ──────────────────────────────────────────────────────────── */
.ds-timeline-dot--purple {
  border-color: var(--purple-primary);
  background: var(--purple-dim);
}
.ds-timeline-dot--cyan {
  border-color: var(--cyan-data);
  background: rgba(6,182,212,0.15);
}
.ds-timeline-dot--green {
  border-color: var(--green-valid);
  background: rgba(16,185,129,0.15);
}
.ds-timeline-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

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

/* ─── DS GUARANTEE SECTION ────────────────────────────────────────────── */
.ds-guarantee-card {
  background: var(--surface);
  border: 2px solid rgba(139,92,246,0.35);
  border-radius: var(--r-md);
  padding: 56px 64px;
  position: relative;
  border-left: 6px solid var(--purple-primary);
  margin-top: 56px;
}

@media (max-width: 768px) { .ds-guarantee-card { padding: 36px 28px; } }

.ds-guarantee-stamp {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.ds-stamp-svg {
  flex-shrink: 0;
}

.ds-guarantee-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.ds-guarantee-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 36px;
}

@media (max-width: 768px) { .ds-guarantee-body { grid-template-columns: 1fr; gap: 28px; } }

.ds-guarantee-terms p,
.ds-guarantee-terms li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.72;
}

.ds-guarantee-terms p { margin-bottom: 16px; }

.ds-guarantee-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.ds-guarantee-items li {
  display: flex;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-primary);
}

.ds-guarantee-items .item-num {
  color: var(--purple-primary);
  flex-shrink: 0;
}

.ds-guarantee-box {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.ds-guarantee-box .box-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}

.ds-guarantee-pct {
  font-family: var(--font-mono);
  font-size: clamp(48px, 6vw, 64px);
  color: var(--purple-primary);
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.ds-guarantee-box .box-sub {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 220px;
}

.ds-guarantee-box .box-caveat {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

.ds-guarantee-footer {
  text-align: center;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.ds-guarantee-footer a {
  color: var(--purple-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── DS BENTO GRID ─────────────────────────────────────────────────────── */
.ds-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

@media (max-width: 900px) { .ds-bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .ds-bento-grid { grid-template-columns: 1fr; } }

.ds-bento-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.ds-bento-tile:hover {
  border-color: var(--purple-primary);
  transform: translateY(-2px);
}

.ds-bento-icon {
  width: 40px;
  height: 40px;
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--purple-primary);
}

.ds-bento-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.ds-bento-value {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}

.ds-bento-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

