:root {
  --dct-purple: #178BE7;
  --dct-pink: #0F6EDB;
  --dct-black: #080b1a;
  --dct-white: #ffffff;
  --dct-blue: #2e90ff;
  --dct-soft: #eef2ff;
  --dct-border: #D6E8FA;
  --dct-ink: #11152d;
  --dct-muted: #4a567d;
}

.platform-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 2.5rem clamp(1rem, 4vw, 3rem) 4rem;
  font-family: "Source Sans 3", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.platform-hero {
  background:
    linear-gradient(135deg, rgba(23, 139, 231, 0.08), rgba(15, 110, 219, 0.05)),
    #ffffff;
  color: var(--dct-ink);
  border-radius: 28px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--dct-border);
  box-shadow: 0 18px 42px rgba(17, 21, 45, 0.08);
}

.platform-hero h1 {
  font-family: "Merriweather", "Georgia", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.8rem;
  letter-spacing: 0.01em;
}

.platform-hero p {
  max-width: 900px;
  color: var(--dct-muted);
  line-height: 1.7;
}

.path-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.path-card,
.platform-card {
  background: var(--dct-white);
  border: 1px solid var(--dct-border);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 10px 24px rgba(23, 29, 63, 0.07);
}

.path-card h3,
.platform-card h3 {
  font-family: "Merriweather", "Georgia", serif;
  color: var(--dct-ink);
  margin-bottom: 0.5rem;
}

.path-card p,
.platform-card p {
  color: var(--dct-muted);
  margin-bottom: 0.85rem;
  line-height: 1.7;
}

.pill-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.pill {
  background: #EAF4FF;
  color: #0F6EDB;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.cta {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.cta.primary {
  background: linear-gradient(135deg, var(--dct-purple), var(--dct-pink));
  color: var(--dct-white);
  box-shadow: 0 10px 24px rgba(23, 139, 231, 0.18);
}

.cta.secondary {
  background: #EAF4FF;
  color: #2b2f55;
  border-color: #C8DFFC;
}

.section-head {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.section-head h2 {
  font-family: "Merriweather", "Georgia", serif;
  font-size: 1.45rem;
  color: var(--dct-ink);
}

.pathway-card {
  position: relative;
  overflow: hidden;
}

.pathway-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0F6EDB, #2e90ff);
}

.pathway-price {
  font-weight: 700;
  color: #0F6EDB;
  margin-top: 0.7rem;
}

.onboarding-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.onboarding-intro {
  margin-bottom: 1rem;
  color: #2f446c;
}

.onboarding-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: onboarding;
  display: grid;
  gap: 0.85rem;
}

.onboarding-checklist li {
  counter-increment: onboarding;
  border: 1px solid #d8e5fb;
  border-radius: 14px;
  padding: 0.9rem 1rem 0.85rem 3rem;
  position: relative;
  background: #ffffff;
}

.onboarding-checklist li::before {
  content: counter(onboarding);
  position: absolute;
  left: 0.85rem;
  top: 0.95rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: #0F6EDB;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.onboarding-checklist h3 {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
}

.onboarding-checklist p {
  margin: 0;
}

.section-head p {
  color: var(--dct-muted);
}

.list-clean {
  list-style: none;
  padding-left: 0;
}

.list-clean li {
  padding: 0.65rem 0;
  border-bottom: 1px dashed #e4e8f8;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(17, 21, 45, 0.08);
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid #edf1ff;
}

.data-table th {
  background: linear-gradient(135deg, #1a224b, #0F6EDB);
  color: #f4f7ff;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.toolbar input,
.toolbar select {
  border: 1px solid #cfd7f6;
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  font-size: 0.95rem;
}

.poster-meta {
  font-size: 0.88rem;
  color: var(--dct-muted);
}

.dashboard-shell {
  background: linear-gradient(180deg, #ffffff 0%, #F3F9FF 100%);
  border-radius: 24px;
  padding: 1.25rem;
  border: 1px solid var(--dct-border);
  box-shadow: 0 10px 24px rgba(17, 21, 45, 0.06);
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.visual-card {
  background: #ffffff;
  border: 1px solid var(--dct-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(17, 21, 45, 0.08);
}

.visual-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.visual-card-body {
  padding: 0.95rem;
}

.visual-card h3 {
  color: var(--dct-ink);
  margin-bottom: 0.4rem;
}

.visual-card p {
  color: var(--dct-muted);
  margin-bottom: 0.7rem;
}

@media (max-width: 800px) {
  .platform-hero {
    padding: 1.25rem;
  }
}
