﻿:root {
  --bg: #e9d5ff;
  --bg-alt: #ddd6fe;
  --card: rgba(233, 213, 255, 0.6);
  --accent: #9333ea;
  --accent-soft: rgba(147, 51, 234, 0.15);
  --accent-strong: #7e22ce;
  --accent-2: #c084fc;
  --text: #000000;
  --muted: #000000;
  --border: rgba(147, 51, 234, 0.25);
  --danger: #dc2626;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --shadow-soft: 0 24px 80px rgba(168, 85, 247, 0.15);
  --shadow-subtle: 0 16px 40px rgba(168, 85, 247, 0.12);
  --nav-height: 76px;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  background: linear-gradient(to bottom, #e9d5ff 0%, #ddd6fe 50%, #c4b5fd 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.page-shell {
  min-height: 100vh;
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}

.bg-orbit {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  z-index: -2;
  background:
    radial-gradient(circle at 0% 0%, rgba(192, 132, 252, 0.15) 0, transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(233, 213, 255, 0.20) 0, transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(168, 85, 247, 0.12) 0, transparent 55%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(168, 85, 247, 0.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(168, 85, 247, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.25;
  mask-image: radial-gradient(circle at top, black, transparent 65%);
  -webkit-mask-image: radial-gradient(circle at top, black, transparent 65%);
  z-index: -1;
  pointer-events: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(233, 213, 255, 0.95), rgba(233, 213, 255, 0.85), transparent);
  border-bottom: 1px solid rgba(147, 51, 234, 0.35);
}

.nav-bar {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: radial-gradient(circle at 30% 10%, #e0f2fe 0, #38bdf8 22%, #0f172a 72%, #020617 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1;
}

.brand-text span:first-child {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: #000;
  white-space: nowrap;
}

.brand-separator {
  color: #000;
  font-weight: 300;
}

.brand-text span:last-child {
  font-size: 0.85rem;
  color: #000;
  font-weight: 400;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: color 0.16s ease, background 0.16s ease, transform 0.16s ease;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #000;
  background: rgba(233, 213, 255, 0.5);
  transform: translateY(-1px);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pill {
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(148, 163, 184, 0.55);
  color: var(--muted);
}

.btn-primary {
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent-2));
  border: none;
  color: #0b1120;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(8, 47, 73, 0.85);
  transition: transform 0.14s ease, box-shadow 0.14s ease, filter 0.14s ease;
}

.btn-primary:hover {
  transform: translateY(-1px) translateZ(0);
  filter: brightness(1.05);
  box-shadow: 0 22px 55px rgba(8, 47, 73, 0.98);
}

.btn-outline {
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.16s ease;
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(148, 163, 184, 1);
  transform: translateY(-1px) translateZ(0);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
}

main {
  padding-bottom: 4rem;
}

section {
  padding: 3.5rem 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
  max-width: 720px;
}

.section-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.section-title {
  font-size: 1.8rem;
  letter-spacing: -0.03em;
  margin: 0;
  text-align: center;
}

.section-lead {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 620px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero {
  padding-top: 2.75rem;
  padding-bottom: 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.75rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.22), transparent 60%), rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.32);
  font-size: 0.72rem;
  color: #fff;
  margin-bottom: 1.1rem;
}

.hero-eyebrow strong {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}

.hero-title {
  font-size: 2.3rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
}

.hero-title span {
  background: linear-gradient(135deg, #e0f2fe, #7dd3fc, #e9d5ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 560px;
  margin-bottom: 1.7rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.35rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(56, 189, 248, 0.18);
}

.hero-panel {
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.6rem;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 55%),
              radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.22), transparent 55%),
              rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.36);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.55);
  font-size: 0.72rem;
}

.hero-panel-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric-card {
  padding: 0.85rem 0.75rem;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.78rem;
}

.metric-label {
  color: var(--muted);
  font-size: 0.7rem;
  margin-bottom: 0.35rem;
}

.metric-value {
  font-size: 1.05rem;
  font-weight: 650;
}

.metric-footnote {
  font-size: 0.68rem;
  color: rgba(156, 163, 175, 0.85);
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #bda6f9;
  line-height: 1.6;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-panel-footer strong {
  color: #000;
}

.hero-orbit-ring {
  position: absolute;
  inset: -20%;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.22);
  transform: rotate(-8deg);
  opacity: 0.4;
  pointer-events: none;
}

.hero-orbit-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  right: 6%;
  top: 8%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.35), transparent 60%);
  filter: blur(1px);
  pointer-events: none;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
  font-size: 0.7rem;
}

.pill-chip {
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  color: var(--muted);
}

.grid-two {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: flex-start;
}

.card {
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.6rem;
  background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.98));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-subtle);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.card p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: #fff;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.check-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: #fff;
}

.check-bullet {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #bbf7d0;
  margin-top: 0.15rem;
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1rem;
}

.phase-card {
  border-radius: 20px;
  padding: 1.3rem 1.2rem;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 55%),
              rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.88rem;
}

.phase-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.phase-title {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.phase-body {
  color: var(--muted);
}

.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(15, 23, 42, 0.92);
  font-size: 0.72rem;
  color: var(--muted);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.two-col-stats {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: flex-start;
}

.stat-blocks {
  display: grid;
  gap: 0.8rem;
}

.stat-line {
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.85rem;
}

.stat-label {
  color: var(--muted);
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

.stat-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.stat-main strong {
  font-size: 1.1rem;
}

.pill-row-small {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.5rem;
  font-size: 0.68rem;
}

.pill-small {
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  color: var(--muted);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.team-card {
  border-radius: 20px;
  padding: 1.2rem 1rem;
  background: rgba(15, 23, 42, 0.97);
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 0.88rem;
}

.team-role {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.team-name {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

form {
  display: grid;
  gap: 0.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.2rem;
}

input, select, textarea {
  width: 100%;
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(30, 64, 175, 0.5);
  background: rgba(255, 255, 255, 0.95);
  color: #1e293b;
  font: inherit;
  font-size: 0.86rem;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

textarea {
  border-radius: 16px;
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

input::placeholder,
textarea::placeholder {
  color: rgba(71, 85, 105, 0.6);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.6), 0 0 0 6px rgba(56, 189, 248, 0.16);
}

.helper-text {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.form-footnote {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.cta-banner {
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.5rem;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 55%),
              rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

.cta-banner h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
}

.cta-banner p {
  margin: 0;
  color: var(--muted);
}

footer {
  border-top: 1px solid rgba(30, 64, 175, 0.65);
  padding: 1.75rem 0 2.25rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), rgba(3, 7, 18, 0.98));
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
}

.footer-links a {
  color: #c4b5fd;
  text-decoration: none;
}

.footer-links a:hover {
  color: #c4b5fd;
  text-decoration: underline;
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  margin: 0.15rem 0;
  color: #c4b5fd;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  font-size: 0.7rem;
  margin-top: 0.35rem;
}

.tag-chip {
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--muted);
}

.layout-split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.list-columns {
  columns: 2;
  column-gap: 1.5rem;
  font-size: 0.88rem;
}

.list-columns p {
  break-inside: avoid;
  margin: 0 0 0.4rem;
  color: var(--muted);
}

.pill-heading {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.subtle-card {
  border-radius: 18px;
  padding: 1rem 0.95rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.84rem;
  color: var(--muted);
}

.subtle-card strong {
  color: #000;
}

.mobile-only { display: none; }

/* ===== NEW MULTI-PAGE STYLES ===== */

/* Active nav link */
.nav-links a.active {
  color: #000;
  background: rgba(56, 189, 248, 0.15);
  border-bottom: 2px solid var(--accent);
}

/* Hero variants */
.hero-home {
  padding-top: 4rem;
  padding-bottom: 4.5rem;
}

.hero-content-center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-title-large {
  font-size: 3.2rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #38bdf8, #a855f7, #22c55e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.hero-subtitle-large {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.hero-actions-center {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.btn-large {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

/* Hero stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding-top: 3rem;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #38bdf8, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Pathway cards */
.pathways-section {
  padding: 5rem 0;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.05), transparent 60%);
}

.section-header-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.pathway-card {
  border-radius: 24px;
  padding: 2.5rem 2rem;
  background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: var(--shadow-subtle);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pathway-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pathway-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.75), 0 0 0 1px rgba(56, 189, 248, 0.5);
  border-color: rgba(56, 189, 248, 0.6);
}

.pathway-card:hover::before {
  opacity: 1;
}

.pathway-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.pathway-title {
  font-size: 1.5rem;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  color: #fff;
}

.pathway-description {
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pathway-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.pathway-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #fff;
}

.feature-icon {
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
}

.pathway-outcome {
  padding: 1rem;
  background: rgba(56, 189, 248, 0.08);
  border-radius: 12px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

.pathway-outcome strong {
  color: #fff;
  display: block;
  margin-bottom: 0.3rem;
}

.pathway-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  transition: gap 0.2s ease;
}

.pathway-link:hover {
  gap: 0.7rem;
}

/* Process timeline */
.how-it-works {
  padding: 5rem 0;
  background: rgba(15, 23, 42, 0.3);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent-2));
  color: #0b1120;
  font-size: 2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 8px rgba(56, 189, 248, 0.15);
}

.process-content h3 {
  margin: 0 0 0.75rem;
  font-size: 1.3rem;
  text-align: center;
}

.process-content p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.process-duration {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  text-align: center;
}

/* Social proof section */
.social-proof {
  padding: 4rem 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(3, 7, 18, 0.98));
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3rem;
}

.proof-stat {
  text-align: center;
}

.proof-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #c4b5fd;
  margin-bottom: 0.5rem;
}

.proof-text {
  color: #fff;
  font-size: 0.9rem;
}

/* CTA section */
.cta-section {
  padding: 5rem 0;
}

.cta-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.15), transparent 70%),
              radial-gradient(circle at bottom right, rgba(168, 85, 247, 0.15), transparent 70%),
              rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.8);
}

.cta-card h2 {
  font-size: 2.2rem;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  color: #c4b5fd;
}

.cta-card p {
  color: #c4b5fd;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}

/* Page hero */
.page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.08), transparent 60%);
}

.page-title {
  font-size: 3rem;
  margin: 0 0 1rem;
  letter-spacing: -0.04em;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Training detail pages */
.training-detail {
  padding: 4rem 0;
}

.training-alt {
  background: rgba(15, 23, 42, 0.2);
}

.training-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.training-icon-large {
  font-size: 5rem;
  flex-shrink: 0;
}

.training-title {
  font-size: 2.5rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}

.training-tagline {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.training-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 2.5rem;
}

.training-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.learning-modules {
  display: grid;
  gap: 1.5rem;
}

.module {
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.module h4 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: #fff;
}

.module-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.module-list li {
  padding-left: 1.5rem;
  position: relative;
  color: #fff;
  font-size: 0.9rem;
}

.module-list li::before {
  content: 'â†’';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.outcome-grid {
  display: grid;
  gap: 1.5rem;
}

.outcome-item {
  padding: 1.25rem;
  background: rgba(56, 189, 248, 0.05);
  border-radius: 12px;
  border-left: 3px solid var(--accent);
}

.outcome-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #fff;
  font-size: 1.05rem;
}

.outcome-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.training-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
}

.fact-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.fact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.fact-label {
  color: var(--muted);
  font-size: 0.85rem;
}

.fact-value {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Footer improvements */
 .footer-address {
   margin-top: 0.5rem;
   font-size: 0.85rem;
   color: #c4b5fd;
   line-height: 1.6;
 }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
  padding-bottom: 2rem;
}

.footer-col h4 {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #c4b5fd;
}

.footer-col p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #c4b5fd;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  font-size: 0.8rem;
  color: #c4b5fd;
}

@media (max-width: 960px) {
  /* Layout grids */
  .hero-grid,
  .grid-two,
  .layout-split,
  .two-col-stats,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-grid { gap: 2rem; }
  .hero {
    padding-top: 2.1rem;
  }

  .three-col-grid,
  .team-grid,
  .pathway-grid,
  .process-timeline,
  .proof-grid,
  .phase-grid-detailed {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline::before {
    display: none;
  }

  /* Typography */
  .hero-title-large {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  /* Stats and grids */
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .training-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .sidebar-card {
    position: static;
  }

  /* Navigation */
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    inset: var(--nav-height) 0 auto 0;
    background: rgba(3, 7, 18, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 0.75rem 1.2rem 0.9rem;
    border-bottom: 1px solid rgba(30, 64, 175, 0.75);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }

  /* Footer */
  .footer-meta {
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Forms */
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .list-columns {
    columns: 1;
  }

  /* CTAs */
  .cta-actions {
    flex-wrap: wrap;
  }

  /* Cards */
  .card,
  .pathway-card {
    padding: 1.75rem;
  }

  /* Blog */
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Coming soon */
  .features-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-only { display: inline; }
}

@media (max-width: 640px) {
  section {
    padding: 2.5rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  /* Header and Navigation */
  .nav-bar {
    height: auto;
    min-height: var(--nav-height);
    padding: 0.75rem 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-text span:first-child {
    font-size: 0.85rem;
  }

  .brand-text span:last-child {
    font-size: 0.7rem;
  }

  .brand-separator {
    display: none;
  }

  .brand-text {
    flex-direction: column;
    gap: 0.1rem;
  }

  /* Typography */
  .hero-title-large {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .hero-subtitle-large {
    font-size: 1rem;
  }

  .page-title {
    font-size: 1.85rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  /* Buttons */
  .btn-primary,
  .btn-outline {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
  }

  .btn-large {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .hero-actions-center {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-actions-center button,
  .hero-actions-center a {
    width: 100%;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions button,
  .cta-actions a {
    width: 100%;
  }

  /* Grids */
  .proof-grid,
  .outcome-grid,
  .stats-grid-large,
  .value-grid,
  .three-col-grid,
  .pathway-grid,
  .team-grid,
  .training-grid,
  .phase-grid-detailed {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Forms */
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }

  /* Timeline */
  .timeline-horizontal {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  /* Story header */
  .story-header {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Cards */
  .card,
  .pathway-card,
  .phase-card-detailed {
    padding: 1.5rem;
  }

  /* Phase cards specific */
  .phase-card-detailed h2 {
    font-size: 1.25rem;
  }

  .phase-card-detailed h3 {
    font-size: 1rem;
  }

  /* Stats */
  .stat-number {
    font-size: 2.5rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Cookie banner */
  .cookie-banner-content {
    padding: 1.25rem 1rem;
  }

  .cookie-banner-header h3 {
    font-size: 1.1rem;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  /* Tables */
  .cookie-table {
    font-size: 0.8rem;
    display: block;
    overflow-x: auto;
  }

  /* Hero simple */
  .hero-simple {
    padding: 3rem 0 2rem 0;
  }

  .hero-simple h1 {
    font-size: 1.85rem;
  }

  /* CTA sections */
  .cta-card {
    padding: 2rem 1.5rem;
  }

  .cta-card h2 {
    font-size: 1.5rem;
  }

  /* Application form */
  fieldset {
    padding: 1.25rem;
  }

  fieldset legend {
    font-size: 1.1rem;
  }

  /* Pathway details */
  .pathway-content h1 {
    font-size: 1.85rem;
  }

  .pathway-content h2 {
    font-size: 1.5rem;
  }

  /* Success stories */
  .story-card {
    padding: 1.5rem;
  }

  .story-quote {
    font-size: 1.1rem;
  }

  /* About page */
  .mission-statement {
    padding: 2rem 1.5rem;
  }

  .team-card {
    padding: 1.5rem;
  }

  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }

  .page-shell {
    overflow-x: hidden;
  }

  /* Improve touch targets */
  a,
  button {
    min-height: 44px;
    min-width: 44px;
  }

  /* Better spacing for mobile */
  .section-header-center {
    margin-bottom: 2rem;
  }

  .section-kicker {
    font-size: 0.8rem;
  }

  /* Blog specific */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    padding: 1.5rem;
  }

  .featured-post {
    padding: 1.5rem;
  }

  .featured-content h2 {
    font-size: 1.5rem;
  }

  /* Newsletter */
  .newsletter-card {
    padding: 2rem 1.5rem;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-input-group button {
    width: 100%;
  }

  /* Coming soon */
  .coming-soon-title {
    font-size: 2rem;
  }

  .coming-soon-subtitle {
    font-size: 1.1rem;
  }

  .countdown-timer {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .countdown-item {
    padding: 1rem 1.25rem;
    min-width: 80px;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .countdown-separator {
    display: none;
  }

  .notify-form-wrapper {
    padding: 1.5rem;
  }

  .features-preview-grid {
    grid-template-columns: 1fr;
  }

  /* Improve readability */
  p, li {
    font-size: 0.95rem;
  }
}

/* Additional multi-page components */

/* Page hero (used on inner pages) */
.page-hero {
  padding: 6rem 0 3rem 0;
  background: linear-gradient(135deg, rgba(56,189,248,0.05) 0%, rgba(147,51,234,0.05) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page-hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent) 0%, #9333ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.25rem;
  color: #000;
  line-height: 1.6;
}

/* Phase cards (programmes page) */
.phases-overview {
  padding: 4rem 0;
}

.phase-grid-detailed {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
}

.phase-card-detailed {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem;
}

.phase-header {
  margin-bottom: 1.5rem;
}

.phase-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #9333ea);
  color: #000;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.phase-card-detailed h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.phase-intro {
  color: #000;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.phase-card-detailed h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.75rem 0;
  color: var(--accent);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.5;
}

.check-bullet {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.phase-duration {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  color: #000;
}

/* Access to Work section */
.atw-section {
  padding: 4rem 0;
  background: rgba(255,255,255,0.02);
}

.atw-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.atw-categories {
  display: grid;
  gap: 1.5rem;
}

.atw-category h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.simple-list {
  list-style: none;
  padding-left: 1.25rem;
  margin: 0;
}

.simple-list li {
  position: relative;
  padding-left: 0;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: #fff;
}

.simple-list li::before {
  content: 'â€¢';
  position: absolute;
  left: -1.25rem;
  color: var(--accent);
}

.atw-process {
  display: grid;
  gap: 1.25rem;
}

.atw-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.atw-step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #9333ea);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.atw-step h4 {
  margin: 0 0 0.35rem 0;
  font-size: 1rem;
  color: #fff;
}

.atw-step p {
  margin: 0;
  font-size: 0.9rem;
  color: #fff;
}

/* Differentiators section */
.differentiators {
  padding: 4rem 0;
}

.diff-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.diff-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
}

.diff-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.diff-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.diff-card p {
  font-size: 0.9rem;
  color: #000;
  margin: 0;
}

/* Employer page components */
.employer-hero {
  background: linear-gradient(135deg, rgba(147,51,234,0.08) 0%, rgba(56,189,248,0.08) 100%);
}

.employer-value {
  padding: 4rem 0;
}

.value-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 0;
}

.value-item {
  text-align: center;
  padding: 1.5rem;
}

.value-number {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.value-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.9rem;
  color: #000;
  margin: 0;
}

.services-section {
  padding: 4rem 0;
  background: rgba(255,255,255,0.02);
}

.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-card > p {
  color: #000;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.service-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #000;
}

.service-list li::before {
  content: 'âœ“';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.service-use-case {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: #000;
}

.employer-process {
  padding: 4rem 0;
}

.employer-timeline {
  display: grid;
  gap: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.employer-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.employer-step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #9333ea);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.employer-step-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.35rem;
}

.employer-step-content > p {
  margin: 0 0 1rem 0;
  color: #000;
}

.social-value-section {
  padding: 4rem 0;
  background: rgba(255,255,255,0.02);
}

.social-value-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial-section {
  padding: 4rem 0;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(56,189,248,0.08), rgba(147,51,234,0.08));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
}

.testimonial-quote {
  font-size: 4rem;
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #000;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.95rem;
}

.testimonial-author span {
  color: #000;
  font-size: 0.85rem;
}

.sectors-section {
  padding: 4rem 0;
}

.sectors-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.sector-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1.5rem;
}

.sector-item h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.05rem;
  color: var(--accent);
}

.sector-item p {
  margin: 0;
  font-size: 0.85rem;
  color: #000;
}

/* Success stories page */
.impact-stats {
  padding: 3rem 0;
  background: rgba(255,255,255,0.02);
}

.stats-grid-large {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #000;
}

.stories-section {
  padding: 4rem 0;
}

.story-list {
  display: grid;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.story-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2.5rem;
}

.story-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.story-pathway {
  background: linear-gradient(135deg, var(--accent), #9333ea);
  color: #000;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.story-meta {
  font-size: 0.85rem;
  color: #000;
}

.story-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.story-content {
  display: grid;
  gap: 2rem;
}

.story-before,
.story-journey,
.story-after {
  padding: 1.5rem;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
}

.story-before h4,
.story-journey h4,
.story-after h4 {
  margin: 0 0 1rem 0;
  font-size: 1.05rem;
  color: var(--accent);
}

.story-journey p {
  margin-bottom: 1rem;
  color: #000;
  line-height: 1.7;
}

.story-quote {
  margin: 2rem 0 0 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(56,189,248,0.08), rgba(147,51,234,0.08));
  border-left: 4px solid var(--accent);
  border-radius: 4px;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #000;
}

.themes-section {
  padding: 4rem 0;
  background: rgba(255,255,255,0.02);
}

.themes-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.theme-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.75rem;
}

.theme-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.theme-card p {
  font-size: 0.9rem;
  color: #000;
  margin: 0;
}

/* About page */
.mission-section {
  padding: 4rem 0;
}

.mission-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-section {
  padding: 4rem 0;
  background: rgba(255,255,255,0.02);
}

.problem-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 3rem;
}

.problem-stat {
  text-align: center;
  padding: 1.5rem;
}

.problem-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.problem-stat p {
  font-size: 0.9rem;
  color: #000;
  margin: 0;
}

.why-content {
  max-width: 800px;
  margin: 0 auto;
}

.why-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.why-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: #000;
}

.approach-section {
  padding: 4rem 0;
}

.approach-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.team-section {
  padding: 4rem 0;
  background: rgba(255,255,255,0.02);
}

.team-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.team-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem;
}

.team-role {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #9333ea);
  color: #000;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 0.9rem;
  color: #000;
  margin: 0;
  line-height: 1.6;
}

.cic-section {
  padding: 4rem 0;
}

.cic-content {
  max-width: 800px;
  margin: 0 auto;
}

.cic-content h4 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.75rem 0;
  color: var(--accent);
}

.values-section {
  padding: 4rem 0;
  background: rgba(255,255,255,0.02);
}

.values-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.value-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.75rem;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  color: #000;
  margin: 0;
}

/* Contact page */
.contact-form-section {
  padding: 4rem 0;
}

.contact-wrapper {
  display: grid;
  gap: 3rem;
  grid-template-columns: 2fr 1fr;
  align-items: start;
}

.form-container h2 {
  margin-bottom: 0.5rem;
}

.form-intro {
  color: #000;
  margin-bottom: 2rem;
}

.contact-sidebar {
  display: grid;
  gap: 1.5rem;
}

.contact-item {
  margin-bottom: 1rem;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: #000;
}

.contact-item a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-item a:hover {
  text-decoration: underline;
}

.faq-section {
  padding: 4rem 0;
  background: rgba(255,255,255,0.02);
}

.faq-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1.5rem;
}

.faq-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.faq-item p {
  font-size: 0.9rem;
  color: #000;
  margin: 0;
  line-height: 1.6;
}

.faq-item a {
  color: var(--accent);
  text-decoration: none;
}

.faq-item a:hover {
  text-decoration: underline;
}

.safeguarding-notice {
  padding: 3rem 0 4rem 0;
}

.safeguarding-card {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(234,179,8,0.08), rgba(239,68,68,0.08));
  border: 1px solid rgba(234,179,8,0.3);
}

.safeguarding-card h3 {
  margin-bottom: 1rem;
}

.safeguarding-contact {
  margin: 1rem 0;
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
}

.safeguarding-contact a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

/* Application page */
.before-apply-section {
  padding: 4rem 0;
  background: rgba(255,255,255,0.02);
}

.eligibility-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.application-form-section {
  padding: 4rem 0;
}

.form-wrapper-wide {
  max-width: 800px;
  margin: 0 auto;
}

.form-header-center {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header-center h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.form-header-center p {
  color: #000;
}

fieldset {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

legend {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0 0.75rem;
  color: var(--accent);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  color: #1e293b;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}

.form-group small {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #000;
  font-style: italic;
}

.radio-group,
.checkbox-group {
  display: grid;
  gap: 0.75rem;
}

.radio-label,
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  transition: all 0.2s;
}

.radio-label:hover,
.checkbox-label:hover {
  background: rgba(255,255,255,0.05);
  border-color: #000;
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.radio-label span,
.checkbox-label span {
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-footer-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #000;
}

.form-footer-note a {
  color: var(--accent);
  text-decoration: none;
}

.next-steps-section {
  padding: 4rem 0;
  background: rgba(255,255,255,0.02);
}

.timeline-horizontal {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.timeline-step {
  text-align: center;
  padding: 1.5rem;
}

.timeline-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #9333ea);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.timeline-step h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.timeline-step p {
  font-size: 0.9rem;
  color: #000;
  margin: 0;
}

/* Blog page */
.featured-post-section {
  padding: 3rem 0;
  background: rgba(255,255,255,0.02);
}

.featured-post {
  background: linear-gradient(135deg, rgba(56,189,248,0.1), rgba(147,51,234,0.1));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
}

.featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #9333ea);
  color: #000;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.featured-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.post-category {
  background: rgba(255,255,255,0.1);
  color: var(--accent);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.post-date {
  color: #000;
  font-size: 0.9rem;
}

.post-excerpt {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #000;
  margin-bottom: 1.5rem;
}

.post-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
}

.post-link:hover {
  color: #000;
}

.blog-section {
  padding: 4rem 0;
}

.blog-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #000;
  padding: 0.65rem 1.25rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: #000;
  color: #000;
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--accent), #9333ea);
  border-color: transparent;
  color: #000;
}

.blog-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.blog-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s;
}

.blog-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: #000;
  transform: translateY(-4px);
}

.blog-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  color: #fff;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: #000;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.blog-read-more {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.blog-read-more:hover {
  color: #000;
}

.blog-read-time {
  font-size: 0.85rem;
  color: #000;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
}

.pagination-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #000;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.pagination-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.08);
  border-color: #000;
  color: #000;
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.pagination-number {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-number:hover {
  background: rgba(255,255,255,0.08);
  border-color: #000;
  color: #000;
}

.pagination-number.active {
  background: linear-gradient(135deg, var(--accent), #9333ea);
  border-color: transparent;
  color: #000;
}

.pagination-dots {
  color: #000;
}

.newsletter-section {
  padding: 4rem 0;
  background: rgba(255,255,255,0.02);
}

.newsletter-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(56,189,248,0.08), rgba(147,51,234,0.08));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 3rem;
}

.newsletter-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.newsletter-card h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.newsletter-card > p {
  color: #000;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.newsletter-input-group input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #000;
  font-size: 0.95rem;
}

.newsletter-input-group input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}

.newsletter-input-group button {
  flex-shrink: 0;
}

.newsletter-privacy {
  font-size: 0.85rem;
  color: #000;
  margin: 0;
}

.newsletter-privacy a {
  color: var(--accent);
  text-decoration: none;
}

/* Coming Soon page */
.coming-soon-hero {
  padding: 8rem 0 5rem 0;
  text-align: center;
}

.coming-soon-content {
  max-width: 800px;
  margin: 0 auto;
}

.coming-soon-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #9333ea);
  color: #000;
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.coming-soon-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, #9333ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.coming-soon-subtitle {
  font-size: 1.35rem;
  color: #000;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.countdown-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  min-width: 100px;
}

.countdown-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.countdown-label {
  font-size: 0.9rem;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.countdown-separator {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.countdown-ended {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 2rem;
}

.notify-form-wrapper {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2.5rem;
}

.notify-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.notify-form-wrapper > p {
  color: #000;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.notify-input-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.notify-input-group input {
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #000;
  font-size: 1rem;
}

.notify-input-group input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}

.whats-coming-section {
  padding: 5rem 0;
}

.features-preview-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.feature-preview-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.feature-preview-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-preview-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-preview-card p {
  font-size: 0.95rem;
  color: #000;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-status {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.feature-status.launching {
  background: linear-gradient(135deg, var(--accent), #9333ea);
  color: #000;
}

.feature-status.planning {
  background: rgba(255,255,255,0.1);
  color: #000;
}

.progress-section {
  padding: 5rem 0;
  background: rgba(255,255,255,0.02);
}

.progress-timeline {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

.progress-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.progress-marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.progress-item.completed .progress-marker {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #000;
}

.progress-item.in-progress .progress-marker {
  background: linear-gradient(135deg, var(--accent), #9333ea);
  color: #000;
}

.progress-item.upcoming .progress-marker {
  background: rgba(255,255,255,0.1);
  color: #000;
  border: 2px solid rgba(255,255,255,0.2);
}

.progress-content h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
}

.progress-content p {
  margin: 0 0 0.5rem 0;
  color: #000;
  font-size: 0.95rem;
}

.progress-date {
  font-size: 0.85rem;
  color: #000;
  font-style: italic;
}

.meanwhile-section {
  padding: 5rem 0;
}

.meanwhile-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 3rem;
}

.meanwhile-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.meanwhile-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.meanwhile-card p {
  font-size: 0.95rem;
  color: #000;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.meanwhile-card button {
  width: 100%;
}

.social-proof-section {
  padding: 4rem 0;
  background: rgba(255,255,255,0.02);
}

.coming-soon-stats {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 900px;
  margin: 0 auto;
}

.coming-soon-stat {
  text-align: center;
}

.coming-soon-stat .stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.coming-soon-stat .stat-label {
  font-size: 1rem;
  color: #000;
}

/* Responsive for blog and coming soon */
@media (max-width: 960px) {
  .coming-soon-title {
    font-size: 2.5rem;
  }

  .countdown-timer {
    gap: 0.5rem;
  }

  .countdown-item {
    padding: 1rem 1.25rem;
    min-width: 80px;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-input-group button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .blog-filters {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .featured-content h2 {
    font-size: 1.5rem;
  }

  .coming-soon-title {
    font-size: 2rem;
  }

  .coming-soon-subtitle {
    font-size: 1.1rem;
  }

  .countdown-timer {
    flex-wrap: wrap;
  }

  .countdown-separator {
    display: none;
  }

  .pagination {
    flex-wrap: wrap;
  }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(2, 6, 23, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(56, 189, 248, 0.3);
  z-index: 9999;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.cookie-banner-header {
  margin-bottom: 1.5rem;
}

.cookie-banner-header h3 {
  font-size: 1.5rem;
  margin: 0 0 0.75rem 0;
  color: #fff;
}

.cookie-banner-header p {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.cookie-banner-options {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.cookie-option {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
}

.cookie-option-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
}

.cookie-option-label input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.cookie-option-label input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-option-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cookie-option-info strong {
  color: #fff;
  font-size: 0.95rem;
}

.cookie-option-info span {
  color: #fff;
  font-size: 0.85rem;
  line-height: 1.4;
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.cookie-banner-footer {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner-footer p {
  color: #fff;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.5;
}

.cookie-banner-footer a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner-footer a:hover {
  color: #fff;
}

/* Cookie Policy Page Styles */
.policy-section {
  padding: 4rem 0;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 2rem;
  margin: 3rem 0 1rem 0;
  color: #000;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0;
  color: #000;
}

.policy-content p {
  color: #000;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.policy-content ul,
.policy-content ol {
  color: #000;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.policy-content li {
  margin-bottom: 0.75rem;
}

.policy-content strong {
  color: #000;
}

.policy-content a {
  color: var(--accent);
  text-decoration: underline;
}

.policy-content a:hover {
  color: #000;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.cookie-table thead {
  background: rgba(255, 255, 255, 0.05);
}

.cookie-table th {
  padding: 1rem;
  text-align: left;
  color: #000;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table td {
  padding: 1rem;
  color: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

.cta-box {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(147, 51, 234, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}

.cta-box h3 {
  font-size: 1.5rem;
  margin: 0 0 0.75rem 0;
  color: #000;
}

.cta-box p {
  color: #000;
  margin: 0 0 1.5rem 0;
}

/* Career outcomes section */
.career-outcomes h3,
.career-outcomes strong,
.career-outcomes p,
.career-outcomes li {
  color: #fff !important;
}

/* Quick Facts sidebar */
.fact-label,
.fact-value {
  color: #c4b5fd !important;
}

