/* ============================================================
   Zero To Hero Academy — Components
   components.css: header · nav · cards · buttons · forms · footer
   ============================================================ */

/* ── Site Header / Navigation ────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13,13,20,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition-slow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: var(--space-4);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-purple-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-sm);
  color: var(--bg);
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--white);
}

.nav__logo-text span {
  color: var(--yellow);
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}

.nav__links a {
  display: block;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav__links a[aria-current="page"] {
  color: var(--white);
}

/* Nav CTA */
.nav__cta {
  flex-shrink: 0;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color var(--transition);
}

.nav__hamburger:hover {
  border-color: var(--purple-light);
}

.nav__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: var(--space-4) var(--space-6) var(--space-6);
  z-index: 99;
}

.nav__mobile.open {
  display: block;
}

.nav__mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.nav__mobile-links a {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}

.nav__mobile-links a:hover,
.nav__mobile-links a[aria-current="page"] {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

/* Page offset for fixed header */
.page-content {
  padding-top: 4rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
}

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

/* Primary – yellow */
.btn--primary {
  background: var(--yellow);
  color: var(--bg);
  border-color: var(--yellow);
}

.btn--primary:hover {
  background: transparent;
  color: var(--yellow);
  box-shadow: 0 0 24px rgba(245,200,66,0.3);
}

/* Secondary – purple */
.btn--secondary {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.btn--secondary:hover {
  background: transparent;
  color: var(--purple-light);
  border-color: var(--purple-light);
  box-shadow: 0 0 24px rgba(124,58,237,0.3);
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--border-hover);
}

.btn--ghost:hover {
  background: rgba(168,85,247,0.08);
  border-color: var(--purple-light);
  color: var(--white);
}

/* Solid teal */
.btn--teal {
  background: var(--teal);
  color: var(--bg);
  border-color: var(--teal);
}

.btn--teal:hover {
  background: transparent;
  color: var(--teal);
  box-shadow: 0 0 24px rgba(45,212,191,0.3);
}

/* Ghost teal */
.btn--ghost-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn--ghost-teal:hover {
  background: rgba(45,212,191,0.1);
  box-shadow: 0 0 24px rgba(45,212,191,0.2);
}

/* Sizes */
.btn--lg {
  padding: 1rem 2rem;
  font-size: var(--text-base);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: var(--text-xs);
}

/* Button group */
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

/* ── Badges / Tags ───────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.25rem 0.75rem;
  font-size: var(--text-xs);
  font-weight: 600;
  font-family: var(--font-display);
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge--purple {
  background: rgba(124,58,237,0.15);
  border-color: rgba(168,85,247,0.3);
  color: var(--purple-light);
}

.badge--yellow {
  background: rgba(245,200,66,0.12);
  border-color: rgba(245,200,66,0.3);
  color: var(--yellow);
}

.badge--teal {
  background: rgba(45,212,191,0.12);
  border-color: rgba(45,212,191,0.3);
  color: var(--teal);
}

.badge--white {
  background: rgba(241,240,248,0.08);
  border-color: rgba(241,240,248,0.12);
  color: var(--muted);
}

/* ── Section Headers ─────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-header__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: var(--space-3);
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-4);
  line-height: 1.1;
}

.section-header__desc {
  font-size: var(--text-lg);
  color: var(--muted);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 32px rgba(124,58,237,0.12);
}

.card--elevated {
  background: var(--bg3);
}

.card--featured {
  background: var(--bg2);
  border: 1px solid rgba(168,85,247,0.25);
  box-shadow: 0 0 40px rgba(124,58,237,0.08);
}

.card--featured:hover {
  border-color: rgba(168,85,247,0.5);
  box-shadow: 0 0 60px rgba(124,58,237,0.15);
}

/* Card with gradient top border */
.card--gradient-border {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.card--gradient-border::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-purple-teal);
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(168,85,247,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
  color: var(--purple-light);
}

.card__icon--teal {
  background: rgba(45,212,191,0.12);
  border-color: rgba(45,212,191,0.2);
  color: var(--teal);
}

.card__icon--yellow {
  background: rgba(245,200,66,0.12);
  border-color: rgba(245,200,66,0.2);
  color: var(--yellow);
}

.card__icon--blue {
  background: rgba(0,120,212,0.12);
  border-color: rgba(0,120,212,0.2);
  color: #4da6ff;
}

.card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.card__desc {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.65;
}

/* Program tier card */
.tier-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.tier-card:hover {
  border-color: rgba(168,85,247,0.3);
  box-shadow: 0 0 40px rgba(124,58,237,0.1);
}

.tier-card__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1;
  background: var(--grad-purple-teal);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.3;
  position: absolute;
  top: var(--space-4);
  right: var(--space-6);
}

.tier-card__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.tier-card__label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.tier-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--white);
}

.tier-card__desc {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.65;
}

.tier-card__topics {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

/* ── Inner Circle Feature List ───────────────────────────── */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  list-style: none;
}

.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--muted);
}

.feature-list__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(45,212,191,0.15);
  border: 1px solid rgba(45,212,191,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 0.75rem;
  margin-top: 0.1rem;
}

/* ── Headshot Component ──────────────────────────────────── */
.headshot {
  position: relative;
  display: inline-flex;
}

.headshot__img {
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--purple-light);
  display: block;
}

.headshot--glow::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 70%);
  z-index: -1;
}

.headshot--ring {
  padding: 3px;
  background: var(--grad-purple-teal);
  border-radius: 50%;
}

.headshot--ring .headshot__img {
  border: 2px solid var(--bg);
}

/* Inner wrapper — clips image to circle, provides dark bg for transparent PNGs */
.headshot__inner {
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg);
  border: 2px solid var(--bg);
  width: 100%;
  height: 100%;
  display: block;
}

.headshot__inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
}

/* ── Stats Bar ───────────────────────────────────────────── */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: var(--space-6);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.stat__value {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1;
}

.stat__label {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── YouTube Embeds ──────────────────────────────────────── */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.yt-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.yt-card:hover {
  border-color: rgba(255,0,0,0.3);
  box-shadow: 0 0 30px rgba(255,0,0,0.08);
}

.yt-card__embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  overflow: hidden;
  background: var(--bg3);
}

.yt-card__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* YouTube facade (click-to-load) */
.yt-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  display: block;
}

.yt-facade__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-facade__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,20,0.4);
  transition: background var(--transition);
}

.yt-facade:hover .yt-facade__overlay,
.yt-facade:focus-visible .yt-facade__overlay {
  background: rgba(13,13,20,0.15);
}

.yt-facade__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(220,40,40,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
  pointer-events: none;
}

.yt-facade:hover .yt-facade__play,
.yt-facade:focus-visible .yt-facade__play {
  background: rgb(220,40,40);
  transform: translate(-50%, -50%) scale(1.08);
}

.yt-facade__play svg {
  margin-left: 4px;
}

.yt-card__body {
  padding: var(--space-4);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.yt-card__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.yt-card__desc {
  font-size: var(--text-sm);
  color: var(--muted);
  flex: 1;
}

/* ── Ebook Preview Card ──────────────────────────────────── */
.ebook-card {
  background: var(--bg3);
  border: 1px solid rgba(168,85,247,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.ebook-card__cover {
  background: linear-gradient(135deg, var(--bg3) 0%, #1e1030 100%);
  padding: var(--space-8);
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.ebook-card__cover::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--purple);
  filter: blur(60px);
  opacity: 0.2;
}

.ebook-card__cover::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--teal);
  filter: blur(50px);
  opacity: 0.15;
}

.ebook-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--white);
  position: relative;
  z-index: 1;
  line-height: 1.2;
  margin-bottom: var(--space-2);
}

.ebook-card__subtitle {
  font-size: var(--text-sm);
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.ebook-card__body {
  padding: var(--space-6);
}

.ebook-card__toc {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.ebook-card__toc li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--muted);
}

.ebook-card__toc li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
  flex-shrink: 0;
}

/* ── Inner Circle Hero ───────────────────────────────────── */
.ic-hero {
  position: relative;
  padding-block: var(--space-32);
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(124,58,237,0.15) 0%, transparent 60%);
}

.ic-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: var(--space-6);
}

.ic-badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* ── Accordion (FAQ) ─────────────────────────────────────── */
.accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.accordion__item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.accordion__item.open {
  border-color: rgba(168,85,247,0.3);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 1.25rem var(--space-6);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}

.accordion__trigger:hover {
  color: var(--purple-light);
}

.accordion__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(168,85,247,0.1);
  border: 1px solid rgba(168,85,247,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  font-size: var(--text-sm);
  transition: transform var(--transition), background var(--transition);
}

.accordion__item.open .accordion__icon {
  transform: rotate(45deg);
  background: rgba(168,85,247,0.2);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.accordion__content-inner {
  padding: 0 var(--space-6) 1.25rem;
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.7;
}

/* ── Contact Form ────────────────────────────────────────── */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form__label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
}

.form__label span[aria-label="required"] {
  color: var(--yellow);
  margin-left: 2px;
}

.form__input,
.form__select,
.form__textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: var(--text-base);
  color: var(--white);
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(160,160,192,0.5);
}

.form__input:hover,
.form__select:hover,
.form__textarea:hover {
  border-color: rgba(168,85,247,0.3);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
  border-color: var(--purple-light);
}

.form__textarea {
  resize: vertical;
  min-height: 140px;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a0a0c0' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__hint {
  font-size: var(--text-xs);
  color: var(--muted);
}

/* ── Social Links ────────────────────────────────────────── */
.social-links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  list-style: none;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 1rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: rgba(168,85,247,0.12);
  border-color: rgba(168,85,247,0.3);
  color: var(--white);
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding-block: var(--space-12) var(--space-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-8);
}

.footer__brand p {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.65;
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--muted);
  transition: color var(--transition);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: var(--text-sm);
  color: var(--muted);
}

/* ── Responsive: Nav ─────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }
}

/* ── Community gallery grid ──────────────────────────────── */
@media (max-width: 900px) {
  /* 4-col → 2-col */
  [aria-label="Program session photos"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  /* 2-col → 1-col */
  [aria-label="Program session photos"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Responsive: Stats bar ───────────────────────────────── */
@media (max-width: 768px) {
  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .yt-grid {
    grid-template-columns: 1fr;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }
}

@media (max-width: 480px) {
  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Credential Badges Grid ──────────────────────────────── */
.creds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-3);
}

.cred-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  transition: border-color var(--transition);
}

.cred-item:hover {
  border-color: rgba(168,85,247,0.3);
}

.cred-item__icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.cred-item__name {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}

/* ── Hero Section ────────────────────────────────────────── */
.hero {
  position: relative;
  padding-block: var(--space-24) var(--space-16);
  overflow: hidden;
}

.hero--centered {
  text-align: center;
}

.hero--centered .hero__content {
  max-width: 720px;
  margin-inline: auto;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-4);
}

.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}

.hero__desc {
  font-size: clamp(var(--text-base), 1.5vw, var(--text-lg));
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: var(--space-8);
}

.hero--centered .hero__desc {
  margin-inline: auto;
}

/* ============================================================
   Variant banner (only on index-a / index-b preview)
   ============================================================ */

.variant-banner {
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.18), rgba(45, 212, 191, 0.12));
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
  font-size: 0.8rem;
  text-align: center;
  color: var(--white);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.variant-banner a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.variant-banner a:hover { color: var(--purple-light); }

/* ============================================================
   Speaker card (rotating roster on homepage variants)
   ============================================================ */

.speaker-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.speaker-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-3px);
}

.speaker-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(124, 58, 237, 0.3);
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(168, 85, 247, 0.4);
}

.speaker-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.speaker-card__avatar--purple { background: linear-gradient(135deg, var(--purple), var(--purple-light)); }
.speaker-card__avatar--teal   { background: linear-gradient(135deg, #0e7490, var(--teal)); }
.speaker-card__avatar--yellow { background: linear-gradient(135deg, #b45309, var(--yellow)); color: var(--bg); }
.speaker-card__avatar--mixed  { background: linear-gradient(135deg, var(--purple), var(--teal)); }

.speaker-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

.speaker-card__role {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.speaker-card__topic {
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
  padding-top: 0.4rem;
  border-top: 1px solid var(--border);
  width: 100%;
  margin-top: 0.25rem;
}

/* ============================================================
   Speaker marquee (horizontal scrolling band - variant B)
   ============================================================ */

.speaker-marquee {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  overflow: hidden;
  position: relative;
}

.speaker-marquee__label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.speaker-marquee__track {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.speaker-marquee__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 600;
}

.speaker-marquee__chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(45, 212, 191, 0.6);
}

/* ============================================================
   Dual-audience track cards (variant B)
   ============================================================ */

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.audience-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.audience-card--starter::before,
.audience-card--seasoned::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.audience-card--starter::before {
  background: radial-gradient(ellipse at top left, rgba(45, 212, 191, 0.1), transparent 60%);
}

.audience-card--seasoned::before {
  background: radial-gradient(ellipse at top right, rgba(168, 85, 247, 0.12), transparent 60%);
}

.audience-card__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}

.audience-card--starter  .audience-card__eyebrow { color: var(--teal); }
.audience-card--seasoned .audience-card__eyebrow { color: var(--purple-light); }

.audience-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  position: relative;
  line-height: 1.2;
}

.audience-card__desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
}

.audience-card__list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.audience-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--white);
}

.audience-card__list li::before {
  content: '\2713';
  flex-shrink: 0;
  font-weight: 700;
  margin-top: 0.05rem;
}

.audience-card--starter  .audience-card__list li::before { color: var(--teal); }
.audience-card--seasoned .audience-card__list li::before { color: var(--purple-light); }

@media (max-width: 768px) {
  .audience-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .audience-card { padding: 1.75rem 1.5rem; }
}

/* ============================================================
   Ebook cover image (photo of the printed book)
   ============================================================ */

.ebook-cover-figure {
  margin: 0;
  display: flex;
  justify-content: center;
}

.ebook-cover-image {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 30px 60px rgba(124, 58, 237, 0.35))
          drop-shadow(0 8px 20px rgba(0, 0, 0, 0.5));
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}

.ebook-cover-image:hover {
  transform: rotate(0deg) scale(1.02);
}

@media (max-width: 768px) {
  .ebook-cover-image {
    max-width: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ebook-cover-image,
  .ebook-cover-image:hover {
    transform: none;
    transition: none;
  }
}

/* ============================================================
   Flag icons — language pills
   ============================================================ */

.flag-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 2rem 2.5rem 1.75rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 180px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.flag-row__flags {
  padding: 0.25rem 0 0.5rem;
}

.flag-row:hover {
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-2px);
}

.flag-row__flags {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.flag-icon {
  width: 32px;
  height: 24px;
  display: block;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  object-fit: cover;
}

.flag-row__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
}

.flag-row__note {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   GitHub / Open-source repo card
   ============================================================ */

.repo-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.repo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), transparent 60%);
  pointer-events: none;
}

.repo-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
}

.repo-card__head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  position: relative;
}

.repo-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--purple-light);
}

.repo-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  margin: 0;
}

.repo-card__subtitle {
  font-size: 0.85rem;
  color: var(--muted);
}

.repo-card__desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  position: relative;
}

.repo-card__templates {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  position: relative;
}

/* ============================================================
   Testimonial card
   ============================================================ */

.testimonial-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--purple-light);
  opacity: 0.3;
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-2px);
}

.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
  padding-top: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.testimonial-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ============================================================
   Microsoft product icon (in tier cards)
   ============================================================ */

.ms-product-icon {
  width: 48px;
  height: 48px;
  display: block;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-sm);
}

@media (max-width: 768px) {
  .ms-product-icon { width: 40px; height: 40px; }
  .flag-row { min-width: 140px; }
}

/* ── Responsive layout helpers ──────────────────────────────
   Replace hard-coded inline grid styles so pages stack on mobile.
───────────────────────────────────────────────────────────── */
.l-hero-grid    { display:grid; grid-template-columns:1fr 360px; gap:4rem; align-items:center; }
.l-content-grid { display:grid; grid-template-columns:1fr 400px; gap:4rem; align-items:center; }
.l-2col-grid    { display:grid; grid-template-columns:1fr 1fr;   gap:4rem; align-items:start; }
.l-aside-grid   { display:grid; grid-template-columns:200px 1fr; gap:3rem; align-items:center; }
.l-photo-grid   { display:grid; grid-template-columns:repeat(4,1fr); gap:0.75rem; }
.l-card-split   { display:grid; grid-template-columns:1fr auto;  gap:3rem; align-items:center; }

@media (max-width: 768px) {
  .l-hero-grid,
  .l-content-grid,
  .l-2col-grid,
  .l-aside-grid,
  .l-card-split  { grid-template-columns:1fr; gap:2rem; }
  .l-photo-grid  { grid-template-columns:repeat(2,1fr); }
  .l-card-split > :last-child { display:flex; justify-content:center; }
}
@media (max-width: 480px) {
  .l-photo-grid  { grid-template-columns:1fr 1fr; }
}

/* ── Members Dashboard Shell ────────────────────────────────── */
.dashboard-shell {
  display: flex;
  min-height: 100vh;
  background: var(--bg);
}

.dashboard-sidebar {
  width: 240px;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
  transition: transform 0.3s ease;
}
.dashboard-sidebar__logo {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.dashboard-sidebar__logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
}
.dashboard-sidebar__logo-text span { color: var(--purple-light); }

.dashboard-nav {
  flex: 1;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.dashboard-nav__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1.5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
  border-left: 3px solid transparent;
}
.dashboard-nav__link:hover { color: var(--white); background: rgba(168,85,247,0.08); }
.dashboard-nav__link.is-active {
  color: var(--purple-light);
  background: rgba(168,85,247,0.12);
  border-left-color: var(--purple-light);
}
.dashboard-nav__icon { width: 17px; height: 17px; flex-shrink: 0; opacity: 0.75; }
.dashboard-nav__link.is-active .dashboard-nav__icon { opacity: 1; }

.dashboard-sidebar__footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dashboard-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--grad-purple-teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.85rem;
  color: var(--white);
  flex-shrink: 0;
}
.dashboard-user-info { flex: 1; min-width: 0; }
.dashboard-user-email {
  font-size: 0.72rem; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dashboard-logout {
  font-size: 0.72rem; color: var(--muted);
  background: none; border: none; padding: 0;
  cursor: pointer; font-family: var(--font-body);
  transition: color var(--transition);
}
.dashboard-logout:hover { color: var(--white); }

/* Main content area */
.dashboard-main { margin-left: 240px; flex: 1; display: flex; flex-direction: column; min-height: 100vh; }
.dashboard-topbar {
  height: 60px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 2rem;
  background: var(--bg);
  position: sticky; top: 0; z-index: 10;
  gap: 1rem;
}
.dashboard-topbar__title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--white); }
.dashboard-content { padding: 2rem; flex: 1; max-width: 960px; }

/* Mobile toggle button */
.dashboard-toggle {
  display: none;
  background: none; border: none;
  color: var(--white); cursor: pointer;
  padding: 0.25rem;
}

/* Dashboard content cards */
.dashboard-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-decoration: none;
  display: block;
  transition: border-color var(--transition), transform var(--transition);
}
.dashboard-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.dashboard-card__icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1rem;
}
.dashboard-card__title { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--white); margin-bottom: 0.3rem; }
.dashboard-card__desc  { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* Chapter cards */
.chapter-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1.25rem;
  transition: border-color var(--transition);
}
.chapter-card:hover { border-color: var(--border-hover); }
.chapter-card--locked { opacity: 0.4; }
.chapter-card__num { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--purple-light); flex-shrink: 0; width: 2.25rem; }
.chapter-card__body { flex: 1; }
.chapter-card__title { font-family: var(--font-display); font-weight: 700; font-size: 0.9rem; color: var(--white); margin-bottom: 0.2rem; }
.chapter-card__desc  { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

/* Resource cards */
.resource-card {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  transition: border-color var(--transition);
}
.resource-card:hover { border-color: var(--border-hover); }
.resource-card__icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(168,85,247,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0;
}
.resource-card__body { flex: 1; min-width: 0; }
.resource-card__name { font-family: var(--font-display); font-weight: 600; font-size: 0.875rem; color: var(--white); margin-bottom: 0.15rem; }
.resource-card__meta { font-size: 0.75rem; color: var(--muted); }

/* Welcome banner */
.dashboard-welcome {
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(45,212,191,0.1));
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}
.dashboard-welcome__title { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--white); margin-bottom: 0.35rem; }
.dashboard-welcome__sub   { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* Responsive */
@media (max-width: 768px) {
  .dashboard-sidebar { transform: translateX(-100%); }
  .dashboard-sidebar.is-open { transform: translateX(0); box-shadow: 8px 0 32px rgba(0,0,0,0.5); }
  .dashboard-main { margin-left: 0; }
  .dashboard-toggle { display: flex; }
  .dashboard-topbar { padding: 0 1rem; }
  .dashboard-content { padding: 1.25rem; }
}
