/* Mindora – DARK navy + warm gold theme (full dark mode) */
:root {
  /* Navy — primary brand (kept saturated; pops on dark surfaces) */
  --primary-50:  #eef2ff;
  --primary-100: #dbe4f5;
  --primary-200: #b8c7e8;
  --primary-300: #8aa0d4;
  --primary-400: #5b76c4;
  --primary-500: #3b5ea8;
  --primary-600: #3b82f6;   /* button bg — brighter blue for contrast on dark page */
  --primary-700: #2563eb;   /* hover */
  --primary-800: #1e3a8a;   /* royal navy (gradients) */
  --primary-900: #0f1b3d;   /* deep navy panel */

  /* Gold — warm accent */
  --accent-50:  #fffbeb;
  --accent-100: #fef3c7;
  --accent-200: #fde68a;
  --accent-300: #fcd34d;   /* lighter hover */
  --accent-400: #fbbf24;   /* main gold (button bg) — slightly brighter for dark contrast */
  --accent-500: #f59e0b;   /* darker / shadow hue */
  --accent-600: #d97706;
  --accent-700: #92400e;

  /* Slate — INVERTED for dark mode (low # = darkest, high # = lightest) */
  --gray-50:  #0f172a;
  --gray-100: #1e293b;
  --gray-200: #334155;
  --gray-300: #475569;
  --gray-400: #64748b;
  --gray-500: #94a3b8;
  --gray-600: #cbd5e1;
  --gray-700: #e2e8f0;
  --gray-800: #f1f5f9;
  --gray-900: #f8fafc;

  /* Surfaces — full dark */
  --page: #0B1228;             /* page bg (near-black navy) */
  --nav: #0F1B3D;              /* nav bar (slightly lighter than page) */
  --nav-border: rgba(255, 255, 255, 0.08);
  --surface: #142244;          /* card / panel bg */
  --surface-2: #1A2A4D;        /* hover / elevated panel */
  --surface-3: #243463;        /* deeper inset (form fields) */
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --footer-bg: #060A1A;        /* footer (darker than page) */
  --on-accent: #0f172a;        /* dark text for use on gold / light accent surfaces */

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Geometry */
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.75rem;

  /* Shadows — black-alpha (real depth on dark backgrounds) */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.25);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.35), 0 2px 4px rgba(0, 0, 0, 0.20);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.45), 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-navy: 0 10px 30px rgba(59, 130, 246, 0.35);
  --shadow-gold: 0 10px 30px rgba(251, 191, 36, 0.40);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--page);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Nav */
.nav-bar {
  background: rgba(15, 27, 61, 0.85);   /* var(--nav) with glass effect */
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 4px 24px rgba(0, 0, 0, 0.40);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
}
.container { max-width: 72rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 4.5rem;
  padding: 0.5rem 0;
  gap: 1rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.9; }
.nav-logo-img {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  object-fit: contain;
}
@media (min-width: 640px) {
  .nav-logo-img { width: 3.5rem; height: 3.5rem; }
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent-300), var(--accent-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; align-items: center; gap: 0.35rem; flex-wrap: wrap; row-gap: 0.5rem; }
.nav-welcome {
  color: var(--gray-600);
  font-size: 0.9375rem;
  margin-right: 0.25rem;
}
@media (max-width: 640px) { .nav-welcome { display: none; } }
.nav-links .btn { font-size: 0.9375rem; padding: 0.55rem 0.95rem; min-height: 40px; }
@media (max-width: 640px) {
  .nav-links .btn { padding: 0.6rem 0.85rem; font-size: 0.9rem; min-height: 44px; }
  .nav-brand { font-size: 1.25rem; }
}
@media (max-width: 440px) {
  .nav-brand { display: none; }
  .nav-logo-img { width: 2.5rem; height: 2.5rem; }
}
.nav-links .btn-primary { font-weight: 600; }
/* Ghost link with yellow underline animation, used for in-app nav */
.nav-links .btn-ghost {
  position: relative;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 0.5rem;
}
.nav-links .btn-ghost::after {
  content: "";
  position: absolute;
  left: 0.875rem;
  right: 0.875rem;
  bottom: 0.25rem;
  height: 3px;
  border-radius: 3px;
  background: var(--accent-400);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-links .btn-ghost:hover {
  background: transparent;
  color: var(--accent-300);
}
.nav-links .btn-ghost:hover::after { transform: scaleX(1); }
.nav-links .btn-ghost.active {
  color: var(--accent-300);
  background: transparent;
}
.nav-links .btn-ghost.active::after { transform: scaleX(1); }

/* ----- Nav dropdown ----- */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-dropdown-caret {
  transition: transform 0.2s ease;
}
.nav-dropdown.open .nav-dropdown-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 14rem;
  margin: 0;
  padding: 0.4rem;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 60;
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu li { list-style: none; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 0.9rem;
  border-radius: 0.5rem;
  color: var(--gray-800);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  min-height: 44px;
  line-height: 1.5;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-300);
  outline: none;
}
.nav-dropdown-menu a[aria-current="page"] {
  color: var(--accent-300);
  background: rgba(251, 191, 36, 0.08);
}
.nav-dropdown-divider {
  height: 1px;
  margin: 0.4rem 0.25rem;
  background: rgba(255, 255, 255, 0.10);
  list-style: none;
}
.nav-dropdown-menu a.nav-dropdown-signout {
  color: var(--accent-300);
}
.nav-dropdown-menu a.nav-dropdown-signout:hover,
.nav-dropdown-menu a.nav-dropdown-signout:focus-visible {
  background: rgba(251, 191, 36, 0.12);
}
.nav-user-greeting strong {
  font-weight: 600;
  color: var(--accent-300);
}
@media (max-width: 640px) {
  .nav-dropdown-menu {
    right: auto;
    left: 0;
    min-width: min(14rem, calc(100vw - 2rem));
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease,
              box-shadow 0.25s ease, color 0.2s ease, transform 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--primary-600);
  color: white;
  border-color: var(--primary-600);
  box-shadow: 0 2px 0 rgba(15, 23, 42, 0.04);
}
.btn-primary:hover {
  background: var(--primary-700);
  border-color: var(--primary-700);
  box-shadow: var(--shadow-navy);
  transform: translateY(-1px);
}
.btn-accent {
  background: var(--accent-400);
  color: var(--on-accent);
  border-color: var(--accent-400);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.20);
}
.btn-accent:hover {
  background: var(--accent-300);
  border-color: var(--accent-300);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--gray-700);
  border-color: var(--gray-300);
}
.btn-outline:hover {
  background: var(--surface);
  border-color: var(--primary-400);
  color: var(--primary-700);
}
.btn-ghost {
  background: transparent;
  color: var(--gray-700);
}
.btn-ghost:hover { background: var(--gray-100); color: var(--gray-900); }
.btn-sm { padding: 0.35rem 0.75rem; font-size: 0.875rem; border-radius: 0.5rem; }
.btn-lg { padding: 0.85rem 1.75rem; font-size: 1.0625rem; border-radius: var(--radius-lg); }
.btn-danger { background: #dc2626; color: white; border-color: #dc2626; }
.btn-danger:hover { background: #b91c1c; border-color: #b91c1c; }

/* OAuth sign-in */
.oauth-buttons { display: flex; flex-direction: column; gap: 0.5rem; }
.btn-oauth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-300);
  background: var(--surface);
  color: var(--gray-800);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-oauth:hover { background: var(--gray-50); border-color: var(--gray-400); }
.btn-google:hover { border-color: #dadce0; background: #f8f9fa; }
.btn-microsoft:hover { border-color: #ccc; background: #f3f3f3; }
.oauth-icon { font-weight: 700; font-size: 1.125rem; }
.divider-text {
  text-align: center;
  margin: 1rem 0 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}
.divider-text::before { content: ''; display: block; height: 1px; background: var(--gray-200); margin-bottom: 1rem; }

/* Auth pages (Sign in / Sign up) */
.auth-page {
  min-height: calc(100vh - 12rem);
  background:
    radial-gradient(circle at 12% 18%, rgba(59, 130, 246, 0.18), transparent 45%),
    radial-gradient(circle at 88% 80%, rgba(251, 191, 36, 0.12), transparent 45%),
    linear-gradient(160deg, var(--primary-900) 0%, var(--page) 100%);
  padding: 2.5rem 1rem 4rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.auth-page-inner {
  width: 100%;
  max-width: 26rem;
}
.auth-page-inner--wide {
  max-width: 36rem;
}

/* ----- Register page tab toggle (Parents / Schools) ----- */
.register-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 1.25rem 0 1.25rem;
  padding: 0.4rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.register-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  min-height: 56px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--gray-700);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: left;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.register-tab svg {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
  color: var(--gray-500);
  transition: color 0.18s ease;
}
.register-tab span {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.register-tab strong {
  font-weight: 600;
  color: var(--gray-900);
  font-size: 1rem;
}
.register-tab small {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 0.15rem;
}
.register-tab:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--gray-900);
}
.register-tab.active {
  background: rgba(251, 191, 36, 0.10);
  border-color: rgba(251, 191, 36, 0.40);
  box-shadow: inset 0 0 0 1px rgba(251, 191, 36, 0.25);
}
.register-tab.active svg { color: var(--accent-400); }
.register-tab.active strong { color: var(--accent-300); }
.register-tab.active small { color: var(--gray-600); }
@media (max-width: 520px) {
  .register-tabs { grid-template-columns: 1fr; }
  .register-tab { min-height: 52px; }
}

/* ----- Register panels ----- */
.register-panel { display: none; }
.register-panel.active { display: block; animation: fadeIn 0.22s ease; }
.register-panel-lead {
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}
.auth-submit {
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  min-height: 48px;
}

/* ----- Checkbox group (school partnership interests) ----- */
.check-group {
  display: grid;
  gap: 0.5rem;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--gray-800);
  font-size: 0.9375rem;
  min-height: 44px;
  transition: border-color 0.15s, background 0.15s;
}
.check-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-strong);
}
.check-item input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--accent-400);
  flex-shrink: 0;
}
.check-item input[type="checkbox"]:checked + span { color: var(--accent-300); font-weight: 500; }
.auth-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  padding: 2rem 1.75rem;
}
.auth-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.25rem;
  background: linear-gradient(to right, var(--primary-600), var(--primary-800));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.auth-subtitle {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin: 0 0 1.5rem;
  line-height: 1.4;
}
.auth-form .form-group {
  margin-bottom: 1.25rem;
}
.auth-form .form-group:last-of-type {
  margin-bottom: 1.5rem;
}
.auth-form label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.35rem;
}
.auth-form .form-control {
  padding: 0.65rem 0.875rem;
  font-size: 1rem;
  border-radius: 0.625rem;
  border: 1px solid var(--gray-300);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.auth-form .form-control:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.18);
}
.auth-form .btn-primary {
  width: 100%;
  padding: 0.75rem 1.25rem;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: 0.625rem;
}
.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
}
.auth-footer a {
  color: var(--primary-600);
  font-weight: 500;
  text-decoration: none;
}
.auth-footer a:hover {
  color: var(--primary-700);
  text-decoration: underline;
}
.auth-card .oauth-buttons {
  gap: 0.625rem;
  margin-bottom: 0;
}
.auth-card .btn-oauth {
  padding: 0.7rem 1rem;
  font-size: 0.9375rem;
  border-radius: 0.625rem;
  border: 1px solid var(--gray-300);
  font-weight: 500;
}
.auth-card .divider-text {
  margin: 1.25rem 0 1rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
  letter-spacing: 0.02em;
}
.auth-card .divider-text::before {
  margin-bottom: 1.25rem;
}
.auth-add-parent {
  font-size: 0.9375rem;
  padding: 0.5rem 0.875rem;
  border-radius: 0.5rem;
  border: 1px dashed var(--primary-300);
  color: var(--primary-600);
  background: var(--primary-50);
}
.auth-add-parent:hover {
  background: var(--primary-100);
  border-color: var(--primary-400);
  color: var(--primary-700);
}
.auth-radios {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.35rem;
  flex-wrap: wrap;
}
.auth-radios .radio-label {
  font-size: 0.9375rem;
  color: var(--gray-700);
}

/* Login page (Sign in) */
.auth-page--login {
  align-items: center;
  padding: 3rem 1rem 4rem;
}
.auth-page-inner--login {
  max-width: 28rem;
}
.login-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-strong);
  overflow: hidden;
}
.login-card-header {
  padding: 2.25rem 1.75rem 0.25rem;
  text-align: center;
}
.login-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 auto 1.25rem;
}
.login-brand-img {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.15rem;
  border: 1px solid var(--border);
}
.login-brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent-300), var(--accent-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.login-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
  color: var(--gray-900);
}
.login-subtitle {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.5;
}
.login-card-body {
  padding: 1.5rem 1.75rem 1.5rem;
}
/* Login page: Parents/Schools toggle + panels */
.auth-page-inner--dual {
  max-width: 64rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.login-brand--top {
  margin: 0 auto;
}
.auth-toggle {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 9999px;
  padding: 0.25rem;
  gap: 0.25rem;
  box-shadow: var(--shadow-sm);
}
.auth-toggle-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--gray-500);
  padding: 0.6rem 1.4rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  min-height: 40px;
}
.auth-toggle-btn:hover { color: var(--gray-800); }
.auth-toggle-btn.active {
  background: linear-gradient(135deg, var(--accent-300), var(--accent-400));
  color: var(--primary-900);
  box-shadow: 0 1px 0 rgba(0,0,0,0.15), 0 0 0 1px rgba(251,191,36,0.4);
}
.auth-tab-panel {
  width: 100%;
  display: none;
}
.auth-tab-panel.active { display: block; }
.auth-dual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
}
@media (min-width: 768px) {
  .auth-dual { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.login-card--half,
.login-card--cta {
  display: flex;
  flex-direction: column;
}
.login-card--half .login-card-header { padding: 1.75rem 1.5rem 0.25rem; }
.login-card--half .login-title { font-size: 1.5rem; }
.login-card--half .login-subtitle { min-height: 2.6em; }
.login-card--half .login-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.login-card--full {
  width: 100%;
}
.login-card--full .login-card-header { padding: 1.75rem 2rem 0.5rem; }
.login-card--full .login-card-body { padding: 1.25rem 2rem 1.75rem; }
.login-card-body--center {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0.85rem;
  text-align: center;
}
.auth-cta-btn {
  font-size: 1rem;
  padding: 0.85rem 1.25rem;
  min-height: 48px;
}
.login-aside {
  font-size: 0.825rem;
  color: var(--gray-500);
  line-height: 1.45;
  margin: 0;
}

/* Form row with two columns side-by-side (schools form) */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 600px) {
  .form-row--2 { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
.form-row .form-group { margin-bottom: 0; }
.form-group-label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

/* Big checkmark on success pages */
.submitted-check {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0.5rem auto 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
}
.submitted-check svg { width: 2.75rem; height: 2.75rem; }

/* Complete-signup form helpers */
.form-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.4;
}
.kid-row-grid {
  display: grid;
  grid-template-columns: 1fr 6rem auto;
  gap: 0.75rem;
  align-items: end;
  margin-bottom: 0.75rem;
}
.kid-row-grid .form-group { margin-bottom: 0; }
.btn-remove-kid {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gray-500);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-remove-kid:hover,
.btn-remove-kid:focus-visible {
  background: rgba(244, 63, 94, 0.12);
  border-color: rgba(244, 63, 94, 0.5);
  color: #fca5a5;
  outline: none;
}
@media (max-width: 540px) {
  .kid-row-grid { grid-template-columns: 1fr 5rem auto; gap: 0.5rem; }
  .btn-remove-kid { width: 2.25rem; height: 2.25rem; }
}

.login-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1.5rem 0 0;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.825rem;
  line-height: 1.5;
  color: var(--gray-500);
}
.login-hint svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--accent-400);
}
.login-hint strong {
  color: var(--gray-800);
  font-weight: 600;
}
.not-approved-message {
  color: var(--gray-700);
  line-height: 1.65;
  margin: 0 0 1.75rem;
}
.not-approved-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}
.login-oauth {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.login-oauth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 0.65rem;
  border: 1px solid var(--border-strong);
  background: var(--surface-2);
  color: var(--gray-900);
  text-decoration: none;
  cursor: pointer;
  min-height: 48px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.login-oauth-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-400);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.40), 0 0 0 1px rgba(251, 191, 36, 0.30) inset;
  transform: translateY(-1px);
}
.login-oauth-btn:active { transform: translateY(0); }
.login-oauth-btn:focus-visible {
  outline: none;
  border-color: var(--accent-400);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.40);
}
.login-oauth-mark {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.login-oauth-btn span { flex-grow: 0; }
/* Brand-tinted hover halo for each provider — subtle, matches dark theme */
.login-oauth-btn--google:hover {
  box-shadow: 0 8px 22px rgba(66, 133, 244, 0.28), 0 0 0 1px rgba(66, 133, 244, 0.35) inset;
  border-color: rgba(66, 133, 244, 0.55);
}
.login-oauth-btn--microsoft:hover {
  box-shadow: 0 8px 22px rgba(0, 164, 239, 0.25), 0 0 0 1px rgba(0, 164, 239, 0.30) inset;
  border-color: rgba(0, 164, 239, 0.50);
}
.login-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0 1rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
  letter-spacing: 0.02em;
}
.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-strong);
}
.login-form {
  margin: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.contact-form .login-field:last-of-type { margin-bottom: 1.25rem; }
.contact-form textarea.login-input { min-height: 6rem; resize: vertical; }
/* Contact-form fields: white surface (overrides dark default for these inputs only) */
.contact-form .login-input {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid var(--gray-400);
}
.contact-form .login-input::placeholder { color: #6b7280; }
.contact-form .login-input:focus {
  border-color: var(--accent-400);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.30);
}
.login-field {
  margin-bottom: 1.25rem;
}
.login-field:last-of-type {
  margin-bottom: 1.5rem;
}
.login-field label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.35rem;
}
.login-input {
  width: 100%;
  padding: 0.65rem 0.875rem;
  font-size: 1rem;
  border-radius: 0.625rem;
  border: 1px solid var(--gray-300);
  background: var(--surface-3);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.login-input:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.18);
}
.login-input::placeholder {
  color: var(--gray-500);
}
.login-submit {
  width: 100%;
  padding: 0.75rem 1.25rem;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: 0.625rem;
  border: none;
  background: var(--primary-600);
  color: white;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.login-submit:hover {
  background: var(--primary-700);
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.32);
}
.login-footer {
  padding: 1rem 1.75rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
}
.login-footer p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--gray-600);
}
.login-footer a {
  color: var(--primary-600);
  font-weight: 500;
  text-decoration: none;
}
.login-footer a:hover {
  color: var(--primary-700);
  text-decoration: underline;
}

/* Parent blocks (Submit Application) */
.parent-block {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
}
.parent-block-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.parent-primary-radio {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary-700);
  cursor: pointer;
  margin: 0;
}
.parent-primary-radio input {
  width: 1.125rem;
  height: 1.125rem;
  accent-color: var(--primary-600);
}
.parent-block-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-800);
}
.parent-block .form-group {
  margin-bottom: 1rem;
}
.parent-block .form-group:last-child {
  margin-bottom: 0;
}
.parent-block-add {
  margin-bottom: 1rem;
  padding: 0;
  background: none;
  border: none;
}
.parent-block-add .auth-add-parent {
  width: 100%;
  justify-content: center;
}
.auth-form-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 1.5rem 0 1rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Main */
.main-content { flex: 1; }
.hero {
  position: relative;
  overflow: hidden;
  min-height: 34rem;
  background:
    radial-gradient(circle at 85% 15%, rgba(251, 191, 36, 0.18) 0%, transparent 38%),
    radial-gradient(circle at 12% 85%, rgba(59, 130, 246, 0.22) 0%, transparent 42%),
    linear-gradient(165deg, var(--page) 0%, var(--nav) 55%, var(--primary-800) 100%);
}
/* Floating decorative blobs removed */
.hero-blobs, .hero-blob { display: none; }

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(11, 18, 40, 0.35) 0%, rgba(11, 18, 40, 0.55) 60%, rgba(15, 27, 61, 0.92) 100%);
}
.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 50rem;
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
  text-align: center;
}
@media (min-width: 640px) { .hero-inner { padding: 4rem 1.5rem 5rem; } }
@media (min-width: 1024px) { .hero-inner { padding: 5rem 2rem 6rem; } }
.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: clamp(18rem, 42vw, 32rem);
  height: clamp(18rem, 42vw, 32rem);
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.06;
  pointer-events: none;
  filter: saturate(0.85);
  mask-image: radial-gradient(circle, #000 55%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle, #000 55%, transparent 78%);
  animation: heroLogoFade 1.1s ease both;
}
@keyframes heroLogoFade {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.96); }
  to   { opacity: 0.06; transform: translate(-50%, -50%) scale(1); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(15, 27, 61, 0.65);
  color: var(--accent-300);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-400);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.35);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.85); } }
.hero h1 {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.04em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}
@media (min-width: 640px) { .hero h1 { font-size: 3.25rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }
.hero h1 .gradient {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: currentColor;
}
/* Gold underline accent under a key word */
.hero h1 .accent-word {
  position: relative;
  display: inline-block;
  color: var(--gray-900);
  font-weight: 900;
}
.hero h1 .accent-word::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.04em;
  height: 0.28em;
  background: linear-gradient(90deg, var(--accent-400), var(--accent-300));
  z-index: -1;
  border-radius: 6px;
  transform: skewX(-6deg);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.35);
}
.hero p {
  max-width: 38rem;
  margin: 1rem auto 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.65;
}
@media (min-width: 640px) { .hero p { font-size: 1.125rem; } }
@media (min-width: 1024px) { .hero p { font-size: 1.2rem; } }
.hero p + p { margin-top: 0.5rem; }
.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.hero-actions .btn {
  padding: 0.85rem 1.75rem;
  font-size: 1.0625rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
}

/* Trust pills under hero copy — single horizontal line at all widths */
.hero-trust {
  margin-top: 2.75rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: clamp(0.6rem, 3vw, 2.25rem);
  font-size: clamp(0.72rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--gray-800);
  /* If the viewport is unusually narrow, allow gentle horizontal scroll
     rather than forcing the line to wrap. */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}
.hero-trust::-webkit-scrollbar { display: none; }
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.3rem, 0.8vw, 0.55rem);
  white-space: nowrap;
  flex-shrink: 0;
}
.hero-trust svg {
  width: clamp(0.95rem, 2.4vw, 1.55rem);
  height: clamp(0.95rem, 2.4vw, 1.55rem);
  color: var(--accent-400);
  stroke-width: 2.2;
  flex-shrink: 0;
}

/* Wavy section divider */
.section-divider {
  display: block;
  width: 100%;
  height: 60px;
  margin-top: -1px;
}
.section-divider path { fill: var(--page); }
.section-divider--up path { fill: var(--page); }

/* Grid pattern */
.bg-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.18;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

/* ===========================
   Feature grid – "What kids do here"
   =========================== */
.section {
  padding: 4rem 1rem;
}
@media (min-width: 768px) { .section { padding: 5rem 1.5rem; } }
.section--soft { background: transparent; }
.section--page { background: var(--page); }
.section--blue {
  background: linear-gradient(180deg, var(--primary-900) 0%, var(--page) 100%);
}

.section-eyebrow {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  background: var(--accent-100);
  color: var(--accent-700);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--gray-900);
}
@media (min-width: 768px) { .section-title { font-size: 2.4rem; } }
.section-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--gray-600);
  max-width: 38rem;
  margin: 0 auto 2.5rem;
}
.section-head--center { text-align: center; }
.section-head--center .section-eyebrow { display: inline-block; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }

.feature {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--accent-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}
.feature:hover::before { transform: scaleX(1); }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background: var(--primary-100);
  color: var(--primary-700);
  margin-bottom: 1rem;
}
.feature-icon svg { width: 1.65rem; height: 1.65rem; }
.feature:nth-child(2) .feature-icon { background: var(--accent-100); color: var(--accent-700); }
.feature:nth-child(3) .feature-icon { background: var(--primary-100); color: var(--primary-700); }
.feature:nth-child(4) .feature-icon { background: var(--accent-100); color: var(--accent-700); }
.feature h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}
.feature p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0;
}

/* ===========================
   Day timeline – "A day at Mindora"
   Mobile-first: vertical rail with gold connector line.
   Desktop (≥768px): horizontal rail.
   =========================== */
.timeline {
  list-style: none;
  position: relative;
  margin: 0 auto;
  padding: 0.5rem 0 0.5rem 2.25rem;
  max-width: 30rem;
  display: flex;
  flex-direction: column;
}
/* Connector line — vertical on mobile, behind the dots */
.timeline::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  bottom: 1.25rem;
  left: 0.6rem;
  width: 2px;
  background: linear-gradient(to bottom,
    rgba(251, 191, 36, 0.85) 0%,
    rgba(251, 191, 36, 0.55) 60%,
    rgba(251, 191, 36, 0.15) 100%);
  border-radius: 2px;
}
.timeline-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.timeline-bubble {
  position: absolute;
  left: -1.97rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: var(--accent-400);
  border: 3px solid var(--page);
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.45),
              0 4px 10px rgba(251, 191, 36, 0.30);
  flex-shrink: 0;
}
.timeline-body {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  min-width: 0;
}
.timeline-time {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-300);
  letter-spacing: 0.01em;
  white-space: nowrap;
  min-width: 6rem;
  flex-shrink: 0;
}
.timeline-step h4 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}

/* Desktop: horizontal rail */
@media (min-width: 768px) {
  .timeline {
    flex-direction: row;
    justify-content: space-between;
    max-width: 64rem;
    padding: 0 1rem;
    gap: 0.5rem;
  }
  .timeline::before {
    top: 0.95rem;
    bottom: auto;
    left: 6%;
    right: 6%;
    width: auto;
    height: 2px;
    background: linear-gradient(to right,
      rgba(251, 191, 36, 0.10) 0%,
      rgba(251, 191, 36, 0.85) 12%,
      rgba(251, 191, 36, 0.85) 88%,
      rgba(251, 191, 36, 0.10) 100%);
  }
  .timeline-step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    gap: 0;
  }
  .timeline-bubble {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 1.1rem;
    height: 1.1rem;
    margin-bottom: 1rem;
  }
  .timeline-body {
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
  }
  .timeline-time {
    min-width: 0;
    font-size: 0.8125rem;
  }
  .timeline-step h4 { font-size: 1.0625rem; }
}

/* ===========================
   Stats strip
   =========================== */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 60rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .stats-strip { grid-template-columns: repeat(4, 1fr); } }
.stat {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: var(--surface);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary-700);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* ===========================
   Quick-link cards (dashboard)
   =========================== */
.quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .quick-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .quick-grid { grid-template-columns: repeat(4, 1fr); } }

.quick-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem 1.4rem;
  background: var(--surface);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.quick-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}
.quick-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: var(--radius);
  background: var(--primary-100);
  color: var(--primary-700);
}
.quick-card:nth-child(2n) .quick-card-icon { background: var(--accent-100); color: var(--accent-700); }
.quick-card-icon svg { width: 1.4rem; height: 1.4rem; }
.quick-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0;
}
.quick-card-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.45;
  margin: 0;
}
.quick-card-arrow {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--primary-700);
  font-size: 0.875rem;
  font-weight: 600;
}
.quick-card:hover .quick-card-arrow { gap: 0.55rem; }
.quick-card-arrow svg { width: 0.9rem; height: 0.9rem; transition: transform 0.2s; }

/* CTA section */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 1rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.22), transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(91, 118, 196, 0.30), transparent 45%),
    linear-gradient(135deg, var(--primary-700), var(--primary-900));
  color: white;
  text-align: center;
}
.cta-section h2 {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
@media (min-width: 640px) { .cta-section h2 { font-size: 2.4rem; } }
.cta-section p {
  position: relative;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
}
.cta-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}
.cta-actions .btn-primary {
  background: var(--accent-400);
  color: var(--on-accent);
  border-color: var(--accent-400);
  padding: 0.85rem 1.75rem;
  font-size: 1.0625rem;
  border-radius: var(--radius-lg);
}
.cta-actions .btn-primary:hover {
  background: var(--accent-300);
  border-color: var(--accent-300);
  color: var(--on-accent);
  box-shadow: var(--shadow-gold);
}
.cta-actions .btn-outline {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
  padding: 0.85rem 1.75rem;
  font-size: 1.0625rem;
  border-radius: var(--radius-lg);
}
.cta-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: white;
  color: white;
}

/* Footer */
.footer {
  background: var(--footer-bg);
  color: var(--gray-600);
  border-top: 4px solid var(--accent-400);
  padding: 2.5rem 0;
  margin-top: auto;
}
.footer .footer-logo { color: white; }
.footer .footer-logo:hover { color: var(--accent-300); }
.footer .footer-copy { color: var(--gray-500); }
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--gray-700);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-logo:hover { color: var(--primary-600); }
.footer-logo-img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  object-fit: contain;
}
.footer-copy { font-size: 0.875rem; color: var(--gray-500); margin: 0; }

/* Flash messages */
.flash-messages { padding: 1rem 0; text-align: center; }
.flash {
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: center;
  border: 1px solid transparent;
}
.flash-success { background: rgba(34, 197, 94, 0.14); color: #86efac; border-color: rgba(34, 197, 94, 0.32); }
.flash-error { background: rgba(239, 68, 68, 0.14); color: #fca5a5; border-color: rgba(239, 68, 68, 0.32); }
.flash-info { background: rgba(59, 130, 246, 0.14); color: #93c5fd; border-color: rgba(59, 130, 246, 0.32); }

/* Cards and forms */
.card {
  background: var(--surface);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.card + .card { margin-top: 1.25rem; }
.card--soft { background: var(--gray-50); box-shadow: none; border-color: var(--gray-200); }
.card--accent {
  border-left: 4px solid var(--accent-400);
}
.card-label {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  background: var(--accent-100);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-700);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.card-meta { font-size: 0.9375rem; color: var(--gray-600); margin: 0.5rem 0 0; }
.card-note { font-size: 0.875rem; color: var(--gray-600); margin: 1rem 0 0; }
.text-lead { font-size: 1.0625rem; color: var(--gray-700); margin-bottom: 1rem; line-height: 1.6; }
.list-border {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 3px solid var(--accent-300);
  padding-left: 1rem;
}
.list-border li {
  margin-bottom: 0.5rem;
  position: relative;
}
.list-border li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-500);
  margin-right: 0.6rem;
  vertical-align: middle;
}
.list-schedule {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-schedule li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9375rem;
}
.list-schedule li:last-child { border-bottom: none; }
.page-header--underline {
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}
.page-header--underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3rem;
  height: 4px;
  background: var(--accent-400);
  border-radius: 4px;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: 1fr 1fr; } }
.team-grid .team-card {
  margin-top: 0; /* override .card + .card so second card in each row isn't pushed down */
  align-self: stretch;
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}
.team-grid .team-card .team-card-inner {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  flex: 1;
  min-height: 0;
}
.team-card { padding: 1.25rem; }
.team-card-inner { display: flex; gap: 1.25rem; align-items: flex-start; }
.team-card-img {
  width: 5rem;
  height: 5rem;
  min-width: 5rem;
  min-height: 5rem;
  max-width: 5rem;
  max-height: 5rem;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  display: block;
}
@media (min-width: 640px) {
  .team-card-img {
    width: 5.5rem;
    height: 5.5rem;
    min-width: 5.5rem;
    min-height: 5.5rem;
    max-width: 5.5rem;
    max-height: 5.5rem;
  }
}
.team-card-text { min-width: 0; }
.team-card-name { margin: 0; font-size: 1.0625rem; font-weight: 600; color: var(--gray-900); }
.team-card-role { font-size: 0.875rem; font-weight: 500; color: var(--primary-600); margin: 0.2rem 0 0.35rem; }
.team-card-bio { font-size: 0.875rem; color: var(--gray-600); margin: 0; line-height: 1.5; }
.quick-links { list-style: none; padding: 0; margin: 0; }
.quick-links li { margin-bottom: 0.5rem; }
.quick-links a {
  color: var(--primary-600);
  font-weight: 500;
  text-decoration: none;
}
.quick-links a:hover { text-decoration: underline; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.25rem; color: var(--gray-700); }
.form-control {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  background: var(--surface-3);
  color: var(--gray-900);
}
.form-control::placeholder { color: var(--gray-500); }
.form-control:focus { outline: none; border-color: var(--primary-500); box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.22); }
/* Visible edges on inputs (auth and anywhere using .input-bordered) */
.input-bordered,
.auth-form .form-control {
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  padding: 0.65rem 0.875rem;
  font-size: 1rem;
  background: var(--surface-3);
}
.input-bordered:focus,
.auth-form .form-control:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.18);
}
textarea.input-bordered,
textarea.auth-form .form-control {
  min-height: 2.5rem;
  resize: vertical;
  border: 2px solid var(--gray-400);
}
textarea.input-bordered:focus,
textarea.auth-form .form-control:focus {
  border-color: var(--primary-500);
}
.radio-label { font-weight: normal; cursor: pointer; display: inline-flex; align-items: center; gap: 0.35rem; }
.page-header {
  font-family: var(--font-display);
  margin-bottom: 1.25rem;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}
.page-header h1 { font-family: var(--font-display); margin: 0; font-size: 1.85rem; font-weight: 600; letter-spacing: -0.015em; }
.page-header h2 { font-family: var(--font-display); margin: 0; font-size: 1.45rem; font-weight: 600; letter-spacing: -0.01em; }
.page-subheader { margin: 1rem 0 0.5rem; font-size: 1.125rem; font-weight: 600; color: var(--gray-800); }
.page-subheader:first-child { margin-top: 0; }
.page-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

/* Page sections */
.page-section { padding: 2rem 0; }
.landing-tabs-container { padding-top: 2rem; padding-bottom: 2.5rem; }

/* Tabs (landing) — pill style */
.tabs { margin-bottom: 1.75rem; }
.tabs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0;
  padding: 0.4rem;
  background: var(--surface);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}
.tabs-list li {
  margin: 0;
  flex: 1 1 8rem;    /* equal share when room, wrap below 8rem */
  min-width: 0;
}
.tabs-list button,
.tabs-list .tab-trigger {
  display: block;
  width: 100%;
  padding: 0.65rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--gray-600);
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  background: transparent;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
.tabs-list button:hover,
.tabs-list .tab-trigger:hover {
  color: var(--primary-700);
  background: var(--primary-50);
}
.tabs-list button.active,
.tabs-list .tab-trigger.active {
  color: white;
  background: var(--primary-600);
  box-shadow: var(--shadow-navy);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
.tab-panel p { color: var(--gray-700); line-height: 1.65; }
.tab-panel ul.border-l-primary { padding-left: 1rem; }
.tab-panel ul.border-l-primary li { margin-bottom: 0.35rem; }

/* ----- Contact tab — phone & email block ----- */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  gap: 0.85rem;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.15s ease;
}
.contact-info li:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-strong);
  transform: translateY(-1px);
}
.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius);
  background: rgba(251, 191, 36, 0.12);
  color: var(--accent-400);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 1.4rem; height: 1.4rem; }
.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.contact-info-link {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--gray-900);
  text-decoration: none;
  word-break: break-all;
  transition: color 0.18s ease;
}
.contact-info-link:hover { color: var(--accent-300); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
@media (min-width: 640px) {
  .contact-info-link { font-size: 1.1rem; }
}

/* List tables */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
table { width: 100%; border-collapse: collapse; }
th, td { padding: 0.875rem 1rem; text-align: left; border-bottom: 1px solid var(--gray-100); }
th {
  font-weight: 600;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-600);
  background: var(--gray-50);
}
th:first-child, td:first-child { padding-left: 1.25rem; }
th:last-child, td:last-child { padding-right: 1.25rem; }
tr:last-child td { border-bottom: none; }
tr:hover { background: var(--gray-50); }
.table-wrap a { color: var(--primary-600); font-weight: 500; text-decoration: none; }
.table-wrap a:hover { text-decoration: underline; }

/* ===========================
   Programs grid (landing) – 6 cards
   =========================== */
.program-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .program-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .program-grid { grid-template-columns: repeat(3, 1fr); } }

.program-tile {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.4rem 1.4rem;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.program-tile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--accent-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.program-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-200);
}
.program-tile:hover::before { transform: scaleX(1); }

.program-tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background: var(--primary-100);
  color: var(--primary-700);
}
.program-tile-icon svg { width: 1.65rem; height: 1.65rem; }
.program-tile:nth-child(2) .program-tile-icon,
.program-tile:nth-child(4) .program-tile-icon,
.program-tile:nth-child(6) .program-tile-icon {
  background: var(--accent-100);
  color: var(--accent-700);
}

.program-tile-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-700);
}
.program-tile-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}
.program-tile-desc {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}
.program-tile-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
  color: var(--primary-700);
  font-size: 0.875rem;
  font-weight: 600;
}
.program-tile:hover .program-tile-link { gap: 0.55rem; }
.program-tile-link svg { width: 0.9rem; height: 0.9rem; }

/* ===========================
   Back link (sub-pages)
   =========================== */
.hero-back-row {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.95rem 0.4rem 0.8rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-strong);
  color: var(--gray-800);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, color 0.2s, transform 0.15s, gap 0.2s;
}
.back-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}
.back-link:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--accent-300);
  transform: translateX(-2px);
}
.back-link:hover svg { transform: translateX(-2px); }
.back-link--on-dark {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.30);
  color: white;
  backdrop-filter: blur(4px);
}
.back-link--on-dark:hover {
  background: rgba(255, 255, 255, 0.20);
  color: white;
}

/* ===========================
   Programs page – jump nav + detail blocks
   =========================== */
.hero--compact { min-height: 22rem; }
.hero--compact .hero-inner { padding: 3rem 1rem 3.5rem; }
@media (min-width: 1024px) {
  .hero--compact .hero-inner { padding: 4rem 2rem 4rem; }
}

.programs-jump {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1.5rem 1rem 0.5rem;
  margin-top: -0.5rem;
}
.programs-jump-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 9999px;
  background: var(--surface);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.programs-jump-pill:hover {
  background: var(--primary-600);
  border-color: var(--primary-600);
  color: white;
  transform: translateY(-1px);
}

.program-block {
  padding: 3rem 1rem;
  scroll-margin-top: 5rem;
}
@media (min-width: 768px) { .program-block { padding: 3.5rem 1.5rem; } }
.program-block--alt { background: var(--surface); }

.program-card {
  max-width: 70rem;
  margin: 0 auto;
  background: var(--page);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.program-block--alt .program-card { background: var(--surface-2); }
.program-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-600), var(--accent-400));
}
@media (min-width: 768px) {
  .program-card { padding: 2.5rem 2.5rem 2.25rem; }
}

.program-head {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.program-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: var(--radius-lg);
}
.program-icon svg { width: 2rem; height: 2rem; }
.program-icon--blue { background: var(--primary-100); color: var(--primary-700); }
.program-icon--yellow { background: var(--accent-100); color: var(--accent-700); }

.program-eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary-700);
  margin-bottom: 0.35rem;
}
.program-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--gray-900);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
@media (min-width: 768px) { .program-title { font-size: 2rem; } }
.program-tagline {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.55;
  margin: 0;
}
.program-lead {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin: 0 0 1.75rem;
  padding: 1rem 1.25rem;
  background: var(--primary-50);
  border-left: 4px solid var(--accent-400);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.program-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .program-cols { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.program-col-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 0 0 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-200);
  letter-spacing: -0.005em;
}
.program-col .list-border {
  border-left-color: var(--primary-200);
  font-size: 0.92rem;
}
.program-col .list-border li { color: var(--gray-700); }

.session-badge {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  background: var(--primary-600);
  color: white;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}
.session-flow {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.session-flow li {
  counter-increment: step;
  position: relative;
  padding: 0.4rem 0 0.4rem 2rem;
  border-bottom: 1px dashed var(--gray-200);
}
.session-flow li:last-child { border-bottom: none; }
.session-flow li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--accent-100);
  color: var(--accent-700);
  font-weight: 700;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.session-tools {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Utilities */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.border-l-primary { border-left: 2px solid var(--primary-200); padding-left: 0.75rem; }
.rounded-xl { border-radius: 0.75rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 768px) { .grid-2 { grid-template-columns: 1fr; } }
