:root {
  --navy: #0b1f2a;
  --teal: #1fa3a6;
  --teal-soft: #e4f6f6;
  --ink: #1a1a1a;
  --muted: #5f6b73;
  --bg: #f4f7f9;
  --white: #ffffff;
  --line: #dde6eb;
  --danger: #bd2f2f;
  --success: #1f8d5d;
  --warning: #b87b15;
  --shadow: 0 12px 30px rgba(11, 31, 42, 0.1);
  --radius: 16px;
  --radius-small: 10px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: Inter, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.65rem;
  line-height: 1.2;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.95rem;
}

.brand-text {
  color: var(--navy);
  font-size: 1rem;
}

.site-nav {
  display: inline-flex;
  justify-content: center;
  gap: 1.1rem;
}

.nav-link {
  padding: 0.42rem 0.65rem;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  background: #edf3f6;
  color: var(--navy);
}

.nav-user {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.role-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--navy);
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.72rem 1.2rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(11, 31, 42, 0.2);
}

.btn-primary:hover {
  background: #112e3e;
}

.btn-accent {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(31, 163, 166, 0.3);
}

.btn-accent:hover {
  background: #168f91;
}

.btn-outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
}

.btn-ghost {
  border-color: transparent;
  background: #eaf4f8;
  color: var(--navy);
}

.btn-small {
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(31, 163, 166, 0.2), transparent 40%),
    radial-gradient(circle at 88% 88%, rgba(11, 31, 42, 0.13), transparent 45%),
    linear-gradient(120deg, #f8fcfd 0%, #eef5f8 65%, #f8fbfc 100%);
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -60px -40px auto;
  width: 230px;
  height: 230px;
  border-radius: 42% 58% 47% 53% / 53% 40% 60% 47%;
  background: rgba(31, 163, 166, 0.1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: 4.5rem 0 4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--teal-soft);
  color: #0d6f71;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--navy);
  max-width: 14ch;
}

.hero p {
  max-width: 56ch;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1.1rem;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.note-chip {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 600;
}

.preview-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.preview-header strong {
  color: var(--navy);
}

.preview-chip {
  border-radius: 999px;
  background: #e6f7f7;
  color: #0d7779;
  padding: 0.24rem 0.58rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.preview-kpi {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.mini-kpi {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem;
  background: #f9fcfd;
}

.mini-kpi span {
  display: block;
  font-size: 0.74rem;
  color: var(--muted);
}

.mini-kpi strong {
  font-size: 1.1rem;
  color: var(--navy);
}

.progress-list {
  display: grid;
  gap: 0.6rem;
}

.progress-line {
  display: grid;
  gap: 0.36rem;
}

.progress-line small {
  color: var(--muted);
}

.progress-track {
  background: #dce7ee;
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal) 0%, #6bd4d6 100%);
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 2rem;
}

.logo-item {
  border: 1px dashed var(--line);
  border-radius: 10px;
  text-align: center;
  padding: 0.6rem;
  font-size: 0.8rem;
  color: #74828a;
  background: rgba(255, 255, 255, 0.65);
}

.section {
  padding: 4.4rem 0;
}

.section-tight {
  padding: 3.1rem 0;
}

.section-title {
  margin-bottom: 1.3rem;
  color: var(--navy);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.section-intro {
  max-width: 66ch;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.surface {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(11, 31, 42, 0.06);
}

.surface.pad {
  padding: 1.2rem;
}

.icon-dot {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #e8f8f8;
  color: #0e7374;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.metric {
  background: linear-gradient(180deg, #f3fbfb 0%, #ffffff 100%);
  border: 1px solid #d7efef;
  border-radius: 14px;
  padding: 1rem;
}

.metric strong {
  color: var(--navy);
  font-size: 1.5rem;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.step-card {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.step-index {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f7173;
  background: #e6f7f7;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.audience-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.highlight-band {
  background: linear-gradient(120deg, #0d2735 0%, #13394d 70%, #0d2735 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
}

.highlight-band p {
  color: rgba(255, 255, 255, 0.82);
}

#site-footer {
  background: #0d1d27;
  color: #e6edf2;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 1.4rem;
  padding: 2.2rem 0 1.4rem;
}

.footer-grid h4,
.footer-grid h5 {
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.footer-grid p {
  color: #b7c7d2;
}

.footer-grid a {
  display: block;
  color: #c4d3dc;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-bottom {
  padding: 0.9rem 0 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: #9cb3c1;
  font-size: 0.84rem;
}

.page-hero {
  background: linear-gradient(120deg, #f1f7fa 0%, #f8fbfc 100%);
  border-bottom: 1px solid var(--line);
  padding: 3rem 0 2.5rem;
}

.page-hero h1 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.page-hero p {
  max-width: 72ch;
}

.stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 1.2rem 0 1.4rem;
}

.step-pill {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #6f7d86;
}

.step-pill.is-active {
  background: #e7f8f8;
  border-color: #bee9ea;
  color: #0d7072;
}

.funnel-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1.2rem;
  box-shadow: 0 10px 24px rgba(11, 31, 42, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfdfe;
  padding: 0.62rem 0.72rem;
  font: inherit;
  color: var(--ink);
}

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

.field.full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.quiz-list {
  display: grid;
  gap: 0.9rem;
}

.quiz-question {
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fcfefe;
}

.options {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.55rem;
}

.option-line {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.93rem;
  color: #3f4d56;
}

.decision-panel {
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  margin: 0.9rem 0;
}

.decision-panel.accepted {
  background: #eaf9f1;
  border-color: #c0ead2;
}

.decision-panel.waitlist {
  background: #fff7e8;
  border-color: #f2dfba;
}

.decision-panel.rejected {
  background: #fdeeed;
  border-color: #f0c9c6;
}

.result-chip {
  display: inline-block;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.result-chip.accepted {
  background: #d0f2e1;
  color: #146845;
}

.result-chip.waitlist {
  background: #faebca;
  color: #925d0e;
}

.result-chip.rejected {
  background: #f6d6d3;
  color: #8f2626;
}

.payment-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.path-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.path-card strong {
  color: var(--navy);
}

.hidden {
  display: none !important;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 1rem;
  margin-top: 1.2rem;
}

.sidebar {
  background: #102733;
  color: #ecf2f6;
  border-radius: var(--radius);
  padding: 1rem;
  position: sticky;
  top: 90px;
  align-self: start;
}

.sidebar h3 {
  margin-bottom: 0.8rem;
}

.sidebar a {
  display: block;
  color: #bfd2dd;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.sidebar a:hover {
  color: #ffffff;
}

.dashboard-main {
  display: grid;
  gap: 1rem;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.kpi-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: var(--white);
}

.kpi-card span {
  color: var(--muted);
  font-size: 0.8rem;
}

.kpi-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.5rem;
  margin-top: 0.3rem;
}

.score-ring {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 8px solid #d8eced;
  border-top-color: var(--teal);
  display: grid;
  place-items: center;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 0.68rem 0.55rem;
  text-align: left;
  font-size: 0.9rem;
}

th {
  color: var(--navy);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge {
  display: inline-block;
  border-radius: 999px;
  padding: 0.22rem 0.58rem;
  font-size: 0.73rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.badge.ready {
  background: #e5f8ee;
  border-color: #bde7cc;
  color: #1a794f;
}

.badge.pool {
  background: #edf4fa;
  border-color: #cfe1ed;
  color: #28506a;
}

.badge.pending {
  background: #fff4de;
  border-color: #f3deb1;
  color: #925d0e;
}

.bar-grid {
  display: grid;
  gap: 0.65rem;
}

.bar-row {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 0.6rem;
  align-items: center;
}

.bar-row span {
  font-size: 0.86rem;
  color: var(--muted);
}

.bar-track {
  height: 10px;
  border-radius: 999px;
  background: #deeaef;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1fa3a6 0%, #78d6d8 100%);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.62rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: #4e5d67;
  background: #fbfdff;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.candidate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.candidate-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 1rem;
}

.candidate-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 0.5rem;
}

.candidate-meta {
  font-size: 0.83rem;
  color: var(--muted);
}

.notice {
  border: 1px solid var(--line);
  background: #f8fbfd;
  border-radius: 12px;
  padding: 0.8rem;
  color: #43525c;
  font-size: 0.9rem;
}

.notice.ok {
  background: #ebf9f1;
  border-color: #c9ebd8;
  color: #1a6f49;
}

.notice.warn {
  background: #fff8ec;
  border-color: #f4e4c4;
  color: #8d5a10;
}

.notice.error {
  background: #fdeeed;
  border-color: #f1ccc9;
  color: #8b2f2f;
}

.empty {
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 1.2rem;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .hero-grid,
  .card-grid,
  .audience-split,
  .dashboard-shell,
  .candidate-grid,
  .payment-split,
  .metric-strip,
  .kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .filter-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav-shell {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand toggle"
      "nav nav"
      "user user";
  }

  .brand {
    grid-area: brand;
  }

  .mobile-toggle {
    display: inline-flex;
    justify-self: end;
    grid-area: toggle;
  }

  .site-nav {
    display: none;
    grid-area: nav;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 0.25rem 0 0.5rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-user {
    grid-area: user;
    justify-content: flex-start;
    padding-bottom: 0.7rem;
  }

  .hero-grid,
  .card-grid,
  .card-grid.two,
  .audience-split,
  .dashboard-shell,
  .candidate-grid,
  .payment-split,
  .metric-strip,
  .how-grid,
  .kpi-grid,
  .footer-grid,
  .stepper,
  .form-grid,
  .logo-strip,
  .highlight-band {
    grid-template-columns: 1fr;
  }

  .bar-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .sidebar {
    position: static;
  }
}

/* Home Command Center Layout */
.home-command-wrap {
  min-height: 100vh;
  background: #f5f4f1;
  display: flex;
  flex-direction: column;
}

.home-topbar {
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.home-topbar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-back-link {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.15rem 0.35rem;
}

.home-back-link:hover {
  color: var(--white);
}

.home-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--teal);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.home-topbar-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
}

.home-topbar-subtitle {
  margin: 0;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.42);
}

.home-topbar-right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.home-pending-badge {
  background: #dc2626;
  color: var(--white);
  border-radius: 999px;
  font-size: 0.72rem;
  padding: 0.24rem 0.64rem;
  font-weight: 800;
}

.home-user-name {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.home-shell {
  flex: 1;
  min-height: 0;
  display: flex;
}

.home-sidebar {
  width: 220px;
  background: var(--white);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem;
  gap: 1rem;
}

.home-tab-rail {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.home-tab-btn {
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.72rem 0.75rem;
  border-radius: 12px;
  text-align: left;
  color: #627079;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.home-tab-btn:hover {
  background: #f0f6f9;
  color: var(--navy);
}

.home-tab-btn.is-active {
  background: var(--navy);
  color: var(--white);
}

.home-tab-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  border: 1px solid rgba(11, 31, 42, 0.1);
  background: rgba(11, 31, 42, 0.04);
  font-weight: 800;
}

.home-tab-btn.is-active .home-tab-icon {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.home-tab-label {
  flex: 1;
}

.home-tab-badge {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fee2e2;
  color: #b91c1c;
  font-size: 0.68rem;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.home-tab-badge.active {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.home-sidebar-footer {
  display: grid;
  gap: 0.5rem;
}

.home-main {
  flex: 1;
  min-width: 0;
  overflow-y: auto;
  padding: 1.1rem;
}

.home-loading {
  display: grid;
  place-items: center;
  min-height: 280px;
}

.home-spinner {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 4px solid rgba(31, 163, 166, 0.2);
  border-top-color: var(--teal);
  animation: home-spin 0.8s linear infinite;
}

@keyframes home-spin {
  to {
    transform: rotate(360deg);
  }
}

.home-content {
  display: grid;
  gap: 1rem;
}

.home-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 8px 20px rgba(11, 31, 42, 0.06);
}

.home-panel h2,
.home-panel h3 {
  color: var(--navy);
}

.home-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.home-kpi-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
  background: #fbfdff;
}

.home-kpi-card span {
  color: var(--muted);
  font-size: 0.76rem;
}

.home-kpi-card strong {
  display: block;
  margin-top: 0.28rem;
  color: var(--navy);
  font-size: 1.3rem;
}

.home-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.9rem;
}

.home-list-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  background: #fcfeff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.home-list-item strong {
  color: var(--navy);
  font-size: 0.9rem;
}

.home-list-item p {
  margin: 0;
  font-size: 0.8rem;
}

@media (max-width: 980px) {
  .home-sidebar {
    width: 78px;
    padding: 0.6rem 0.45rem;
  }

  .home-tab-label,
  .home-tab-badge,
  .home-user-name {
    display: none;
  }

  .home-tab-btn {
    justify-content: center;
    padding: 0.62rem;
  }

  .home-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .home-shell {
    flex-direction: column;
  }

  .home-sidebar {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-tab-rail {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.35rem;
  }

  .home-sidebar-footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-kpis {
    grid-template-columns: 1fr;
  }
}

/* Vision 1000 Home Page */
.v1000-body {
  margin: 0;
  background: #ffffff;
  color: #1a1a1a;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.v1000-body main {
  display: block;
}

.v1000-container {
  width: min(100% - 2rem, 1160px);
  margin: 0 auto;
}

.v1000-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #dde6eb;
}

.v1000-nav {
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.v1000-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.v1000-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: url('../images/brand-logo.png') center/cover no-repeat;
  color: transparent;
  display: inline-block;
  font-size: 0;
}

.v1000-brand-text {
  font-size: 1.05rem;
  color: #0b1f2a;
  font-weight: 800;
}

.v1000-links {
  display: inline-flex;
  justify-content: center;
  gap: 1.15rem;
}

.v1000-links a,
.v1000-mobile-menu a,
.v1000-footer-links a {
  color: #50616b;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.v1000-links a:hover,
.v1000-mobile-menu a:hover,
.v1000-footer-links a:hover {
  color: #1fa3a6;
}

.v1000-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.v1000-mobile-toggle {
  display: none;
  border: 1px solid #d9e4e8;
  border-radius: 10px;
  background: #ffffff;
  color: #0b1f2a;
  font-weight: 700;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
}

.v1000-mobile-menu {
  display: none;
  border-top: 1px solid #e2eaee;
  padding: 0.7rem 1rem 0.95rem;
  gap: 0.65rem;
  background: #ffffff;
}

.v1000-mobile-menu.is-open {
  display: grid;
}

.v1000-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.68rem 1.08rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.v1000-btn:hover {
  transform: translateY(-1px);
}

.v1000-btn-teal {
  background: #1fa3a6;
  color: #ffffff;
  box-shadow: 0 9px 20px rgba(31, 163, 166, 0.28);
}

.v1000-btn-burnt {
  background: #df6a3a;
  color: #ffffff;
  box-shadow: 0 9px 20px rgba(223, 106, 58, 0.24);
}

.v1000-btn-dark {
  background: #0b1f2a;
  color: #ffffff;
}

.v1000-btn-outline {
  border-color: #9ddbdd;
  color: #1fa3a6;
  background: #ffffff;
}

.v1000-btn-outline-dark {
  border-color: #a7bac3;
  color: #0b1f2a;
  background: rgba(255, 255, 255, 0.7);
}

.v1000-btn-soft {
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  color: #0b1f2a;
  font-size: 0.78rem;
}

.v1000-hero {
  position: relative;
  overflow: hidden;
  padding: 5.6rem 0 3.4rem;
  background: linear-gradient(135deg, rgba(255, 220, 200, 0.35) 0%, rgba(200, 230, 250, 0.24) 45%, rgba(240, 230, 255, 0.34) 100%);
}

.v1000-hero::before,
.v1000-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}

.v1000-hero::before {
  width: 290px;
  height: 290px;
  background: rgba(31, 163, 166, 0.09);
  top: 40px;
  left: 3%;
}

.v1000-hero::after {
  width: 360px;
  height: 360px;
  background: rgba(223, 106, 58, 0.08);
  right: -110px;
  bottom: -120px;
}

.v1000-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.1rem;
  align-items: center;
}

.v1000-hero-copy h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.1;
  color: #0b1f2a;
  font-weight: 800;
}

.v1000-hero-copy h1 span {
  color: #df6a3a;
}

.v1000-hero-copy h1 strong {
  color: #0b1f2a;
  font-size: clamp(1.42rem, 3.3vw, 2.6rem);
}

.v1000-hero-copy p {
  margin-bottom: 0;
  font-size: 1.06rem;
  line-height: 1.6;
  color: #4b5a63;
  max-width: 58ch;
}

.v1000-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin: 1.55rem 0 1.08rem;
}

.v1000-hero-tags {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #51616b;
}

.v1000-hero-tags span {
  color: #df6a3a;
}

.v1000-hero-media {
  position: relative;
}

.v1000-hero-media img {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 1.45rem;
  box-shadow: 0 22px 42px rgba(11, 31, 42, 0.2);
}

.v1000-hero-card {
  position: absolute;
  left: -12px;
  bottom: -14px;
  background: #ffffff;
  border: 1px solid #dbe7ec;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(11, 31, 42, 0.14);
  padding: 0.65rem 0.85rem;
}

.v1000-hero-card p {
  margin: 0;
  color: #6d7c86;
  font-size: 0.72rem;
  font-weight: 700;
}

.v1000-hero-card strong {
  color: #0b1f2a;
  font-size: 1.2rem;
}

.v1000-problem,
.v1000-programs,
.v1000-impact,
.v1000-audience,
.v1000-how,
.v1000-employers,
.v1000-why {
  padding: 4.4rem 0;
}

.v1000-problem {
  text-align: center;
}

.v1000-problem h2,
.v1000-impact h2,
.v1000-audience h2,
.v1000-how h2,
.v1000-employers h2,
.v1000-why h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.7rem, 3.1vw, 2.45rem);
  color: #0b1f2a;
}

.v1000-problem h2 span,
.v1000-why blockquote span {
  color: #df6a3a;
}

.v1000-problem p,
.v1000-impact-foot,
.v1000-how > .v1000-container > p,
.v1000-criteria-foot {
  color: #5f6d77;
}

.v1000-programs {
  padding-top: 1.2rem;
}

.v1000-program-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.86rem;
}

.v1000-program-card {
  border: 1px solid #dce7ec;
  border-radius: 15px;
  background: #ffffff;
  padding: 0.95rem 0.88rem;
  text-align: center;
  box-shadow: 0 8px 18px rgba(11, 31, 42, 0.05);
}

.v1000-program-card h3 {
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  color: #0b1f2a;
}

.v1000-program-card p {
  margin: 0;
  color: #5b6972;
  font-size: 0.77rem;
  line-height: 1.45;
}

.v1000-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 0.68rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.v1000-icon.purple {
  background: linear-gradient(135deg, #7b4dd8 0%, #4f2ea6 100%);
}

.v1000-icon.teal {
  background: linear-gradient(135deg, #1fa3a6 0%, #17787b 100%);
}

.v1000-icon.burnt {
  background: linear-gradient(135deg, #df6a3a 0%, #d04f1d 100%);
}

.v1000-icon.blue {
  background: linear-gradient(135deg, #3d8ae6 0%, #2364b3 100%);
}

.v1000-icon.pink {
  background: linear-gradient(135deg, #dc4f93 0%, #b73073 100%);
}

.v1000-note {
  margin: 1rem 0 0;
  text-align: center;
  color: #5d6b74;
  font-size: 0.9rem;
  font-style: italic;
}

.v1000-impact {
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 245, 235, 0.45) 50%, #ffffff 100%);
}

.v1000-impact-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.82rem;
}

.v1000-impact-card {
  border: 2px solid #dbe7ec;
  border-radius: 14px;
  background: #ffffff;
  padding: 0.95rem;
  box-shadow: 0 8px 18px rgba(11, 31, 42, 0.05);
}

.v1000-impact-value {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
  color: #0b1f2a;
}

.v1000-impact-label {
  margin: 0.1rem 0 0;
  color: #5e6d77;
  font-size: 0.81rem;
  font-weight: 600;
}

.teal-border {
  border-color: #82d9db;
}

.burnt-border {
  border-color: #f0ba9f;
}

.purple-border {
  border-color: #c3b1ed;
}

.blue-border {
  border-color: #a7cdef;
}

.v1000-impact-foot {
  margin-top: 0.86rem;
  font-size: 0.86rem;
}

.v1000-audience {
  background: #ffffff;
}

.v1000-audience h2 {
  text-align: center;
}

.v1000-audience-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.v1000-audience-card {
  position: relative;
  min-height: 238px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(11, 31, 42, 0.12);
}

.v1000-audience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 25%, rgba(0, 0, 0, 0.72) 100%);
}

.v1000-audience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v1000-tag {
  position: absolute;
  top: 11px;
  left: 11px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.27rem 0.6rem;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
}

.v1000-tag.teal {
  background: #1fa3a6;
}

.v1000-tag.navy {
  background: #0b1f2a;
}

.v1000-tag.burnt {
  background: #df6a3a;
}

.v1000-tag.purple {
  background: #7c4fd9;
}

.v1000-audience-card .v1000-btn {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
}

.v1000-criteria {
  margin: 1.35rem auto 0;
  max-width: 560px;
  padding-left: 1.15rem;
  color: #51616b;
  font-size: 0.92rem;
  line-height: 1.56;
}

.v1000-criteria li {
  margin-bottom: 0.34rem;
}

.v1000-criteria-foot {
  margin-top: 0.35rem;
  text-align: center;
  font-size: 0.8rem;
  font-style: italic;
}

.v1000-how {
  background: #0b1f2a;
  color: #ffffff;
  text-align: center;
}

.v1000-how h2 {
  color: #ffffff;
}

.v1000-how > .v1000-container > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
}

.v1000-how-grid {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.84rem;
}

.v1000-how-grid article {
  border: 1px solid rgba(31, 163, 166, 0.35);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.9rem;
}

.v1000-how-grid span {
  display: inline-block;
  margin-bottom: 0.4rem;
  border-radius: 999px;
  background: rgba(31, 163, 166, 0.16);
  color: #6bd1d3;
  padding: 0.2rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 800;
}

.v1000-how-grid h3 {
  margin-bottom: 0.3rem;
  color: #ffffff;
  font-size: 0.9rem;
}

.v1000-how-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.76rem;
  line-height: 1.45;
}

.v1000-employers {
  background: #ffffff;
}

.v1000-employer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.3rem;
  align-items: center;
}

.v1000-employers small {
  text-transform: uppercase;
  color: #1fa3a6;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.v1000-employers h2 {
  margin-top: 0.6rem;
}

.v1000-employers p {
  margin: 0;
  color: #55646e;
  line-height: 1.65;
}

.v1000-chips {
  margin: 1rem 0 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.v1000-chips span {
  border-radius: 999px;
  padding: 0.32rem 0.76rem;
  font-size: 0.76rem;
  font-weight: 700;
}

.v1000-chips span:first-child {
  background: rgba(31, 163, 166, 0.12);
  color: #1f7f81;
}

.v1000-chips span:last-child {
  background: rgba(223, 106, 58, 0.12);
  color: #bf4f22;
}

.v1000-employer-points {
  display: grid;
  gap: 0.68rem;
}

.v1000-employer-points article {
  border: 1px solid #dbe7ec;
  border-radius: 14px;
  background: #fbfdfe;
  padding: 0.9rem;
}

.v1000-employer-points h3 {
  margin-bottom: 0.3rem;
  color: #0b1f2a;
  font-size: 0.9rem;
}

.v1000-employer-points p {
  margin: 0;
  font-size: 0.82rem;
  color: #5d6c76;
}

.v1000-why {
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 245, 235, 0.35) 0%, rgba(220, 240, 250, 0.22) 50%, rgba(240, 230, 255, 0.2) 100%);
}

.v1000-why blockquote {
  margin: 0.95rem auto 0;
  max-width: 840px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.34;
  color: #0b1f2a;
  font-weight: 800;
}

.v1000-why > .v1000-container > p {
  margin: 0.68rem 0 0.95rem;
  color: #6a7881;
  font-size: 0.86rem;
}

.v1000-footer {
  background: #0b1f2a;
  color: #d8e5ec;
  padding: 2.2rem 0 1rem;
}

.v1000-footer-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}

.v1000-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.v1000-footer-brand strong {
  color: #ffffff;
  display: block;
}

.v1000-footer-brand p {
  margin: 0.12rem 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

.v1000-footer-links {
  display: inline-flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}

.v1000-footer-links a {
  color: rgba(255, 255, 255, 0.66);
}

.v1000-footer-bottom {
  margin-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.v1000-footer-bottom p,
.v1000-footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

.v1000-footer-bottom a:hover {
  color: #81d5d7;
}

@media (max-width: 1080px) {
  .v1000-program-grid,
  .v1000-how-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .v1000-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v1000-employer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .v1000-nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .v1000-links,
  .v1000-nav-cta {
    display: none;
  }

  .v1000-mobile-toggle {
    display: inline-flex;
  }

  .v1000-hero {
    padding-top: 4.8rem;
  }

  .v1000-hero-grid {
    grid-template-columns: 1fr;
  }

  .v1000-hero-card {
    left: 0.3rem;
    bottom: -9px;
  }

  .v1000-impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v1000-footer-top {
    grid-template-columns: 1fr;
  }

  .v1000-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .v1000-program-grid,
  .v1000-how-grid,
  .v1000-audience-grid,
  .v1000-impact-grid {
    grid-template-columns: 1fr;
  }

  .v1000-body {
    font-size: 15px;
  }

  .v1000-hero-copy h1 {
    font-size: clamp(1.8rem, 9vw, 2.45rem);
  }

  .v1000-hero-copy h1 strong {
    font-size: clamp(1.26rem, 7vw, 1.68rem);
  }

  .v1000-how,
  .v1000-employers,
  .v1000-why,
  .v1000-audience,
  .v1000-impact,
  .v1000-programs,
  .v1000-problem {
    padding: 3.45rem 0;
  }

  .v1000-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Vision 1000 Precision Overrides */
.v1000-body {
  background: rgb(247, 244, 240);
  color: #1a1a1a;
}

.v1000-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(215, 205, 196, 0.48);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}

.v1000-container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

.v1000-nav {
  min-height: 4rem;
}

.v1000-hero,
.v1000-header + main .v1000-hero {
  padding-top: 4rem;
  padding-bottom: 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 220, 200, 0.3) 0%, rgba(200, 230, 250, 0.2) 40%, rgba(240, 230, 255, 0.3) 100%);
}

.v1000-hero::before {
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(31, 163, 166, 0.06);
  border-radius: 9999px;
  filter: blur(20px);
}

.v1000-hero::after {
  right: 2.5rem;
  bottom: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(212, 112, 42, 0.05);
  border-radius: 9999px;
  filter: blur(24px);
}

.v1000-hero-grid {
  gap: 3rem;
  align-items: center;
}

.v1000-hero-copy {
  display: grid;
  gap: 1.5rem;
}

.v1000-hero-copy h1 {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.25;
  font-weight: 800;
  color: rgb(11, 31, 42);
}

.v1000-hero-copy h1 span {
  color: rgb(212, 112, 42);
}

.v1000-hero-copy h1 strong {
  font-size: 1.875rem;
  line-height: 1.25;
  font-weight: 700;
  color: rgb(11, 31, 42);
}

.v1000-hero-copy p {
  margin: 0;
  max-width: 32rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: rgba(26, 26, 26, 0.7);
}

.v1000-hero-actions {
  gap: 1rem;
  padding-top: 0.5rem;
  margin: 0;
}

.v1000-hero-actions .v1000-btn {
  border-radius: 9999px;
  padding: 0.78rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}

.v1000-btn-teal {
  background: rgb(31, 163, 166);
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --tw-shadow-color: rgba(31, 163, 166, 0.2);
}

.v1000-btn-burnt {
  background: rgb(212, 112, 42);
  color: #ffffff;
}

.v1000-btn-dark {
  background: rgb(11, 31, 42);
  color: #ffffff;
}

.v1000-btn-outline-dark {
  background: transparent;
  border-color: rgb(11, 31, 42);
  color: rgb(11, 31, 42);
}

.v1000-btn-outline-dark:hover {
  background: rgb(11, 31, 42);
  color: #ffffff;
}

.v1000-nav-cta .v1000-btn,
.v1000-mobile-menu .v1000-btn,
.v1000-mobile-menu a[href$="student-journey.html"],
.v1000-mobile-menu a[href$="sponsor-landing"] {
  font-size: 0.875rem;
}

.v1000-hero-tags {
  gap: 0.5rem;
  padding-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.5);
}

.v1000-hero-tags span {
  color: rgb(212, 112, 42);
}

.v1000-hero-media img {
  width: 100%;
  max-width: 32rem;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.v1000-hero-card {
  left: -1rem;
  bottom: -1rem;
  border-radius: 1rem;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.v1000-hero-card p {
  font-size: 0.75rem;
  line-height: 1rem;
}

.v1000-hero-card strong {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.v1000-problem,
.v1000-impact,
.v1000-audience,
.v1000-how,
.v1000-employers {
  padding-block: 5rem;
}

.v1000-programs {
  padding-block: 4rem;
}

.v1000-why {
  padding-block: 6rem;
}

.v1000-problem .v1000-container,
.v1000-impact .v1000-container {
  max-width: 64rem;
}

.v1000-programs .v1000-container,
.v1000-audience .v1000-container,
.v1000-how .v1000-container,
.v1000-employers .v1000-container,
.v1000-footer .v1000-container {
  max-width: 72rem;
}

.v1000-why .v1000-container {
  max-width: 56rem;
}

.v1000-problem h2,
.v1000-impact h2,
.v1000-audience h2,
.v1000-how h2,
.v1000-employers h2,
.v1000-why h2 {
  margin: 0;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 800;
}

.v1000-problem p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: rgba(26, 26, 26, 0.6);
}

.v1000-program-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.v1000-program-card {
  border-color: rgba(206, 193, 182, 0.65);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.v1000-program-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.v1000-program-card h3 {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}

.v1000-program-card p {
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: rgba(26, 26, 26, 0.5);
}

.v1000-note {
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.5);
}

.v1000-impact {
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 245, 235, 0.5) 50%, #ffffff 100%);
}

.v1000-impact-grid {
  margin-top: 3rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.v1000-impact-card {
  padding: 1.5rem;
  border-width: 2px;
  border-radius: 1rem;
  box-shadow: 0 1px 2px rgba(11, 31, 42, 0.08);
}

.v1000-impact-value {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.v1000-impact-label {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: rgba(26, 26, 26, 0.5);
  font-weight: 500;
}

.v1000-impact-foot {
  margin-top: 2rem;
  font-size: 0.875rem;
}

.v1000-audience-grid {
  margin-top: 3rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.v1000-audience-intro {
  margin: 0.8rem auto 0;
  max-width: 56rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(26, 26, 26, 0.62);
}

.v1000-audience-card {
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(11, 31, 42, 0.12);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.v1000-audience-card:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 12px 28px rgba(11, 31, 42, 0.22);
}

.v1000-audience-card img {
  height: 15rem;
  object-fit: cover;
}

.v1000-tag {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
}

.v1000-criteria {
  margin-top: 3rem;
  max-width: 32rem;
  font-size: 0.875rem;
  line-height: 1.4rem;
  color: rgba(26, 26, 26, 0.6);
}

.v1000-criteria li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.v1000-criteria li::before {
  content: "•";
  color: rgb(31, 163, 166);
  font-weight: 800;
}

.v1000-criteria-foot {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(26, 26, 26, 0.4);
}

.v1000-how {
  background: rgb(11, 31, 42);
  color: #ffffff;
}

.v1000-how > .v1000-container > p {
  margin-top: 0.75rem;
  max-width: 36rem;
  margin-inline: auto;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.v1000-how-grid {
  margin-top: 3.5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

.v1000-how-grid article {
  position: relative;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.v1000-step-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-inline: auto;
  border-radius: 1rem;
  background: rgba(31, 163, 166, 0.2);
  border: 1px solid rgba(31, 163, 166, 0.3);
  display: grid;
  place-items: center;
  color: rgb(31, 163, 166);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.v1000-how-grid span {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
  color: rgb(31, 163, 166);
  background: rgba(31, 163, 166, 0.1);
}

.v1000-how-grid h3 {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}

.v1000-how-grid p {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
}

.v1000-employer-grid {
  gap: 3.5rem;
}

.v1000-employers small {
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.08em;
}

.v1000-employers p {
  margin-top: 1rem;
  color: rgba(26, 26, 26, 0.6);
}

.v1000-chips {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.v1000-chips span {
  padding: 0.38rem 0.75rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
}

.v1000-employers .v1000-btn-dark {
  margin-top: 2rem;
  border-radius: 9999px;
  padding: 0.78rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.v1000-employer-points {
  gap: 1.25rem;
}

.v1000-employer-points article {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid rgba(217, 204, 192, 0.5);
  border-radius: 1rem;
  background: rgba(250, 248, 245, 0.72);
  padding: 1.25rem;
}

.v1000-point-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: rgba(31, 163, 166, 0.1);
  color: rgb(31, 163, 166);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
}

.v1000-employer-points h3 {
  margin: 0;
}

.v1000-employer-points p {
  margin-top: 0.25rem;
}

.v1000-why {
  background: linear-gradient(180deg, rgba(255, 245, 235, 0.3) 0%, rgba(220, 240, 250, 0.2) 50%, rgba(240, 230, 255, 0.2) 100%);
}

.v1000-why .v1000-container {
  text-align: center;
}

.v1000-why blockquote {
  margin-top: 2rem;
  position: relative;
  padding-inline: 2rem;
  font-size: 1.5rem;
  line-height: 1.35;
}

.v1000-why blockquote::before {
  content: "\201C";
  position: absolute;
  top: -1rem;
  left: 0.8rem;
  font-size: 3.75rem;
  color: rgba(212, 112, 42, 0.2);
  font-family: Georgia, "Times New Roman", serif;
}

.v1000-why > .v1000-container > p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(26, 26, 26, 0.4);
}

.v1000-why .v1000-btn-burnt {
  margin-top: 1.5rem;
  background: rgb(212, 112, 42);
  border-radius: 9999px;
  padding: 0.8rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.v1000-footer {
  background: rgb(11, 31, 42);
  color: #ffffff;
  padding-block: 3rem;
}

.v1000-footer-top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.v1000-footer-brand p {
  color: rgba(255, 255, 255, 0.4);
}

.v1000-footer-links {
  justify-content: center;
  gap: 1.5rem;
}

.v1000-footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.v1000-footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.v1000-footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.v1000-footer-legal {
  display: flex;
  gap: 1rem;
}

.v1000-footer-legal a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.v1000-footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
  .v1000-container {
    padding-inline: 1.5rem;
  }

  .v1000-hero-copy h1 {
    font-size: 3rem;
    line-height: 1;
  }

  .v1000-hero-copy h1 strong {
    font-size: 2.25rem;
    line-height: 1.08;
  }

  .v1000-problem h2,
  .v1000-impact h2,
  .v1000-audience h2,
  .v1000-how h2,
  .v1000-employers h2,
  .v1000-why h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .v1000-impact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .v1000-how-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .v1000-how-grid article:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 1.75rem;
    left: 50%;
    width: 100%;
    height: 1px;
    background: rgba(31, 163, 166, 0.2);
    transform: translateX(0);
    z-index: 0;
  }

  .v1000-step-icon {
    position: relative;
    z-index: 1;
  }

  .v1000-footer-top {
    flex-direction: row;
  }

  .v1000-footer-bottom {
    flex-direction: row;
    gap: 0.5rem;
  }
}

@media (min-width: 768px) {
  .v1000-mobile-toggle {
    display: none;
  }

  .v1000-links,
  .v1000-nav-cta {
    display: inline-flex;
  }

  .v1000-mobile-menu {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .v1000-container {
    padding-inline: 2rem;
  }

  .v1000-program-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .v1000-audience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .v1000-hero-copy h1 {
    font-size: 3.75rem;
    line-height: 1;
  }

  .v1000-hero-copy h1 strong {
    font-size: 3rem;
    line-height: 1;
  }
}

@media (max-width: 767px) {
  .v1000-links,
  .v1000-nav-cta {
    display: none;
  }

  .v1000-mobile-toggle {
    display: inline-flex;
  }

  .v1000-mobile-menu {
    grid-template-columns: 1fr;
  }

  .v1000-mobile-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(26, 26, 26, 0.7);
    padding-block: 0.45rem;
  }

  .v1000-hero {
    min-height: 0;
    padding-bottom: 3.5rem;
  }

  .v1000-hero-card {
    left: 0;
  }

  .v1000-employer-points article {
    display: block;
  }

  .v1000-point-icon {
    margin-bottom: 0.6rem;
  }
}

/* Talent + Opportunity Inserts */
.v1000-talent-section {
  background: rgb(247, 244, 240);
  padding: 1.8rem 0 2.4rem;
}

.v1000-talent-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.4rem;
  align-items: center;
}

.v1000-talent-cards {
  display: grid;
  gap: 1rem;
}

.v1000-talent-card {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: #d9dee2;
  border: 1px solid #cad1d7;
  border-radius: 0.85rem;
  padding: 0.9rem;
}

.v1000-talent-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: #c9d4d9;
  display: grid;
  place-items: center;
  color: #338f94;
  flex-shrink: 0;
}

.v1000-talent-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.v1000-talent-card h3 {
  margin: 0;
  color: #0b1f2a;
  font-size: 0.98rem;
  line-height: 1.25;
  font-weight: 800;
}

.v1000-talent-card p {
  margin: 0.3rem 0 0;
  color: rgba(26, 26, 26, 0.65);
  font-size: 0.95rem;
  line-height: 1.45;
}

.v1000-tracks-marquee {
  background: #f3f5f7;
  padding: 0.95rem 0 1.35rem;
  border-bottom: 1px solid #e1e7ec;
  overflow: hidden;
}

.v1000-tracks-viewport {
  width: min(100% - 2rem, 1920px);
  margin: 0 auto;
  overflow: hidden;
}

.v1000-tracks-marquee-inner {
  display: flex;
  width: max-content;
  animation: v1000TracksSlide 60s linear infinite;
}

.v1000-track-set {
  display: flex;
  gap: 1.2rem;
  padding-right: 1.2rem;
}

.v1000-track-card {
  width: clamp(210px, 18vw, 250px);
  min-height: 152px;
  background: #f7f8fa;
  border: 1px solid #d9dfe4;
  border-radius: 1.2rem;
  padding: 1rem 1rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
  animation: v1000TrackPulse 3.2s ease-in-out infinite;
  animation-delay: var(--pulse-delay, 0s);
}

.v1000-track-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1.05rem;
  display: grid;
  place-items: center;
  color: #ffffff;
}

.v1000-track-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.v1000-icon-ai {
  background: linear-gradient(160deg, #7e3af2, #9f68ff);
}

.v1000-icon-data {
  background: linear-gradient(160deg, #149ca0, #2ab5b9);
}

.v1000-icon-marketing {
  background: linear-gradient(160deg, #df6f20, #f08c3e);
}

.v1000-icon-design {
  background: linear-gradient(160deg, #2f6ddf, #4f88ea);
}

.v1000-icon-content {
  background: linear-gradient(160deg, #d53186, #eb529f);
}

.v1000-icon-prompt {
  background: linear-gradient(160deg, #08567d, #17719f);
}

.v1000-icon-mlops {
  background: linear-gradient(160deg, #5a49b5, #7361ca);
}

.v1000-icon-automation {
  background: linear-gradient(160deg, #0f8a84, #2aa39e);
}

.v1000-track-card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.22;
  color: #0b1f2a;
}

.v1000-track-card p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(26, 26, 26, 0.62);
}

/* ── Roles We Deploy Section ────────────────────────────── */
.v1000-roles-section {
  background: linear-gradient(160deg, #0b1f2a 0%, #102f40 60%, #0d2535 100%);
  padding: 4rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.v1000-roles-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31,163,166,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.v1000-roles-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.v1000-roles-wrap {
  text-align: center;
  position: relative;
  z-index: 1;
}

.v1000-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  font-weight: 800;
  color: #5de0e6;
  background: rgba(31,163,166,0.15);
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(31,163,166,0.3);
  margin-bottom: 0.7rem;
}

.v1000-roles-wrap > h2 {
  margin: 0 0 0.4rem;
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1.08;
}

.v1000-roles-wrap > h2 + p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.v1000-roles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}

/* ── Base card ── */
.v1000-role-card {
  text-align: left;
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.28s cubic-bezier(.22,.68,0,1.2), box-shadow 0.28s ease;
  cursor: default;
}

.v1000-role-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

.v1000-role-card:hover {
  transform: translateY(-6px);
}

.v1000-role-card:hover::before {
  opacity: 1;
}

/* Card 1 – Data Analyst: deep indigo-to-teal */
.v1000-role-card:nth-child(1) {
  background: linear-gradient(145deg, #1a1060 0%, #0f3460 60%, #0d4a6b 100%);
  box-shadow: 0 8px 32px rgba(15,52,96,0.5), 0 0 0 1px rgba(99,179,237,0.15);
}
.v1000-role-card:nth-child(1)::before {
  background: linear-gradient(145deg, rgba(99,179,237,0.08), transparent);
}
.v1000-role-card:nth-child(1):hover {
  box-shadow: 0 20px 48px rgba(15,52,96,0.7), 0 0 0 1px rgba(99,179,237,0.3), 0 0 40px rgba(31,163,166,0.15);
}

/* Card 2 – Web Developer: electric teal-to-emerald */
.v1000-role-card:nth-child(2) {
  background: linear-gradient(145deg, #0a3d3e 0%, #0d5c5e 55%, #116b4a 100%);
  box-shadow: 0 8px 32px rgba(10,61,62,0.55), 0 0 0 1px rgba(31,163,166,0.2);
}
.v1000-role-card:nth-child(2)::before {
  background: linear-gradient(145deg, rgba(31,163,166,0.1), transparent);
}
.v1000-role-card:nth-child(2):hover {
  box-shadow: 0 20px 48px rgba(10,61,62,0.75), 0 0 0 1px rgba(31,163,166,0.4), 0 0 40px rgba(31,163,166,0.2);
}

/* Card 3 – Digital Marketer: vibrant purple-to-rose */
.v1000-role-card:nth-child(3) {
  background: linear-gradient(145deg, #3b0764 0%, #6d28d9 55%, #be185d 100%);
  box-shadow: 0 8px 32px rgba(59,7,100,0.55), 0 0 0 1px rgba(167,139,250,0.2);
}
.v1000-role-card:nth-child(3)::before {
  background: linear-gradient(145deg, rgba(167,139,250,0.1), transparent);
}
.v1000-role-card:nth-child(3):hover {
  box-shadow: 0 20px 48px rgba(59,7,100,0.75), 0 0 0 1px rgba(167,139,250,0.4), 0 0 40px rgba(167,139,250,0.2);
}

/* ── Icon ── */
.v1000-role-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  margin-bottom: 1.1rem;
  color: #ffffff;
}

.v1000-role-icon svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Title ── */
.v1000-role-card h3 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* ── Skills as pill tags ── */
.v1000-role-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.v1000-role-card li {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
}

/* ── Divider ── */
.v1000-role-divider {
  height: 1px;
  background: rgba(255,255,255,0.14);
  margin: 1.2rem 0 1rem;
}

/* ── Output label ── */
.v1000-role-label {
  margin: 0 0 0.35rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 700;
}

.v1000-role-output {
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 0.97rem;
  line-height: 1.45;
  font-weight: 600;
}

.v1000-talent-copy {
  max-width: 32rem;
}

.v1000-talent-copy h2 {
  margin: 0 0 0.8rem;
  color: #0b1f2a;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 1.08;
}

.v1000-talent-copy h2 span {
  color: #328f94;
}

.v1000-talent-copy p {
  margin: 0 0 1.2rem;
  color: rgba(26, 26, 26, 0.62);
  font-size: 1.02rem;
  line-height: 1.56;
}

.v1000-talent-cta {
  min-width: 12rem;
}

.v1000-opportunity-section {
  background: #e9eef2;
  padding: 2.55rem 0 2.75rem;
}

.v1000-opportunity-wrap {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.v1000-opportunity-icon {
  width: 4.4rem;
  height: 4.4rem;
  margin: 0 auto 0.95rem;
  border-radius: 1rem;
  background: #d7e3e7;
  color: #3b9298;
  display: grid;
  place-items: center;
}

.v1000-opportunity-icon svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.v1000-opportunity-wrap > h2 {
  margin: 0;
  color: #0b1f2a;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.1;
}

.v1000-opportunity-wrap > h2 span {
  color: #328f94;
}

.v1000-opportunity-lead {
  margin: 1.2rem auto 0;
  max-width: 50rem;
  font-size: 1.08rem;
  line-height: 1.64;
  color: rgba(26, 26, 26, 0.64);
}

.v1000-opportunity-sub {
  margin: 1rem auto 0;
  max-width: 48rem;
  font-size: 0.97rem;
  color: rgba(26, 26, 26, 0.66);
}

.v1000-opportunity-actions {
  margin-top: 1.35rem;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.v1000-footer-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 1.4fr) repeat(3, minmax(9rem, 1fr));
  gap: 2rem;
  align-items: start;
}

.v1000-footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.v1000-footer-col.brand {
  gap: 1rem;
}

.v1000-footer-col.brand h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.v1000-footer-col.brand h3 span {
  color: #2ca0a6;
}

.v1000-footer-col.brand p {
  margin: 0;
  max-width: 19rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}

.v1000-footer-col h4 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #e4eaee;
}

.v1000-footer-col a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.96rem;
  line-height: 1.45;
}

.v1000-footer-col a:hover {
  color: rgba(255, 255, 255, 0.86);
}

.v1000-footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  margin-top: 2.1rem;
}

.v1000-footer-bottomline {
  display: flex;
  justify-content: center;
  padding-top: 1.2rem;
}

.v1000-footer-bottomline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.95rem;
}

.sp-page {
  background: #f2f1ef;
  color: #0b1f2a;
}

.sp-container {
  width: min(100% - 1.5rem, 1280px);
  margin: 0 auto;
}

.sp-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #0b1f2a;
}

.sp-hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
}

.sp-hero-glow-left {
  width: 26rem;
  height: 26rem;
  left: -8rem;
  bottom: -11rem;
  background: rgba(25, 123, 178, 0.42);
}

.sp-hero-glow-right {
  width: 40rem;
  height: 40rem;
  right: -10rem;
  bottom: -15rem;
  background: radial-gradient(circle, rgba(31, 163, 166, 0.3) 0%, rgba(31, 163, 166, 0) 70%);
  filter: blur(80px);
}

.sp-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 0 4rem;
}

.sp-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 500;
}

.sp-back-link:hover {
  color: #ffffff;
}

.sp-hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(212, 112, 42, 0.22);
  border: 1px solid rgba(212, 112, 42, 0.4);
  color: #f7b27f;
  font-size: 0.72rem;
  font-weight: 700;
}

.sp-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #f5f7f8;
}

.sp-hero-copy {
  margin: 0.85rem auto 0;
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.sp-hero-copy strong {
  color: #ffffff;
}

.sp-hero-stats {
  margin-top: 1.55rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.sp-hero-stats article {
  text-align: center;
}

.sp-hero-stats strong {
  display: block;
  margin: 0;
  color: #1fb8bb;
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
  line-height: 1;
  font-weight: 800;
}

.sp-hero-stats span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

.sp-section {
  padding: 1.6rem 0 3.1rem;
}

.sp-content-wrap {
  max-width: 82rem;
}

.sp-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.sp-title-row h2 {
  margin: 0;
  font-size: 2.15rem;
  line-height: 1.1;
  color: #0b1f2a;
}

.sp-title-row p {
  margin: 0.22rem 0 0;
  color: rgba(26, 26, 26, 0.44);
  font-size: 1rem;
}

.sp-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid #f4cb81;
  border-radius: 0.75rem;
  background: #fff7e8;
  color: #c67616;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.42rem 0.75rem;
  white-space: nowrap;
}

.sp-filter-wrap {
  background: #ffffff;
  border: 1px solid #e1e6eb;
  border-radius: 0.95rem;
  padding: 0.75rem;
  margin-bottom: 1.2rem;
}

.sp-search-wrap {
  position: relative;
}

.sp-search-icon {
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.92rem;
  height: 0.92rem;
  color: #aeb6bf;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sp-search-wrap input {
  width: 100%;
  height: 2.2rem;
  border: 1px solid #e2e7eb;
  border-radius: 0.7rem;
  padding: 0 0.78rem 0 2rem;
  color: #0b1f2a;
  font-size: 0.92rem;
}

.sp-search-wrap input::placeholder {
  color: #9ca5b0;
}

.sp-search-wrap input:focus-visible {
  outline: 2px solid rgba(31, 163, 166, 0.3);
  outline-offset: 1px;
}

.sp-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin-top: 0.55rem;
}

.sp-chip {
  border: 1px solid #dce2e8;
  border-radius: 999px;
  background: #ffffff;
  color: #8b949e;
  font-size: 0.71rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.33rem 0.65rem;
  cursor: pointer;
}

.sp-chip.is-active {
  background: #1fa3a6;
  color: #ffffff;
  border-color: #1fa3a6;
}

.sp-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 7rem;
}

.sp-spinner {
  width: 2rem;
  height: 2rem;
  border: 3px solid #d8eeef;
  border-top-color: #1fa3a6;
  border-radius: 999px;
  animation: spin 0.85s linear infinite;
}

.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.sp-card {
  overflow: hidden;
  border: 1px solid #dce2e8;
  border-radius: 0.95rem;
  background: #ffffff;
  min-height: 15rem;
}

.sp-card-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
  background: #f8fafb;
  padding: 1rem;
  border-bottom: 1px solid #eef2f5;
}

.sp-card-id {
  display: flex;
  gap: 0.65rem;
  min-width: 0;
}

.sp-avatar-wrap {
  width: 2.8rem;
  height: 2.8rem;
  flex-shrink: 0;
}

.sp-avatar {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1fa3a6;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.sp-avatar-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #d6e2e7;
  display: block;
}

.sp-card-id h3 {
  margin: 0;
  color: #0b1f2a;
  font-size: 0.98rem;
  line-height: 1.2;
  max-width: 11rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sp-card-id p {
  margin: 0.1rem 0 0;
  color: rgba(26, 26, 26, 0.4);
  font-size: 0.74rem;
  line-height: 1.25;
}

.sp-score {
  text-align: right;
  flex-shrink: 0;
}

.sp-score strong {
  display: block;
  margin: 0;
  color: #1fa3a6;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 800;
}

.sp-score.is-strong strong {
  color: #169951;
}

.sp-score span {
  display: block;
  margin-top: 0.1rem;
  color: rgba(26, 26, 26, 0.34);
  font-size: 0.72rem;
}

.sp-card-body {
  padding: 0.85rem 0.9rem 0.72rem;
}

.sp-track {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid #c8dee1;
  background: #e9f7f8;
  color: #278f95;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.3rem 0.55rem;
}

.sp-track.is-web {
  border-color: #d2daf4;
  background: #eef3ff;
  color: #3e66c7;
}

.sp-track.is-marketing {
  border-color: #f4d9c3;
  background: #fff2e5;
  color: #c56f22;
}

.sp-progress {
  margin-top: 0.58rem;
  width: 100%;
  height: 0.24rem;
  border-radius: 999px;
  overflow: hidden;
  background: #dde2e6;
}

.sp-progress-fill {
  height: 100%;
  border-radius: inherit;
  background: #1fa3a6;
}

.sp-progress-fill.is-strong {
  background: #20ab60;
}

.sp-evidence-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.72rem;
}

.sp-evidence-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #d6e2e7;
  background: #f8fafb;
  color: rgba(11, 31, 42, 0.7);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.28rem 0.48rem;
}

.sp-story-block {
  margin-top: 0.72rem;
}

.sp-story-label {
  display: block;
  color: rgba(11, 31, 42, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sp-story {
  margin: 0.3rem 0 0;
  color: rgba(26, 26, 26, 0.57);
  font-size: 0.75rem;
  line-height: 1.32;
  min-height: 2.9rem;
}

.sp-story-teaser {
  margin: 0.72rem 0 0;
  color: rgba(26, 26, 26, 0.57);
  font-size: 0.75rem;
  line-height: 1.38;
  min-height: 2rem;
}

.sp-card-foot {
  padding: 0.64rem 0.9rem 0.8rem;
  border-top: 1px solid #e5ebef;
}

.sp-sponsor-btn {
  width: 100%;
  height: 2.05rem;
  border: 0;
  border-radius: 999px;
  background: #d9782b;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.sp-sponsor-btn:hover {
  background: #c6691d;
}

.sp-empty {
  grid-column: 1 / -1;
  border: 1px dashed #cfd6dc;
  border-radius: 1rem;
  background: #ffffff;
  padding: 2rem 1.25rem;
  text-align: center;
}

.sp-empty p {
  margin: 0;
  color: rgba(26, 26, 26, 0.56);
}

.sp-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.sp-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 12, 22, 0.62);
}

.sp-modal-card {
  position: relative;
  width: min(calc(100% - 1rem), 700px);
  max-height: calc(100dvh - 1rem);
  margin: 0;
  overflow: hidden;
  border-radius: 1.85rem;
  border: 1px solid #d7e1e8;
  background: #ffffff;
  box-shadow: 0 25px 65px rgba(5, 19, 33, 0.35);
  display: flex;
  flex-direction: column;
}

.sp-modal-close {
  position: absolute;
  top: 0.62rem;
  right: 0.62rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  font-size: 0.95rem;
  cursor: pointer;
}

.sp-modal-header {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 1.25rem;
  background: linear-gradient(140deg, #0b1f2a 0%, #1f5565 100%);
  color: #ffffff;
}

.sp-modal-avatar {
  width: 4.1rem;
  height: 4.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  font-weight: 800;
}

.sp-modal-avatar.has-image {
  background-color: rgba(255, 255, 255, 0.18);
  background-size: cover;
  background-position: center;
  color: transparent;
}

.sp-modal-header h3 {
  margin: 0;
  font-size: clamp(1.7rem, 4.1vw, 2.5rem);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sp-modal-header p {
  margin: 0.22rem 0 0;
  font-size: clamp(0.75rem, 1.35vw, 0.95rem);
  color: rgba(255, 255, 255, 0.73);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sp-modal-body {
  padding: 0.95rem 1.25rem 1.05rem;
  overflow: hidden;
}

.sp-required {
  color: #df6a3a;
  font-style: normal;
  font-weight: 700;
}

.sp-done-cta {
  margin-top: 0.85rem;
  border-radius: 1rem;
  border: 1px solid rgba(31, 163, 166, 0.2);
  background: rgba(31, 163, 166, 0.08);
  padding: 0.85rem 1rem;
  text-align: left;
}

.sp-done-cta p {
  margin: 0 0 0.6rem;
  color: rgba(11, 31, 42, 0.78);
  font-size: 0.92rem;
}

.sp-modal-card[data-step="story"] .sp-modal-body {
  overflow-y: auto;
}

.sp-modal-card[data-step="payment"] {
  width: min(calc(100% - 1.5rem), 700px);
}

.sp-modal-card[data-step="monitor"] {
  width: min(calc(100% - 1.5rem), 640px);
  max-height: min(calc(100dvh - 1rem), 46rem);
}

.sp-modal-card[data-step="monitor"] .sp-modal-header {
  padding: 0.92rem 1.08rem;
}

.sp-modal-card[data-step="monitor"] .sp-modal-avatar {
  width: 3.8rem;
  height: 3.8rem;
  font-size: 2.1rem;
}

.sp-modal-card[data-step="monitor"] .sp-modal-header h3 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.sp-modal-card[data-step="monitor"] .sp-modal-header p {
  font-size: clamp(0.8rem, 1.25vw, 0.94rem);
}

.sp-modal-card[data-step="monitor"] .sp-modal-body {
  padding: 0.9rem 1.08rem 1rem;
}

.sp-step-panel h4 {
  margin: 0;
  font-size: 1.2rem;
  color: #0b1f2a;
}

.sp-step-panel p {
  margin: 0.5rem 0 0;
  color: rgba(26, 26, 26, 0.58);
  font-size: 0.9rem;
  line-height: 1.5;
}

#sp-step-monitor h4 {
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

#sp-step-monitor > p {
  margin-top: 0.56rem;
  font-size: 0.9rem;
  line-height: 1.36;
}

.sp-story-intro {
  margin-top: 0.4rem;
}

.sp-full-story-card {
  margin-top: 0.85rem;
  border: 1px solid #d7dfe5;
  border-radius: 0.95rem;
  background: #f8fafb;
  padding: 0.95rem;
  max-height: min(20rem, calc(100dvh - 22rem));
  overflow-y: auto;
}

.sp-story-media {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.sp-story-photo {
  width: min(100%, 11rem);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid #d6e2e7;
}

.sp-story-video-wrap {
  width: 100%;
}

.sp-story-video {
  width: 100%;
  border-radius: 1rem;
  background: #dce8ed;
}

.sp-full-story-card p {
  margin: 0;
  color: rgba(26, 26, 26, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
  white-space: pre-wrap;
}

.sp-story-sections {
  display: grid;
  gap: 1rem;
}

.sp-story-section {
  display: grid;
  gap: 0.38rem;
  padding-top: 0.2rem;
}

.sp-story-section + .sp-story-section {
  border-top: 1px solid #e4eaef;
  padding-top: 1rem;
}

.sp-story-section h5 {
  margin: 0;
  color: #0b1f2a;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.sp-story-section p {
  margin: 0;
}

.sp-choice-stack {
  margin-top: 0.82rem;
  display: grid;
  gap: 0.55rem;
}

.sp-choice {
  width: 100%;
  border: 2px solid #d9e1e7;
  border-radius: 1.1rem;
  background: #ffffff;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.72rem 0.85rem;
  cursor: pointer;
}

.sp-choice.is-selected {
  border-color: #1fa3a6;
  background: #f0fbfb;
}

.sp-choice-emoji {
  font-size: 1.95rem;
  line-height: 1;
  flex-shrink: 0;
  width: 2.2rem;
  display: inline-flex;
  justify-content: center;
}

#sp-step-monitor .sp-choice strong {
  font-size: 0.95rem;
  line-height: 1.3;
}

#sp-step-monitor .sp-choice small {
  margin-top: 0.22rem;
  font-size: 0.8rem;
  line-height: 1.35;
}

#sp-step-monitor #sp-to-payment {
  margin-top: 0.62rem;
  height: 2.58rem;
  font-size: 0.95rem;
  background: #e2b08a;
  border-color: #e2b08a;
}

#sp-step-monitor #sp-to-payment:hover:not(:disabled) {
  background: #dca57c;
  border-color: #dca57c;
}

#sp-step-monitor #sp-to-payment:disabled {
  background: #e6c1a2;
  border-color: #e6c1a2;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1;
}

.sp-choice strong {
  display: block;
  color: #0b1f2a;
  font-size: 0.95rem;
}

.sp-choice small {
  display: block;
  margin-top: 0.2rem;
  color: rgba(26, 26, 26, 0.55);
  font-size: 0.8rem;
  line-height: 1.4;
}

#sp-step-payment h4 {
  font-size: 1.9rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.sp-payment-summary {
  margin-top: 0.95rem;
  border: 1px solid #bfe7e8;
  background: #edf6f7;
  border-radius: 1.2rem;
  padding: 1rem 1.12rem;
  display: flex;
  justify-content: space-between;
  gap: 0.9rem;
  align-items: center;
}

.sp-payment-summary strong {
  margin: 0;
  color: #0b1f2a;
  font-size: 1.25rem;
  line-height: 1.1;
}

.sp-payment-summary p {
  margin: 0.22rem 0 0;
  font-size: 0.8rem;
}

.sp-amount {
  font-size: 2.2rem;
  line-height: 1;
  color: #0b1f2a;
  font-weight: 800;
}

.sp-form-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.78rem;
}

.sp-form-grid label {
  display: grid;
  gap: 0.42rem;
}

.sp-form-grid span {
  font-size: 0.84rem;
  font-weight: 700;
  color: #0b1f2a;
}

.sp-form-grid input,
.sp-form-grid select {
  width: 100%;
  height: 2.7rem;
  border: 1px solid #d5dde4;
  border-radius: 0.8rem;
  padding: 0 0.9rem;
  color: #0b1f2a;
  font-size: 0.94rem;
  background: #ffffff;
}

.sp-form-grid input:focus-visible,
.sp-form-grid select:focus-visible {
  outline: 2px solid rgba(31, 163, 166, 0.33);
  outline-offset: 1px;
}

.sp-terms-note {
  margin-top: 1rem;
  border: 1px solid #e3e7ea;
  background: #f5f6f7;
  border-radius: 0.95rem;
  padding: 0.78rem 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.62rem;
}

.sp-terms-note input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.12rem;
  accent-color: #1fa3a6;
  cursor: pointer;
}

.sp-terms-note label {
  margin: 0;
  color: rgba(26, 26, 26, 0.66);
  font-size: 0.86rem;
  line-height: 1.44;
}

.sp-terms-note a {
  color: #1f7f9b;
  text-decoration: underline;
}

.sp-secure-note {
  margin-top: 0.7rem;
  border: 1px solid #dce4ea;
  background: #f8fafb;
  border-radius: 0.75rem;
  padding: 0.6rem 0.7rem;
  font-size: 0.76rem;
  color: rgba(26, 26, 26, 0.55);
}

.sp-step-actions {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.55rem;
}

.sp-step-actions-single {
  justify-content: center;
}

#sp-step-payment .sp-step-actions {
  margin-top: 0.78rem;
  align-items: center;
}

#sp-step-payment #sp-back-monitor {
  min-width: 5.4rem;
  height: 2.65rem;
  font-size: 0.88rem;
}

#sp-step-payment #sp-pay {
  height: 2.65rem;
  font-size: 0.95rem;
}

.sp-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  height: 2.5rem;
  padding: 0 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.sp-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.sp-btn-burnt {
  background: #d9782b;
  color: #ffffff;
  border-color: #d9782b;
  flex: 1;
}

.sp-btn-burnt:hover:not(:disabled) {
  background: #c6691d;
  border-color: #c6691d;
}

.sp-btn-ghost {
  border-color: #d8dee4;
  background: #ffffff;
  color: #0b1f2a;
}

.sp-btn-ghost:hover:not(:disabled) {
  background: #f5f7f8;
}

.sp-btn-teal {
  background: #1fa3a6;
  color: #ffffff;
  border-color: #1fa3a6;
}

.sp-btn-teal:hover:not(:disabled) {
  background: #188f91;
}

.sp-done-icon {
  width: 4.15rem;
  height: 4.15rem;
  margin: 0.25rem auto 0.7rem;
  border-radius: 999px;
  background: #dff4e6;
  display: grid;
  place-items: center;
  color: #1ba752;
  font-size: 1.8rem;
}

.sp-step-panel#sp-step-done {
  text-align: center;
}

.sp-step-panel#sp-step-done h4 {
  font-size: 2rem;
}

.sp-done-mode {
  margin-top: 0.5rem;
  color: rgba(26, 26, 26, 0.5);
  font-size: 0.84rem;
}

.is-hidden {
  display: none !important;
}

@keyframes v1000TracksSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes v1000TrackPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  50% {
    transform: scale(1.018);
    box-shadow: 0 12px 26px rgba(11, 31, 42, 0.12);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1360px) {
  .sp-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .v1000-track-card {
    width: clamp(200px, 22vw, 245px);
  }

  .v1000-roles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .v1000-talent-copy {
    max-width: 100%;
  }

  .v1000-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sp-title-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .v1000-tracks-marquee {
    padding: 0.85rem 0 1.15rem;
  }

  .v1000-track-card {
    width: 195px;
    min-height: 145px;
    padding: 0.85rem;
  }

  .v1000-track-icon {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 0.85rem;
  }

  .v1000-track-card h3 {
    font-size: 0.95rem;
  }

  .v1000-track-card p {
    font-size: 0.73rem;
  }

  .v1000-roles-grid {
    grid-template-columns: 1fr;
  }

  .v1000-opportunity-actions {
    width: 100%;
  }

  .v1000-opportunity-actions .v1000-btn {
    width: 100%;
  }

  .v1000-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .sp-hero-inner {
    padding: 1.45rem 0 2.05rem;
  }

  .sp-hero-stats {
    gap: 0.75rem;
  }

  .sp-section {
    padding: 1.25rem 0 2.1rem;
  }

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

  .sp-modal-card {
    width: min(100% - 1rem, 33rem);
    border-radius: 1.2rem;
    max-height: calc(100dvh - 0.75rem);
  }

  .sp-modal-card[data-step="monitor"] {
    width: min(100% - 1rem, 32rem);
  }

  .sp-modal-header {
    padding: 1rem 1rem 1.1rem;
  }

  .sp-modal-avatar {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }

  .sp-modal-header h3 {
    font-size: 1.45rem;
  }

  .sp-modal-header p {
    font-size: 0.9rem;
  }

  .sp-modal-body {
    padding: 0.95rem;
  }

  #sp-step-monitor h4 {
    font-size: 1.55rem;
  }

  #sp-step-monitor > p {
    font-size: 0.9rem;
  }

  #sp-step-monitor .sp-choice {
    border-radius: 1rem;
    padding: 0.8rem;
  }

  #sp-step-monitor .sp-choice-emoji {
    font-size: 1.5rem;
    width: 2rem;
  }

  #sp-step-monitor .sp-choice strong {
    font-size: 0.92rem;
  }

  #sp-step-monitor .sp-choice small {
    font-size: 0.78rem;
  }

  #sp-step-monitor #sp-to-payment {
    height: 2.35rem;
    font-size: 0.88rem;
  }

  #sp-step-payment h4 {
    font-size: 1.45rem;
  }

  .sp-payment-summary strong {
    font-size: 1.3rem;
  }

  .sp-amount {
    font-size: 2rem;
  }

  .sp-form-grid input,
  .sp-form-grid select {
    height: 2.4rem;
    font-size: 0.87rem;
  }

  .sp-terms-note {
    padding: 0.65rem 0.72rem;
  }

  #sp-step-payment #sp-back-monitor,
  #sp-step-payment #sp-pay {
    height: 2.55rem;
    font-size: 0.92rem;
  }
}

.tp-phone-group {
  align-items: center;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: minmax(108px, 132px) minmax(0, 1fr);
  width: 100%;
}

.tp-phone-code-select {
  appearance: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  height: 56px;
  line-height: 1.2;
  padding: 0 0.85rem;
  width: 100%;
}

.tp-phone-input {
  width: 100%;
}

@media (max-width: 640px) {
  .tp-phone-group {
    gap: 0.6rem;
    grid-template-columns: 1fr;
  }
}

@media (min-width: 680px) {
  .sp-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sp-form-grid label:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-height: 900px) {
  .sp-modal-card {
    width: min(calc(100% - 1rem), 680px);
  }

  .sp-modal-header {
    padding: 0.75rem 1rem;
  }

  .sp-modal-avatar {
    width: 3.4rem;
    height: 3.4rem;
    font-size: 1.9rem;
  }

  #sp-step-monitor h4 {
    font-size: 1.75rem;
  }

  #sp-step-monitor > p {
    font-size: 0.9rem;
  }

  .sp-choice {
    padding: 0.62rem 0.75rem;
  }

  .sp-choice-emoji {
    font-size: 1.7rem;
    width: 2rem;
  }

  #sp-step-monitor .sp-choice strong {
    font-size: 0.9rem;
  }

  #sp-step-monitor .sp-choice small {
    font-size: 0.76rem;
  }

  #sp-step-monitor #sp-to-payment {
    height: 2.4rem;
    font-size: 0.95rem;
  }

  #sp-step-payment h4 {
    font-size: 1.45rem;
  }

  .sp-payment-summary {
    margin-top: 0.65rem;
    padding: 0.7rem 0.85rem;
  }

  .sp-payment-summary strong {
    font-size: 1.05rem;
  }

  .sp-amount {
    font-size: 1.8rem;
  }

  .sp-form-grid {
    margin-top: 0.68rem;
    gap: 0.58rem;
  }

  .sp-form-grid span {
    font-size: 0.78rem;
  }

  .sp-form-grid input,
  .sp-form-grid select {
    height: 2.32rem;
    font-size: 0.86rem;
  }

  .sp-terms-note {
    margin-top: 0.65rem;
    padding: 0.55rem 0.65rem;
  }

  .sp-terms-note label {
    font-size: 0.78rem;
  }

  #sp-step-payment .sp-step-actions {
    margin-top: 0.62rem;
  }

  #sp-step-payment #sp-back-monitor,
  #sp-step-payment #sp-pay {
    height: 2.35rem;
    font-size: 0.85rem;
  }
}

@media (max-height: 760px) {
  .sp-modal-card {
    width: min(calc(100% - 1rem), 640px);
  }

  .sp-modal-header {
    padding: 0.62rem 0.85rem;
  }

  .sp-modal-avatar {
    width: 2.9rem;
    height: 2.9rem;
    font-size: 1.55rem;
  }

  .sp-modal-header h3 {
    font-size: 1.45rem;
  }

  .sp-modal-header p {
    font-size: 0.72rem;
  }

  .sp-modal-body {
    padding: 0.75rem 0.9rem 0.82rem;
  }

  #sp-step-monitor h4 {
    font-size: 1.55rem;
  }

  #sp-step-monitor > p {
    margin-top: 0.45rem;
    font-size: 0.82rem;
  }

  .sp-choice {
    padding: 0.5rem 0.62rem;
  }

  .sp-choice-emoji {
    font-size: 1.48rem;
  }

  #sp-step-monitor .sp-choice strong {
    font-size: 0.84rem;
  }

  #sp-step-monitor .sp-choice small {
    margin-top: 0.15rem;
    font-size: 0.71rem;
    line-height: 1.28;
  }

  #sp-step-monitor #sp-to-payment {
    margin-top: 0.5rem;
    height: 2.2rem;
    font-size: 0.86rem;
  }

  #sp-step-payment h4 {
    font-size: 1.3rem;
  }

  .sp-payment-summary {
    margin-top: 0.5rem;
    padding: 0.52rem 0.7rem;
  }

  .sp-payment-summary strong {
    font-size: 0.92rem;
  }

  .sp-payment-summary p {
    font-size: 0.7rem;
  }

  .sp-amount {
    font-size: 1.5rem;
  }

  .sp-form-grid {
    margin-top: 0.5rem;
    gap: 0.42rem;
  }

  .sp-form-grid span {
    font-size: 0.72rem;
  }

  .sp-form-grid input,
  .sp-form-grid select {
    height: 2.05rem;
    font-size: 0.8rem;
  }

  .sp-terms-note {
    margin-top: 0.45rem;
    padding: 0.42rem 0.55rem;
    gap: 0.5rem;
  }

  .sp-terms-note label {
    font-size: 0.72rem;
    line-height: 1.32;
  }

  #sp-step-payment .sp-step-actions {
    margin-top: 0.5rem;
    gap: 0.45rem;
  }

  #sp-step-payment #sp-back-monitor,
  #sp-step-payment #sp-pay {
    height: 2.2rem;
    font-size: 0.8rem;
  }
}

/* =========================
   Student Journey (Apply)
   ========================= */
.tp-apply-page {
  background: #f5f6f7;
  color: #0b1f2a;
  font-size: 14px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.tp-apply-main {
  min-height: 100vh;
  padding: 2rem 1rem 4rem;
}

.tp-apply-wrap {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
}

.tp-apply-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(26, 26, 26, 0.56);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.tp-apply-back:hover {
  color: #0b1f2a;
}

.tp-apply-back span {
  font-size: 1rem;
  line-height: 1;
}

.tp-apply-header {
  text-align: center;
}

.tp-apply-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e2f0ef;
  color: #1c9da0;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.38rem 1rem;
  margin-bottom: 0.75rem;
}

.tp-apply-header h1 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0;
  color: #0b1f2a;
  font-weight: 800;
}

.tp-apply-header p {
  margin: 0.5rem 0 0;
  color: rgba(26, 26, 26, 0.56);
  font-size: 0.875rem;
}

.tp-stepper {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  overflow-x: auto;
}

.tp-stepper li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex: 1 1 0;
  color: rgba(26, 26, 26, 0.35);
  font-size: 0.75rem;
  font-weight: 600;
  min-height: 2rem;
  min-width: max-content;
}

.tp-stepper li:last-child {
  flex: 0 0 auto;
}

.tp-stepper li::after {
  content: "";
  display: block;
  flex: 1;
  min-width: 1rem;
  margin: 0 0.5rem;
  height: 2px;
  background: #ddd8d5;
}

.tp-stepper li:last-child::after {
  display: none;
}

.tp-step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid #d7d2ce;
  background: #ffffff;
  color: rgba(26, 26, 26, 0.42);
  flex-shrink: 0;
}

.tp-step-label {
  display: none;
  font-size: 0.75rem;
  color: rgba(26, 26, 26, 0.34);
  font-weight: 500;
  white-space: nowrap;
}

.tp-stepper li.is-active .tp-step-number {
  border-color: #0b1f2a;
  background: #0b1f2a;
  color: #ffffff;
}

.tp-stepper li.is-active .tp-step-label {
  color: #0b1f2a;
  font-weight: 600;
}

.tp-stepper li.is-complete .tp-step-number {
  border-color: #1fa3a6;
  background: #1fa3a6;
  color: #ffffff;
}

.tp-stepper li.is-complete .tp-step-label {
  color: #1a8e91;
}

.tp-apply-form {
  background: #ffffff;
  border: 1px solid #e4e1de;
  border-radius: 1.5rem;
  box-shadow: 0 2px 8px rgba(11, 31, 42, 0.04);
  padding: 1.5rem;
}

.tp-step-panel {
  display: none;
}

.tp-step-panel.is-active {
  display: block;
}

.tp-step-kicker {
  margin: 0;
  color: #1fa3a6;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tp-step-panel h2 {
  margin: 0.3rem 0 1.5rem;
  font-size: 1.75rem;
  line-height: 1.2;
  color: #0b1f2a;
  font-weight: 800;
}

.tp-step-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  margin: 0.3rem 0 1.5rem;
}

.tp-step-heading h2 {
  margin: 0;
}

.tp-btn-aptitude {
  min-width: 7.25rem;
  white-space: nowrap;
}

.tp-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tp-field {
  display: grid;
  gap: 0.375rem;
}

.tp-field-wide {
  grid-column: 1 / -1;
}

.tp-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0b1f2a;
}

.tp-field label span {
  color: #df7f36;
}

.tp-field input,
.tp-field select,
.tp-field textarea,
.tp-sponsor-input {
  width: 100%;
  border: 1px solid #d9d4d1;
  background: #ffffff;
  border-radius: 0.75rem;
  color: #0b1f2a;
  padding: 0 1rem;
  font-size: 0.875rem;
  line-height: 1.4;
}

.tp-field input,
.tp-field select {
  height: 2.75rem;
}

.tp-field textarea {
  min-height: 6rem;
  padding: 0.75rem 1rem;
  resize: vertical;
}

.tp-field input:focus,
.tp-field select:focus,
.tp-field textarea:focus,
.tp-sponsor-input:focus {
  outline: none;
  border-color: #1fa3a6;
  box-shadow: 0 0 0 3px rgba(31, 163, 166, 0.12);
}

.tp-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #818181 50%),
    linear-gradient(135deg, #818181 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 52%,
    calc(100% - 12px) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

.tp-device-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tp-check-card {
  position: relative;
  border: 1px solid #d9d4d0;
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 3.25rem;
  color: #0b1f2a;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
}

.tp-check-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tp-check-icon {
  width: 1rem;
  height: 1rem;
  border-radius: 0.2rem;
  border: 1px solid #cfd8dc;
  background: #ffffff;
  color: transparent;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}

.tp-check-card input:checked + .tp-check-icon {
  background: #1fa3a6;
  border-color: #1fa3a6;
  color: #ffffff;
}

.tp-check-card:has(input:checked) {
  border-color: #a9d8d9;
  background: #eef9f9;
}

.tp-select-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.tp-select-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tp-select-card {
  text-align: left;
  border: 2px solid #d9d4d1;
  border-radius: 0.95rem;
  background: #ffffff;
  min-height: 5.9rem;
  padding: 0.82rem;
  display: grid;
  align-content: start;
  gap: 0.38rem;
  transition: 0.2s ease;
}

.tp-select-card:hover {
  border-color: #b3dfe0;
}

.tp-select-card.is-selected {
  border-color: #1fa3a6;
  background: #edf8f8;
  box-shadow: inset 0 0 0 1px rgba(31, 163, 166, 0.12);
}

.tp-select-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.tp-intent-emoji {
  font-size: 1.4rem;
  line-height: 1;
}

.tp-select-card strong {
  display: block;
  margin-top: 0.08rem;
  color: #0b1f2a;
  font-size: clamp(0.9rem, 1vw, 1.02rem);
  line-height: 1.22;
  font-weight: 800;
}

.tp-select-card p {
  margin: 0;
  color: rgba(26, 26, 26, 0.52);
  font-size: clamp(0.8rem, 0.88vw, 0.9rem);
  line-height: 1.38;
}

.tp-select-card-compact {
  min-height: 5.35rem;
}

.tp-chip-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.tp-chip {
  border: 2px solid #dbd7d3;
  border-radius: 0.95rem;
  background: #ffffff;
  color: #0b1f2a;
  min-height: 2.58rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.82rem, 0.95vw, 0.9rem);
  font-weight: 700;
}

.tp-chip.is-selected {
  background: #ecf8f8;
  border-color: #1fa3a6;
  color: #1a8f92;
}

.tp-payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tp-aptitude-summary {
  border: 1px solid #bae5e5;
  background: #edf8f8;
  border-radius: 1rem;
  padding: 0.85rem;
}

.tp-aptitude-summary-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
}

.tp-aptitude-summary h3 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1f9ea1;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
}

.tp-aptitude-summary p {
  margin: 0.55rem 0 0;
  color: rgba(26, 26, 26, 0.63);
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  line-height: 1.45;
}

.tp-aptitude-timer {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(31, 163, 166, 0.2);
  background: rgba(255, 255, 255, 0.78);
  color: #1e8f93;
  min-width: 6.5rem;
}

.tp-aptitude-timer span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tp-aptitude-timer strong {
  font-size: 1.2rem;
  line-height: 1;
}

.tp-aptitude-timer.is-over {
  border-color: rgba(194, 89, 46, 0.28);
  background: rgba(255, 243, 235, 0.9);
  color: #c2592e;
}

.tp-aptitude-timer-note {
  margin: 0.6rem 0 0;
  color: #1e8f93;
  font-size: 0.88rem;
  font-weight: 700;
}

.tp-aptitude-progress {
  margin-top: 0.95rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.tp-aptitude-progress-track {
  width: 100%;
  height: 0.75rem;
  border-radius: 999px;
  background: #d4d1ce;
  overflow: hidden;
}

.tp-aptitude-progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #1fa3a6;
}

.tp-aptitude-progress strong {
  color: #1f9ea1;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1;
}

.tp-quiz-grid {
  display: grid;
  gap: 0.72rem;
}

.tp-quiz-shell {
  position: relative;
  margin-top: 0.85rem;
}

.tp-quiz-lock {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 1.5rem;
  text-align: center;
  border-radius: 1rem;
  background: rgba(237, 248, 248, 0.66);
  color: #0b1f2a;
  pointer-events: none;
}

.tp-quiz-lock strong {
  font-size: 1rem;
  color: #1e8f93;
}

.tp-quiz-lock span {
  max-width: 26rem;
  color: rgba(11, 31, 42, 0.7);
  font-size: 0.92rem;
  line-height: 1.45;
}

.tp-quiz-lock.is-hidden {
  display: none;
}

.tp-quiz-shell.is-locked .tp-quiz-grid {
  filter: blur(7px);
  pointer-events: none;
  user-select: none;
}

.tp-quiz-shell.is-completed .tp-quiz-item {
  border-color: #b8dedd;
}

.tp-quiz-item {
  border: 1px solid #ddd9d6;
  border-radius: 0.95rem;
  background: #ffffff;
  padding: 0.85rem;
}

.tp-quiz-item > p {
  margin: 0;
  color: #0b1f2a;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.35;
  font-weight: 700;
}

.tp-quiz-item > p span {
  color: #1fa3a6;
  margin-right: 0.3rem;
}

.tp-quiz-options {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.tp-quiz-choice {
  border: 2px solid #ddd8d5;
  border-radius: 0.85rem;
  background: #ffffff;
  padding: 0.7rem 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.55rem;
  color: rgba(26, 26, 26, 0.7);
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  font-weight: 600;
  cursor: pointer;
}

.tp-quiz-choice input {
  display: none;
}

.tp-quiz-choice-key {
  color: rgba(26, 26, 26, 0.72);
  font-size: inherit;
  font-weight: 700;
}

.tp-quiz-choice.is-selected,
.tp-quiz-choice:has(input:checked) {
  border-color: #1fa3a6;
  background: #e6f4f4;
  color: #1e8f93;
}

.tp-quiz-choice.is-selected .tp-quiz-choice-key,
.tp-quiz-choice:has(input:checked) .tp-quiz-choice-key {
  color: #1e8f93;
}

.tp-apt-note {
  border: 1px dashed #d7d2ce;
  background: #faf9f8;
  border-radius: 1rem;
  padding: 1rem;
  color: rgba(26, 26, 26, 0.56);
  font-size: clamp(1.02rem, 1.25vw, 1.36rem);
}

.tp-sponsor-stack {
  display: grid;
  gap: 0.9rem;
}

.tp-sponsor-block {
  border: 1px solid #ddd7d3;
  border-radius: 1rem;
  background: #ffffff;
  padding: 0.85rem 0.95rem;
}

.tp-sponsor-title {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin-bottom: 0.45rem;
}



.tp-number-badge {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: #0b1f2a;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.tp-number-badge-warn {
  background: #d97a2b;
}

.tp-sponsor-title h3 {
  margin: 0;
  font-size: clamp(1.02rem, 1.2vw, 1.2rem);
  color: #0b1f2a;
}

.tp-sponsor-title h3 span {
  color: #de7a2f;
  margin-left: 0.22rem;
}

.tp-sponsor-title h3 span.is-optional {
  color: rgba(26, 26, 26, 0.38);
  font-weight: 500;
}

.tp-sponsor-help {
  margin: 0 0 0.68rem;
  color: rgba(26, 26, 26, 0.6);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.45;
}

.tp-sponsor-input {
  min-height: 7.5rem;
  padding: 0.75rem 0.9rem;
  resize: vertical;
}

.tp-sponsor-input-lg {
  min-height: 8.8rem;
}

.tp-word-count {
  margin: 0.45rem 0 0;
  text-align: right;
  color: rgba(26, 26, 26, 0.42);
  font-size: clamp(0.86rem, 0.95vw, 0.95rem);
}

.tp-word-min {
  margin-left: 0.34rem;
}

.tp-word-count.is-over,
.tp-sponsor-input.is-over-limit {
  color: #b94343;
  border-color: #d46a6a;
}

.tp-upload-shell {
  display: grid;
  gap: 0.8rem;
}

.tp-upload-control {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.tp-upload-avatar {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  border: 2px dashed #d8d3cf;
  background: #f7f6f5;
  display: grid;
  place-items: center;
  color: rgba(26, 26, 26, 0.4);
  font-size: 1.2rem;
  background-size: cover;
  background-position: center;
}

.tp-upload-avatar.has-image span {
  display: none;
}

.tp-upload-avatar-video {
  font-size: 1.05rem;
}

.tp-upload-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.6rem;
  border-radius: 999px;
  border: 2px solid #1fa3a6;
  color: #1a8e92;
  font-size: 1rem;
  font-weight: 700;
  padding: 0 0.95rem;
  cursor: pointer;
  background: #f4fbfb;
}

.tp-upload-button:hover {
  background: #e6f6f6;
}

#profile_picture_upload,
#sponsorship_video_upload {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.tp-upload-preview {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid #dde7ea;
  border-radius: 1rem;
  background: #f8fcfc;
  padding: 0.6rem 0.75rem;
}

.tp-upload-preview img {
  width: 3rem;
  height: 3rem;
  border-radius: 0.8rem;
  object-fit: cover;
}

.tp-upload-preview p {
  margin: 0;
  color: rgba(26, 26, 26, 0.62);
  font-size: 1rem;
}

.tp-upload-preview-video {
  align-items: flex-start;
}

.tp-upload-preview-video video {
  width: min(100%, 15rem);
  aspect-ratio: 16 / 9;
  border-radius: 0.8rem;
  background: #dfe9ec;
}

.tp-upload-preview-copy {
  display: grid;
  gap: 0.25rem;
}

.tp-upload-preview-copy small {
  color: rgba(26, 26, 26, 0.55);
  font-size: 0.85rem;
}

/* ── Inline upload status ── */
.tp-upload-status {
  margin: 0;
  min-height: 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(26, 26, 26, 0.5);
}

.tp-upload-status.is-loading {
  color: #1a8e92;
  animation: tp-status-pulse 1.2s ease-in-out infinite;
}

.tp-upload-status.is-ok {
  color: #1a8f55;
}

.tp-upload-status.is-error {
  color: #b93a3a;
}

@keyframes tp-status-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

/* Upload button loading state */
.tp-upload-button.is-uploading {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
  border-style: dashed;
}

.tp-consent-grid {
  display: grid;
  gap: 0.6rem;
}

.tp-consent-line {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(26, 26, 26, 0.72);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.45;
}

.tp-consent-line input {
  margin-top: 0.13rem;
  width: 1.2rem;
  height: 1.2rem;
  accent-color: #1fa3a6;
}

.tp-consent-grid-boxed .tp-consent-line-boxed {
  border: 1px solid #d9d4d0;
  border-radius: 1rem;
  background: #ffffff;
  min-height: 3.65rem;
  padding: 0.8rem 0.9rem;
}

.tp-review-score-card {
  border: 3px solid #f0c99a;
  background: #f9f3ea;
  border-radius: 1.1rem;
  padding: 0.85rem;
  text-align: center;
}

.tp-review-score-card.is-strong {
  border-color: #9fd9b5;
  background: #eaf9f0;
}

.tp-review-score-card.is-mid {
  border-color: #f0c99a;
  background: #f9f3ea;
}

.tp-review-score-card.is-low {
  border-color: #f0c99a;
  background: #f9f3ea;
}

.tp-review-score-label {
  margin: 0;
  color: rgba(26, 26, 26, 0.6);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
}

.tp-review-score-value {
  margin: 0.4rem 0 0;
  color: #d9782b;
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  line-height: 1;
  font-weight: 800;
}

.tp-review-score-card.is-strong .tp-review-score-value {
  color: #129a4e;
}

.tp-review-score-total {
  margin: 0.2rem 0 0;
  color: rgba(26, 26, 26, 0.45);
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.tp-review-score-breakdown {
  margin: 0.75rem 0 0;
  color: rgba(26, 26, 26, 0.55);
  font-size: clamp(0.92rem, 1.02vw, 1rem);
}

.tp-review-score-breakdown strong {
  color: #0b1f2a;
}

.tp-review-score-breakdown span {
  margin: 0 0.25rem;
}

.tp-review-score-message {
  margin: 0.58rem 0 0;
  color: rgba(26, 26, 26, 0.72);
  font-size: clamp(0.9rem, 1vw, 0.98rem);
}

.tp-review-box {
  margin-top: 0.95rem;
  border: 1px solid #d8d2ce;
  border-radius: 1.35rem;
  overflow: hidden;
  background: #ffffff;
}

.tp-review-section {
  padding: 0.35rem 1rem;
  border-top: 1px solid #ece6e2;
}

.tp-review-section:first-child {
  border-top: 0;
}

.tp-review-section-title {
  margin: 0.48rem 0 0.28rem;
  color: #1fa3a6;
  font-size: clamp(1rem, 1.3vw, 1.3rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tp-review-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.9rem;
  padding: 0.72rem 0;
  border-top: 1px dashed #e2ddd9;
}

.tp-review-row:first-of-type {
  border-top: 0;
}

.tp-review-row span {
  color: rgba(26, 26, 26, 0.58);
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.tp-review-row strong {
  color: #0b1f2a;
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  text-align: right;
}

.tp-review-footnote {
  margin: 0.7rem 0 0;
  text-align: center;
  color: rgba(26, 26, 26, 0.44);
  font-size: clamp(0.95rem, 1.1vw, 1.2rem);
}

.tp-form-actions {
  margin-top: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.tp-action-timer {
  flex: 1;
  min-width: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  text-align: center;
  color: #1e8f93;
}

.tp-action-timer span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tp-action-timer strong {
  font-size: 1.15rem;
  line-height: 1;
}

.tp-action-timer.is-over {
  color: #c2592e;
}

.tp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  padding: 0 1rem;
  font-size: clamp(0.82rem, 0.95vw, 0.9rem);
  font-weight: 700;
  transition: 0.2s ease;
}

.tp-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.tp-btn-primary {
  background: #84cfd1;
  color: #ffffff;
  border-color: #84cfd1;
}

.tp-btn-primary.is-ready {
  background: #1fa3a6;
  border-color: #1fa3a6;
}

.tp-btn-primary:hover:not(:disabled) {
  background: #169296;
  border-color: #169296;
}

.tp-btn-ghost {
  background: #ffffff;
  border-color: #ddd8d5;
  color: #0b1f2a;
}

.tp-btn-ghost:hover:not(:disabled) {
  background: #f7f8f9;
}

.tp-btn-block {
  width: 100%;
}

.tp-feedback {
  margin: 0.65rem 0 0;
  min-height: 1.3rem;
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.56);
}

.tp-feedback.is-error {
  color: #ba3a3a;
}

.tp-feedback.is-ok {
  color: #188b56;
}

.tp-success-card {
  margin-top: 0.8rem;
  border: 1px solid #dbd6d2;
  border-radius: 2rem;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(11, 31, 42, 0.08);
  padding: 1.4rem;
  text-align: center;
}

.tp-success-icon {
  width: 6rem;
  height: 6rem;
  border-radius: 999px;
  background: #c6ecd1;
  margin: 0 auto 0.9rem;
  display: grid;
  place-items: center;
  color: #1ca350;
  font-size: 2.6rem;
  font-weight: 800;
}

.tp-success-card h3 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.12;
  color: #0b1f2a;
}

.tp-success-main {
  margin: 0.8rem 0 0;
  color: rgba(26, 26, 26, 0.62);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.4;
}

.tp-success-main strong {
  color: #1fa3a6;
}

.tp-success-note {
  margin-top: 1rem;
  border-radius: 1.25rem;
  border: 1px solid #ece8e5;
  background: #f6f6f6;
  padding: 1rem;
}

.tp-success-note p {
  margin: 0;
  color: rgba(26, 26, 26, 0.62);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.45;
}

.tp-success-actions {
  margin-top: 1rem;
}

.tp-success-portal {
  margin-top: 1rem;
  border-radius: 1.25rem;
  border: 1px solid #d7ecec;
  background: #f4fbfb;
  padding: 0.95rem;
  text-align: left;
}

.tp-success-portal p {
  margin: 0;
  color: rgba(26, 26, 26, 0.68);
  font-size: 0.95rem;
  font-weight: 600;
}

.tp-success-portal-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.72rem;
}

.tp-success-portal-actions .tp-btn {
  justify-content: center;
}

.tp-success-share {
  margin-top: 1rem;
  border-radius: 1.25rem;
  border: 1px solid #ece8e5;
  background: #fbfbfb;
  padding: 0.95rem;
  text-align: left;
}

.tp-success-share-label {
  margin: 0;
  color: rgba(26, 26, 26, 0.72);
  font-size: 0.95rem;
  font-weight: 600;
}

.tp-success-share-row {
  margin-top: 0.72rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
}

.tp-success-share-row a {
  border: 1px dashed #d9d4d0;
  border-radius: 0.9rem;
  padding: 0.58rem 0.72rem;
  color: #0b1f2a;
  font-size: 0.86rem;
  line-height: 1.4;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.tp-success-copy {
  min-width: 8.6rem;
}

.tp-success-copy-feedback {
  margin: 0.58rem 0 0;
  min-height: 1.1rem;
  color: rgba(26, 26, 26, 0.58);
  font-size: 0.82rem;
}

@media (min-width: 640px) {
  .tp-apply-header h1 {
    font-size: 1.875rem;
  }

  .tp-step-label {
    display: inline;
  }

  .tp-apply-form {
    padding: 2rem;
  }
}

@media (max-width: 1100px) {
  .tp-form-grid {
    grid-template-columns: 1fr;
  }

  .tp-select-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tp-chip-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tp-payment-grid,
  .tp-device-grid,
  .tp-quiz-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .tp-apply-page {
    font-size: 13px;
  }

  .tp-apply-main {
    padding: 1rem 0.5rem 2.5rem;
  }

  .tp-apply-wrap {
    width: 100%;
    max-width: none;
  }

  .tp-apply-form {
    border-radius: 1.25rem;
    padding: 1.25rem;
  }

  .tp-stepper {
    overflow-x: auto;
    gap: 0.45rem;
    padding-bottom: 0.2rem;
  }

  .tp-stepper li {
    min-width: max-content;
  }

  .tp-stepper li::after {
    width: 1rem;
  }

  .tp-success-portal-actions {
    grid-template-columns: 1fr;
  }

  .tp-success-share-row {
    grid-template-columns: 1fr;
  }

  .tp-success-copy {
    width: 100%;
  }

  .tp-step-heading {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 1rem;
  }

  .tp-step-panel h2 {
    font-size: 1.5rem;
  }

  .tp-btn-aptitude {
    width: 100%;
  }

  .tp-aptitude-summary-top {
    flex-direction: column;
    align-items: stretch;
  }

  .tp-aptitude-timer {
    align-items: flex-start;
  }

  .tp-field label {
    font-size: 0.875rem;
  }

  .tp-field input,
  .tp-field select,
  .tp-field textarea,
  .tp-sponsor-input {
    font-size: 0.875rem;
    border-radius: 0.75rem;
  }

  .tp-select-grid,
  .tp-select-grid-2 {
    grid-template-columns: 1fr;
  }

  .tp-select-card {
    min-height: 6rem;
  }

  .tp-sponsor-input-lg {
    min-height: 9rem;
  }

  .tp-form-actions {
    flex-wrap: wrap;
    padding-top: 0.6rem;
  }

  .tp-action-timer {
    order: 3;
    width: 100%;
    flex-basis: 100%;
  }

  .tp-btn {
    min-height: 2.75rem;
    font-size: 0.875rem;
    padding: 0 1rem;
  }
}

/* =========================
   Sponsor Monitor Modal (Exact Fit)
   ========================= */
.sp-modal-card[data-step="monitor"] {
  width: min(calc(100% - 2rem), 37rem);
  max-height: calc(100dvh - 1.5rem);
  margin: 0.75rem auto;
}

.sp-modal-card[data-step="monitor"] .sp-modal-header {
  padding: 0.95rem 1.15rem;
}

.sp-modal-card[data-step="monitor"] .sp-modal-avatar {
  width: 4.1rem;
  height: 4.1rem;
  font-size: 2.2rem;
}

.sp-modal-card[data-step="monitor"] .sp-modal-header h3 {
  font-size: clamp(1.9rem, 2.8vw, 2.35rem);
  line-height: 1.08;
}

.sp-modal-card[data-step="monitor"] .sp-modal-header p {
  margin-top: 0.22rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.76);
}

.sp-modal-card[data-step="monitor"] .sp-modal-body {
  padding: 1rem 1.15rem 1.1rem;
  overflow: hidden;
}

#sp-step-monitor h4 {
  font-size: clamp(1.55rem, 2.15vw, 1.9rem);
  line-height: 1.14;
}

#sp-step-monitor > p {
  margin-top: 0.58rem;
  font-size: 0.95rem;
  line-height: 1.33;
}

#sp-step-monitor .sp-choice-stack {
  margin-top: 0.82rem;
  gap: 0.62rem;
}

#sp-step-monitor .sp-choice {
  border-radius: 1.05rem;
  padding: 0.8rem 0.86rem;
}

#sp-step-monitor .sp-choice-emoji {
  width: 2.15rem;
  font-size: 1.9rem;
}

#sp-step-monitor .sp-choice strong {
  font-size: 0.95rem;
  line-height: 1.28;
}

#sp-step-monitor .sp-choice small {
  margin-top: 0.16rem;
  font-size: 0.8rem;
  line-height: 1.33;
}

#sp-step-monitor #sp-to-payment {
  margin-top: 0.66rem;
  height: 2.86rem;
  font-size: 0.94rem;
}

@media (max-width: 1024px) {
  .sp-modal-card[data-step="monitor"] {
    width: min(calc(100% - 1.35rem), 33.5rem);
    max-height: calc(100dvh - 1.2rem);
  }

  #sp-step-monitor h4 {
    font-size: 1.58rem;
  }

  #sp-step-monitor > p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .sp-modal-card[data-step="monitor"] {
    width: min(calc(100% - 1rem), 31rem);
    max-height: calc(100dvh - 1rem);
    margin: 0.4rem auto;
  }

  .sp-modal-card[data-step="monitor"] .sp-modal-header {
    padding: 0.84rem 0.95rem;
  }

  .sp-modal-card[data-step="monitor"] .sp-modal-avatar {
    width: 2.95rem;
    height: 2.95rem;
    font-size: 1.5rem;
  }

  .sp-modal-card[data-step="monitor"] .sp-modal-header h3 {
    font-size: 1.45rem;
  }

  .sp-modal-card[data-step="monitor"] .sp-modal-header p {
    font-size: 0.76rem;
  }

  .sp-modal-card[data-step="monitor"] .sp-modal-body {
    padding: 0.82rem 0.9rem 0.9rem;
  }

  #sp-step-monitor h4 {
    font-size: 1.35rem;
    line-height: 1.15;
  }

  #sp-step-monitor > p {
    margin-top: 0.45rem;
    font-size: 0.82rem;
    line-height: 1.3;
  }

  #sp-step-monitor .sp-choice {
    padding: 0.68rem 0.74rem;
  }

  #sp-step-monitor .sp-choice strong {
    font-size: 0.84rem;
  }

  #sp-step-monitor .sp-choice small {
    font-size: 0.72rem;
  }

  #sp-step-monitor #sp-to-payment {
    height: 2.45rem;
    font-size: 0.83rem;
  }
}

.sp-level-section {
  margin: 1.25rem 0;
  border-top: 1px solid #eef2f4;
  padding-top: 1.25rem;
}

.sp-level-section h5 {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.sp-level-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.sp-level-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.85rem 0.5rem;
  border-radius: 12px;
  border: 1.5px solid #dde6eb;
  background: #fbfdfe;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.sp-level-btn:hover {
  border-color: var(--teal);
  background: #f4fbfc;
}

.sp-level-btn.is-active {
  border-color: var(--teal);
  background: #eaf8f8;
  box-shadow: 0 4px 12px rgba(31, 163, 166, 0.12);
}

.sp-level-check {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid #dde6eb;
  margin-bottom: 0.5rem;
  position: relative;
  transition: all 0.2s ease;
}

.sp-level-btn.is-active .sp-level-check {
  border-color: var(--teal);
  background: var(--teal);
}

.sp-level-btn.is-active .sp-level-check::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
}

.sp-level-label {
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1;
}

.sp-level-amount {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.28rem;
  font-weight: 500;
}

.sp-level-btn.is-active .sp-level-amount {
  color: #0d7072;
}

@media (max-width: 640px) {
  .sp-level-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Custom Alert Modal */
.sp-alert-card {
  width: 90%;
  max-width: 400px;
  background: #fff;
  border-radius: 20px;
  padding: 2.25rem;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: sp-alert-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes sp-alert-in {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.sp-alert-icon {
  width: 64px;
  height: 64px;
  background: #fff9f0;
  color: #f59e0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.25rem;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.sp-alert-card h4 {
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.sp-alert-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.sp-alert-card .sp-btn {
  width: 100%;
  height: 3rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
}

/* Admin Dashboard Metrics */
.ad-metrics-box {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.ad-metrics-box h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--navy);
}

.ad-metric-row {
  margin-bottom: 1rem;
}

.ad-metric-label {
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  display: flex;
  justify-content: space-between;
}

.ad-metric-bar {
  height: 10px;
  background: #e2e8f0;
  border-radius: 5px;
  overflow: hidden;
}

.ad-metric-bar .fill {
  height: 100%;
  background: var(--teal);
  transition: width 0.4s ease;
}

.ad-metric-bar .fill.perf {
  background: #6366f1; /* purple-ish */
}

.ad-metric-bar .fill.funded {
  background: #f59e0b; /* amber */
}

.ad-scores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #cbd5e1;
}

.ad-scores-grid div {
  font-size: 0.75rem;
  color: var(--muted);
}

.ad-scores-grid b {
  color: var(--navy);
  font-size: 0.9rem;
  display: block;
}

/* Vertical Responsiveness for Sponsorship Form */
@media (max-height: 820px) {
  .sp-modal-card {
    border-radius: 1.25rem;
  }
  .sp-modal-header {
    padding: 0.75rem 1rem;
  }
  .sp-modal-avatar {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.8rem;
  }
  .sp-modal-body {
    padding: 0.75rem 1rem 0.85rem;
  }
  #sp-step-payment h4 {
    font-size: 1.4rem;
  }
  .sp-level-section {
    margin: 0.75rem 0;
    padding-top: 0.75rem;
  }
  .sp-level-section h5 {
    margin-bottom: 0.5rem;
  }
  .sp-level-btn {
    padding: 0.5rem 0.25rem;
  }
  .sp-payment-summary {
    margin-top: 0.6rem;
    padding: 0.6rem 0.85rem;
  }
  .sp-current-amount {
    font-size: 1.75rem;
  }
  .sp-form-grid {
    margin-top: 0.75rem;
    gap: 0.5rem;
  }
  .sp-form-grid input, .sp-form-grid select {
    height: 2.35rem;
    padding: 0 0.75rem;
    font-size: 0.88rem;
  }
  .sp-terms-note {
    margin-top: 0.75rem;
    padding: 0.5rem 0.75rem;
  }
  .sp-step-actions {
    margin-top: 0.65rem;
  }
}

@media (max-height: 720px) {
  .sp-modal-card {
    border-radius: 1rem;
  }
  .sp-modal-header h3 {
    font-size: 1.5rem;
  }
  .sp-modal-header p {
    font-size: 0.8rem;
  }
  .sp-modal-body {
    padding: 0.65rem 0.85rem;
  }
  #sp-step-payment h4 {
    font-size: 1.2rem;
  }
  .sp-level-grid {
    gap: 0.4rem;
  }
  .sp-level-btn {
    padding: 0.4rem 0.2rem;
    border-radius: 8px;
  }
  .sp-payment-summary {
    padding: 0.5rem 0.75rem;
  }
  .sp-form-grid {
    gap: 0.35rem;
  }
  .sp-form-grid span {
    font-size: 0.75rem;
  }
  .sp-form-grid input, .sp-form-grid select {
    height: 2.1rem;
  }
  .sp-terms-note {
    padding: 0.4rem 0.6rem;
  }
  .sp-terms-note label {
    font-size: 0.78rem;
  }
}

/* Mobile Footer Fixes */
@media (max-width: 768px) {
  .v1000-footer {
    padding: 2.5rem 1rem 1.5rem !important;
    text-align: center !important;
  }
  .v1000-footer-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2.5rem !important;
  }
  .v1000-footer-col {
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  .v1000-footer-col.brand {
    order: -1 !important;
  }
  .v1000-footer-col.brand p {
    margin: 0 auto !important;
    text-align: center !important;
  }
  .v1000-footer-bottomline {
    flex-direction: column !important;
    text-align: center !important;
    gap: 1rem !important;
    padding-top: 1.5rem !important;
  }
}
