:root {
  --background: #ffffff;
  --foreground: #151b28;
  --primary: #172034;
  --primary-soft: #222d45;
  --primary-muted: rgba(247, 244, 237, 0.56);
  --card: #ffffff;
  --secondary: #f6f7f9;
  --muted: #e5e7eb;
  --muted-text: #606776;
  --border: #d6ccbd;
  --accent: #c69a39;
  --danger: #b3261e;
  --shadow-card: 0 18px 42px rgba(21, 27, 40, 0.075), 0 2px 8px rgba(21, 27, 40, 0.045);
  --shadow-card-hover: 0 28px 64px rgba(21, 27, 40, 0.14), 0 6px 18px rgba(21, 27, 40, 0.06);
  --shadow-panel: 0 24px 70px rgba(21, 27, 40, 0.1), 0 2px 10px rgba(21, 27, 40, 0.04);
  --image-filter: saturate(1.16) contrast(1.08) brightness(1.08);
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "EB Garamond", Georgia, serif;
  color: var(--foreground);
  font-family: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--background);
}

[hidden] {
  display: none !important;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  color: #f7f4ed;
  background: var(--primary);
  box-shadow: 0 10px 28px rgba(21, 27, 40, 0.18);
}

.topbar,
.nav-row,
.footer-inner,
.container {
  width: min(1400px, 100%);
  margin: 0 auto;
  padding-inline: clamp(24px, 4vw, 40px);
}

.topbar {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-icon,
.search-icon,
.tiny-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.brand sup {
  color: var(--accent);
  font-size: 13px;
  top: 0;
}

.header-search {
  max-width: 576px;
  flex: 1 1 auto;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 12px;
  border: 1px solid rgba(247, 244, 237, 0.15);
  background: rgba(247, 244, 237, 0.1);
}

.header-search input {
  width: 100%;
  min-height: 27px;
  border: 0;
  outline: 0;
  color: #f7f4ed;
  background: transparent;
  font-size: 14px;
}

.header-search input::placeholder {
  color: rgba(247, 244, 237, 0.42);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.header-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  color: rgba(247, 244, 237, 0.72);
  font-size: 12px;
  font-weight: 500;
}

.header-actions .cta-small {
  min-height: 40px;
  color: var(--foreground);
  background: var(--accent);
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #f7f4ed;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.nav-strip {
  border-top: 1px solid rgba(247, 244, 237, 0.05);
  border-bottom: 1px solid rgba(247, 244, 237, 0.1);
  background: var(--primary);
}

.nav-row {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: visible;
}

.nav-item-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-row > .nav-item-wrap > a {
  white-space: nowrap;
  color: #ffffff;
  padding: 15px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

@media (max-width: 1320px) {
  .topbar,
  .nav-row {
    padding-inline: 18px;
  }

  .topbar {
    gap: 14px;
  }

  .brand {
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .header-search {
    max-width: 420px;
  }

  .header-actions {
    gap: 12px;
  }

  .header-actions .cta-small {
    padding-inline: 13px;
  }

  .nav-row {
    gap: 0;
    justify-content: center;
  }

  .nav-row > .nav-item-wrap > a {
    padding-inline: 8px;
    font-size: 11px;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 1180px) {
  .header-search {
    max-width: 340px;
  }

  .header-search input {
    min-height: 36px;
  }

  .nav-row > .nav-item-wrap > a {
    padding-inline: 6px;
    font-size: 10px;
    letter-spacing: 0.03em;
  }

  .nav-submenu {
    width: min(760px, calc(100vw - 36px));
    grid-template-columns: minmax(0, 1fr) 180px;
    gap: 20px;
    padding: 22px;
  }

  .nav-item-wrap:nth-last-child(-n + 6) .nav-submenu {
    left: auto;
    right: 0;
  }

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

  .nav-mega-column a {
    min-height: 36px;
    align-items: center;
  }
}

.nav-row > .nav-item-wrap > a:hover,
.nav-row > .nav-item-wrap > a.active {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 220;
  width: min(860px, calc(100vw - 80px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 28px;
  border: 1px solid rgba(21, 27, 40, 0.14);
  padding: 28px;
  color: var(--foreground);
  background: #ffffff;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-item-wrap:nth-last-child(-n + 3) .nav-submenu {
  left: auto;
  right: 0;
}

.nav-item-wrap:hover .nav-submenu,
.nav-item-wrap:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-mega-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.nav-mega-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.nav-mega-column p {
  margin: 0;
  color: var(--foreground);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-mega-helper {
  display: block;
  max-width: 190px;
  margin: -2px 0 4px;
  color: var(--muted-text);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

.nav-mega-column a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted-text);
  padding: 4px 0;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
  transition: color 200ms ease, transform 200ms ease;
}

.nav-mega-column a:hover {
  color: var(--foreground);
  transform: translateX(2px);
}

.nav-mega-feature {
  display: grid;
  align-content: start;
  gap: 16px;
  border: 1px solid var(--border);
  padding: 16px;
  color: var(--foreground);
  background: var(--background);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.nav-mega-feature:hover {
  border-color: rgba(198, 154, 57, 0.5);
  box-shadow: 0 16px 34px rgba(21, 27, 40, 0.08);
  transform: translateY(-1px);
}

.nav-mega-feature img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  object-position: center;
  filter: var(--image-filter);
}

.nav-mega-feature span {
  margin-top: -2px;
  color: var(--foreground);
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.05;
}

.nav-mega-feature small {
  color: var(--muted-text);
  font-size: 12px;
  line-height: 1.45;
}

.nav-mega-feature .button {
  min-height: 46px;
  justify-content: center;
  margin-top: 2px;
}

.nav-mega-feature .button + small {
  margin-top: 8px;
  color: var(--muted-text);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
}

main {
  flex: 1;
  padding-top: 100px;
}

.split-hero,
.cta-split {
  display: flex;
  min-height: 520px;
}

.expanse-hero,
.cta-split {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(198, 154, 57, 0.12), transparent 27%),
    radial-gradient(circle at 92% 78%, rgba(44, 93, 136, 0.1), transparent 28%),
    #ffffff;
}

.split-hero.home {
  min-height: 640px;
}

.hero-media,
.split-media {
  position: relative;
  min-height: 280px;
  overflow: visible;
}

.hero-media {
  width: 58%;
  isolation: isolate;
}

.hero-copy {
  width: 42%;
}

.hero-media img,
.split-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--image-filter);
}

.expanse-media img {
  inset: clamp(18px, 3vw, 42px);
  width: calc(100% - clamp(36px, 6vw, 84px));
  height: calc(100% - clamp(36px, 6vw, 84px));
  border: 1px solid var(--border);
  box-shadow: 0 28px 72px rgba(21, 27, 40, 0.14);
}

.media-orbit {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  pointer-events: none;
}

.media-orbit-one {
  top: clamp(28px, 5vw, 70px);
  left: clamp(18px, 4vw, 56px);
  width: clamp(92px, 13vw, 170px);
  height: clamp(92px, 13vw, 170px);
  border: 1px solid rgba(198, 154, 57, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.media-orbit-two {
  right: clamp(20px, 5vw, 64px);
  bottom: clamp(20px, 5vw, 64px);
  width: clamp(72px, 10vw, 132px);
  height: clamp(72px, 10vw, 132px);
  background: rgba(198, 154, 57, 0.18);
}

.hero-copy,
.split-copy {
  display: flex;
  align-items: center;
  padding: clamp(56px, 7vw, 80px) clamp(40px, 5vw, 64px);
  background: var(--background);
}

.hero-copy > div,
.split-copy > div {
  max-width: 448px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.serif {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--foreground);
  font-size: clamp(44px, 5vw, 60px);
  line-height: 1.05;
}

.home h1 {
  font-size: clamp(48px, 5.2vw, 72px);
}

h2 {
  margin-bottom: 0;
  color: var(--foreground);
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.08;
}

h3 {
  color: var(--foreground);
  font-size: 22px;
  line-height: 1.15;
}

.lede,
.section-copy,
.card p,
.feature p,
.campus-card p,
.footer p,
.form-card p,
.answer-card p,
.article-card p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.72;
}

.lede {
  max-width: 400px;
  margin-bottom: 30px;
}

.support-line {
  margin: 20px 0 0;
  color: var(--muted-text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.access-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.access-pill-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  padding: 7px 10px;
  color: var(--foreground);
  background: rgba(198, 154, 57, 0.08);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.access-pill-row svg {
  width: 13px;
  height: 13px;
  color: var(--accent);
  stroke-width: 2;
}

.ask-inline,
.directory-toolbar {
  display: flex;
  align-items: center;
  border: 1px solid rgba(21, 27, 40, 0.3);
  background: var(--card);
}

.ask-inline .search-icon {
  margin-left: 16px;
  color: var(--muted-text);
  flex: 0 0 auto;
}

.ask-inline input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 14px 12px;
  background: transparent;
  color: var(--foreground);
  font-size: 14px;
}

.ask-inline button,
.button.primary {
  border: 0;
  color: #f7f4ed;
  background: var(--primary);
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 160ms ease;
}

.ask-inline button:hover,
.button.primary:hover {
  background: #25324d;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.chip {
  border: 1px solid var(--border);
  padding: 7px 12px;
  color: var(--muted-text);
  background: transparent;
  font-size: 12px;
}

.chip:hover {
  color: var(--foreground);
  border-color: rgba(21, 27, 40, 0.4);
}

.section {
  border-top: 1px solid var(--border);
  padding: clamp(64px, 7vw, 96px) 0;
}

.section.alt {
  background: rgba(238, 232, 220, 0.44);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  color: var(--foreground);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.card {
  position: relative;
  overflow: hidden;
  display: block;
  min-width: 0;
  border: 1px solid var(--border);
  background: var(--background);
  box-shadow: 0 14px 36px rgba(21, 27, 40, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(198, 154, 57, 0.52);
  box-shadow: 0 24px 54px rgba(21, 27, 40, 0.12);
}

.card-media {
  height: 208px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--image-filter);
  transition: transform 700ms ease;
}

.card:hover .card-media img,
.campus-card:hover img {
  transform: scale(1.04);
}

.card-body {
  padding: 28px;
}

.card .eyebrow,
.mini-eyebrow {
  margin-bottom: 9px;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.campus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.campus-card {
  position: relative;
  display: block;
  border: 1px solid var(--border);
  padding: 12px 12px 18px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.campus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.campus-card .image {
  height: 224px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #172034;
}

.campus-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--image-filter);
  transition: transform 700ms ease;
}

.campus-card h3 {
  padding: 0 8px;
  margin: 0;
  font-size: 21px;
}

.campus-card p,
.campus-card .eyebrow {
  padding-inline: 8px;
}

.school-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-inline: 8px;
  margin: 12px 0 10px;
}

.school-chip-row span {
  border: 1px solid rgba(198, 154, 57, 0.34);
  padding: 5px 8px;
  color: var(--foreground);
  background: rgba(198, 154, 57, 0.08);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.campus-card-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 8px 4px;
  border-top: 1px solid rgba(11, 31, 58, 0.1);
  padding-top: 14px;
}

.campus-card-stats span {
  color: var(--muted-text);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
}

.campus-card-stats strong {
  display: block;
  margin-bottom: 2px;
  color: var(--foreground);
  font-size: 16px;
  line-height: 1;
}

.campus-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 12px 8px 0;
  border-bottom: 1px solid currentColor;
  color: var(--foreground);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compact-campus-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(56px, 7vw, 96px);
  align-items: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.feature svg,
.benefit svg {
  width: 21px;
  height: 21px;
  margin-bottom: 16px;
  color: var(--accent);
  stroke-width: 1.5;
}

.feature h3,
.benefit h3 {
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
}

.trust-foundation {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--background);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(260px, 1fr) minmax(260px, 1.2fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: 28px 0;
}

.trust-strip h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1;
}

.trust-strip p {
  color: var(--muted-text);
  font-size: 15px;
  line-height: 1.6;
}

.trust-copy {
  display: grid;
  gap: 10px;
}

.trust-strip .trust-disclaimer {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.trust-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  border: 1px solid rgba(198, 154, 57, 0.32);
  background: rgba(198, 154, 57, 0.08);
  color: var(--foreground);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.trust-badge svg {
  width: 13px;
  height: 13px;
  color: var(--gold);
}

.parent-value-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(12, 35, 75, 0.98), rgba(21, 27, 40, 0.98));
  color: #ffffff;
}

.parent-value-strip-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding-block: 18px;
}

.parent-value-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.parent-value-strip div div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.parent-value-strip span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 800;
}

.parent-value-strip svg {
  width: 13px;
  height: 13px;
  color: var(--gold);
}

.parent-journey-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
}

.parent-journey-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--border);
  background: var(--border);
  box-shadow: 0 22px 50px rgba(21, 27, 40, 0.06);
}

.journey-stage-card {
  display: grid;
  min-height: 335px;
  align-content: start;
  gap: 14px;
  padding: 26px;
  color: var(--foreground);
  background:
    radial-gradient(circle at 100% 100%, rgba(198, 154, 57, 0.14), transparent 34%),
    #ffffff;
}

.journey-stage-card:hover {
  transform: translateY(-3px);
}

.journey-stage-card span {
  display: inline-flex;
  width: 58px;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--navy);
  font-weight: 900;
}

.journey-stage-card span b {
  font-size: 12px;
}

.journey-stage-card h3 {
  margin: 0;
  font-size: 24px;
}

.journey-stage-card p {
  margin: 0;
  color: var(--muted-text);
  line-height: 1.55;
}

.journey-stage-card small {
  align-self: end;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-link-stack {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.journey-link-stack a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(21, 27, 40, 0.16);
  padding-top: 8px;
  color: var(--foreground);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-link-stack a:hover {
  color: var(--red);
}

.founding-pilot-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  border: 1px solid rgba(198, 154, 57, 0.45);
  padding: 34px;
  background:
    radial-gradient(circle at 90% 20%, rgba(44, 93, 136, 0.13), transparent 24%),
    #ffffff;
  box-shadow: 0 22px 46px rgba(21, 27, 40, 0.05);
}

.founding-pilot-card h2 {
  font-size: clamp(32px, 4vw, 52px);
}

.founding-pilot-card p {
  max-width: 880px;
  color: var(--muted-text);
  line-height: 1.7;
}

.pilot-action-stack {
  display: grid;
  gap: 12px;
}

.welcome-trust-row {
  margin-top: 22px;
}

.signal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li,
.benefit-line {
  position: relative;
  color: var(--foreground);
  font-size: 14px;
  line-height: 1.55;
}

.signal-list li {
  padding-left: 16px;
}

.signal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.parent-access-note {
  margin-top: 32px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.parent-access-note h3 {
  margin-bottom: 10px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
}

.parent-access-note p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.65;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--border);
  background: var(--border);
  gap: 1px;
}

.stat-grid div {
  min-height: 160px;
  padding: 28px;
  background: var(--background);
}

.stat-grid strong,
.stat-grid span {
  display: block;
}

.stat-grid strong {
  margin-bottom: 12px;
  color: var(--foreground);
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.stat-grid span {
  max-width: 180px;
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.step-card-grid,
.comparison-grid,
.benefit-list-grid {
  display: grid;
  gap: 18px;
}

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

.step-card,
.comparison-card,
.benefit-line {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--background);
  box-shadow: 0 12px 30px rgba(21, 27, 40, 0.045);
}

.step-card {
  min-height: 286px;
  padding: 30px 26px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.step-card::after,
.benefit-line::after,
.comparison-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(198, 154, 57, 0.28);
  border-radius: 999px;
}

.step-card:hover,
.benefit-line:hover,
.comparison-card:hover {
  border-color: rgba(198, 154, 57, 0.42);
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(21, 27, 40, 0.09);
}

.step-count {
  display: block;
  margin-bottom: 28px;
  color: var(--border);
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1;
}

.step-card svg {
  width: 22px;
  height: 22px;
  margin-bottom: 18px;
  color: var(--accent);
  stroke-width: 1.5;
}

.step-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
}

.step-card p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.65;
}

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

.comparison-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
}

.comparison-card > div {
  min-height: 150px;
  padding: 28px;
  background: var(--background);
}

.comparison-card h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
}

.starter-kit-section .form-card {
  background: var(--background);
}

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

.benefit-line {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 20px 22px;
  font-weight: 600;
}

.benefit-line svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--accent);
  stroke-width: 2;
}

.start-path-grid,
.starter-resource-grid {
  display: grid;
  gap: 18px;
}

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

.start-path-card,
.starter-resource-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  border: 1px solid var(--border);
  background: var(--background);
  padding: 24px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.start-path-card::after,
.starter-resource-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -46px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(198, 154, 57, 0.25);
  border-radius: 999px;
}

.start-path-card:hover,
.starter-resource-card:hover {
  border-color: rgba(198, 154, 57, 0.42);
  box-shadow: 0 24px 48px rgba(21, 27, 40, 0.08);
  transform: translateY(-4px);
}

.start-path-card > span {
  margin-bottom: 38px;
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1;
}

.start-path-card h3,
.starter-resource-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
}

.start-path-card p,
.starter-resource-card p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.65;
}

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

.starter-resource-grid.compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.starter-resource-card {
  min-height: 230px;
}

.starter-resource-card .trust-badge {
  align-self: flex-start;
  margin-bottom: 26px;
}

.starter-resource-card .text-link {
  margin-top: auto;
}

.resource-card-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.resource-card-actions .text-link {
  margin-top: 0;
}

.resource-card-actions .secondary-link {
  color: var(--muted-text);
  border-bottom-color: rgba(91, 99, 118, 0.45);
}

.dashboard-starter-kit {
  background: linear-gradient(135deg, rgba(198, 154, 57, 0.08), rgba(255, 255, 255, 0));
}

.cta-split {
  border-top: 1px solid var(--border);
}

.cta-split .split-media,
.cta-split .split-copy {
  width: 50%;
}

.cta-split .split-copy {
  color: #f7f4ed;
  background: var(--primary);
}

.cta-split h2 {
  color: #f7f4ed;
}

.cta-split .eyebrow,
.cta-split p {
  color: rgba(247, 244, 237, 0.58);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  border: 1px solid transparent;
  padding: 13px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button.accent {
  color: var(--foreground);
  background: var(--accent);
}

.button.light {
  border-color: rgba(247, 244, 237, 0.3);
  color: #f7f4ed;
}

.button.outline {
  border-color: var(--foreground);
  color: var(--foreground);
}

.button.outline:hover {
  color: var(--background);
  background: var(--foreground);
}

.commons-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(198, 154, 57, 0.14), transparent 26%),
    radial-gradient(circle at 86% 72%, rgba(44, 93, 136, 0.12), transparent 28%),
    #ffffff;
  border-bottom: 1px solid var(--border);
}

.commons-orbit {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.orbit-one {
  top: 96px;
  right: 7vw;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(198, 154, 57, 0.42);
}

.orbit-two {
  left: -90px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  background: rgba(23, 32, 52, 0.05);
}

.commons-hero-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.72fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
  padding-top: 88px;
  padding-bottom: 88px;
}

.commons-badge {
  display: inline-flex;
  margin-bottom: 22px;
  border: 1px solid rgba(198, 154, 57, 0.35);
  padding: 8px 12px;
  color: var(--foreground);
  background: rgba(198, 154, 57, 0.12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.commons-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(52px, 5.4vw, 78px);
}

.commons-hero-copy .lede {
  max-width: 660px;
  font-size: 18px;
  line-height: 1.7;
}

.commons-search {
  max-width: 760px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 34px 0 16px;
  border: 1px solid var(--border);
  padding: 10px 10px 10px 18px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(21, 27, 40, 0.08);
}

.commons-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: var(--foreground);
  background: transparent;
  font-size: 16px;
}

.commons-search input::placeholder {
  color: rgba(96, 103, 118, 0.72);
}

.commons-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 760px;
  margin-bottom: 24px;
}

.commons-suggestions a {
  border: 1px solid var(--border);
  padding: 8px 11px;
  color: var(--muted-text);
  background: rgba(246, 247, 249, 0.8);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.commons-suggestions a:hover {
  border-color: var(--foreground);
  color: var(--foreground);
}

.commons-hero-media {
  position: relative;
  min-height: 500px;
  border: 0;
  overflow: hidden;
}

.commons-image-stack {
  position: absolute;
  inset: 28px 0;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(21, 27, 40, 0.13);
  overflow: hidden;
}

.commons-hero-media img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--image-filter);
}

.commons-image-stack .feature-image {
  inset: 0;
  width: 100%;
  height: 100%;
}

.circle-image {
  border-radius: 999px;
  border: 8px solid #ffffff;
  box-shadow: 0 18px 44px rgba(21, 27, 40, 0.14);
}

.circle-one {
  top: 0;
  left: 0;
  width: 180px;
  height: 180px;
}

.circle-two {
  right: 18px;
  bottom: 0;
  width: 138px;
  height: 138px;
}

.commons-topic-grid,
.commons-download-grid,
.commons-collection-grid,
.commons-trending-grid {
  display: grid;
  gap: 18px;
}

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

.commons-topic-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  padding: 0;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(21, 27, 40, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.commons-topic-card:hover {
  transform: translateY(-5px);
  border-color: rgba(198, 154, 57, 0.58);
  box-shadow: 0 24px 52px rgba(21, 27, 40, 0.12);
}

.topic-image {
  position: relative;
  display: block;
  height: 158px;
  overflow: hidden;
}

.topic-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21, 27, 40, 0.02), rgba(21, 27, 40, 0.18));
}

.topic-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--image-filter);
  transition: transform 260ms ease;
}

.commons-topic-card:hover .topic-image img {
  transform: scale(1.05);
}

.topic-emoji {
  position: absolute;
  top: 128px;
  left: 28px;
  z-index: 1;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 6px solid #ffffff;
  border-radius: 999px;
  background: #fff7e8;
  box-shadow: 0 12px 24px rgba(21, 27, 40, 0.1);
  font-size: 25px;
}

.commons-topic-card h3,
.commons-resource-card h3,
.commons-collection-card h3,
.commons-trending-card h3 {
  margin-bottom: 12px;
}

.commons-topic-card h3 {
  margin: 42px 28px 12px;
  font-size: 24px;
  line-height: 1.08;
}

.commons-topic-card ul,
.commons-collection-card ul {
  display: grid;
  gap: 7px;
  padding: 0;
  list-style: none;
}

.commons-topic-card ul {
  margin: 0 28px 22px;
}

.commons-topic-card details {
  margin: 0 28px 16px;
}

.commons-topic-card summary {
  cursor: pointer;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commons-topic-card details ul {
  margin: 0;
}

.commons-topic-card li,
.commons-collection-card li {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.45;
}

.commons-topic-card .text-link {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 8px;
  justify-content: center;
  margin: auto auto 26px;
  border: 1px solid rgba(21, 27, 40, 0.72);
  padding: 10px 18px;
  min-width: 172px;
  background: #ffffff;
  text-align: center;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.commons-topic-card:hover .text-link {
  border-color: var(--foreground);
  color: #ffffff;
  background: var(--foreground);
}

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

.commons-resource-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--border);
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.86), #ffffff 52%);
  box-shadow: 0 12px 30px rgba(21, 27, 40, 0.04);
}

.commons-resource-card:nth-child(2n) {
  background:
    linear-gradient(135deg, rgba(246, 247, 249, 0.96), #ffffff 58%);
}

.resource-ring {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(198, 154, 57, 0.42);
  border-radius: 999px;
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 23px;
  line-height: 1;
}

.commons-resource-card p,
.commons-trending-card p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.6;
}

.commons-resource-card .button {
  width: max-content;
  margin-top: auto;
}

.bookmark-button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted-text);
  background: #ffffff;
  font-size: 18px;
}

.bookmark-button:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.bookmark-button.active {
  color: #f7f4ed;
  border-color: var(--primary);
  background: var(--primary);
}

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

.commons-collection-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  padding: 26px;
  background: #ffffff;
}

.commons-collection-card::before {
  content: "";
  position: absolute;
  top: -58px;
  right: -58px;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  background: rgba(198, 154, 57, 0.12);
}

.commons-collection-card:nth-child(even)::before {
  background: rgba(44, 93, 136, 0.12);
}

.commons-collection-card > span {
  width: max-content;
  margin-bottom: 30px;
  border: 1px solid var(--border);
  padding: 6px 9px;
  color: var(--muted-text);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commons-collection-card .text-link {
  margin-top: auto;
}

.commons-ai-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.62fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
}

.commons-ai-preview::before {
  content: "";
  position: absolute;
  left: 44%;
  top: 50%;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  border: 1px solid rgba(198, 154, 57, 0.34);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.commons-chat-preview {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  border: 1px solid var(--border);
  padding: 22px;
  background: #ffffff;
}

.chat-bubble {
  width: fit-content;
  max-width: 86%;
  border: 1px solid var(--border);
  padding: 14px 16px;
  color: var(--foreground);
  background: rgba(246, 247, 249, 0.9);
  font-size: 14px;
  line-height: 1.55;
}

.chat-bubble.reply {
  justify-self: end;
  color: #f7f4ed;
  background: var(--primary);
  border-color: var(--primary);
}

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

.commons-trending-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  padding: 24px;
  background: #ffffff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.commons-trending-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: rgba(23, 32, 52, 0.05);
}

.commons-trending-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(21, 27, 40, 0.1);
}

.commons-trending-card .text-link {
  margin-top: auto;
}

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

.step-number {
  margin-bottom: 22px;
  color: var(--border);
  font-family: var(--font-serif);
  font-size: 58px;
}

.choice-grid,
.benefit-grid,
.tier-grid,
.article-grid {
  display: grid;
  gap: 24px;
}

.choice-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 38px;
}

.choice-grid button {
  min-height: 78px;
  border: 1px solid var(--border);
  padding: 16px;
  color: var(--foreground);
  background: transparent;
  text-align: left;
}

.choice-grid button.active {
  border-color: var(--foreground);
  color: var(--background);
  background: var(--foreground);
}

.welcome-onboarding-layout,
.welcome-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

#welcome-signup {
  scroll-margin-top: 120px;
}

.welcome-mat-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 82% 20%, rgba(198, 154, 57, 0.12), transparent 24%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 48%, rgba(23, 32, 52, 0.16) 100%),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1600&q=86") center/cover;
}

.welcome-mat-hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.58fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
}

.welcome-mat-copy h1 {
  max-width: 820px;
  font-size: clamp(58px, 6vw, 92px);
}

.welcome-mat-copy .lede {
  max-width: 710px;
  color: var(--foreground);
  font-size: 18px;
  line-height: 1.75;
}

.welcome-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 680px;
  margin-top: 34px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

.welcome-proof-row div {
  display: grid;
  min-height: 76px;
  align-content: start;
  padding: 16px 22px;
  border-left: 1px solid var(--border);
}

.welcome-proof-row div:first-child {
  border-left: 0;
}

.welcome-proof-row strong,
.welcome-proof-row span {
  display: block;
}

.welcome-proof-row strong {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
}

.welcome-proof-row strong svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.welcome-proof-row span {
  padding-left: 24px;
  color: var(--muted-text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.welcome-hero-panel {
  border: 1px solid rgba(247, 244, 237, 0.18);
  padding: 18px;
  color: #f7f4ed;
  background: rgba(23, 32, 52, 0.92);
  box-shadow: 0 28px 70px rgba(21, 27, 40, 0.2);
}

.welcome-hero-panel > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  margin-bottom: 16px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.welcome-campus-preview {
  border: 1px solid rgba(247, 244, 237, 0.16);
  padding: 30px;
  background: rgba(247, 244, 237, 0.06);
}

.welcome-campus-preview .eyebrow,
.welcome-campus-preview h2 {
  color: #f7f4ed;
}

.welcome-campus-preview h2 {
  margin-bottom: 26px;
  font-size: clamp(36px, 4vw, 58px);
}

.welcome-preview-list,
.welcome-perk-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}

.welcome-preview-list {
  border-color: rgba(247, 244, 237, 0.14);
  background: rgba(247, 244, 237, 0.14);
}

.welcome-preview-list span,
.welcome-perk-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px;
  font-size: 13px;
  font-weight: 700;
}

.welcome-preview-list span {
  color: rgba(247, 244, 237, 0.82);
  background: rgba(21, 27, 40, 0.52);
}

.welcome-preview-list svg,
.welcome-perk-list svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.welcome-unlock-section {
  background: #ffffff;
}

.welcome-family-section {
  background: #ffffff;
}

.welcome-family-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.welcome-family-card,
.welcome-moment-card {
  overflow: hidden;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.welcome-family-card:hover,
.welcome-moment-card:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 154, 57, 0.54);
  box-shadow: var(--shadow-card-hover);
}

.welcome-family-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.02);
}

.welcome-family-card div {
  padding: 22px;
}

.welcome-family-card h3,
.welcome-moment-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.welcome-family-card p,
.welcome-moment-card p {
  margin: 0;
  color: var(--muted-text);
  line-height: 1.58;
}

.welcome-moments-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(198, 154, 57, 0.1), transparent 24%),
    var(--background);
}

.welcome-moment-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
  box-shadow: var(--shadow-card);
}

.welcome-moment-card {
  box-shadow: none;
}

.welcome-moment-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
}

.welcome-moment-card div {
  min-height: 190px;
  padding: 22px;
}

.welcome-unlock-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}

.welcome-unlock-grid article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: var(--background);
}

.welcome-unlock-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 32px;
  color: var(--accent);
  background: var(--primary);
}

.welcome-unlock-grid svg {
  width: 21px;
  height: 21px;
}

.welcome-unlock-grid h3 {
  margin-bottom: 10px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 900;
}

.welcome-unlock-grid p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.65;
}

.welcome-signup-section {
  border-top: 1px solid var(--border);
  padding: clamp(72px, 8vw, 112px) 0;
  color: #f7f4ed;
  background:
    radial-gradient(circle at 12% 12%, rgba(198, 154, 57, 0.16), transparent 28%),
    var(--primary);
}

.welcome-signup-hero {
  padding: clamp(32px, 4.5vw, 58px) 0 clamp(34px, 5vw, 62px);
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.96) 0%, rgba(251, 248, 241, 0.9) 46%, rgba(251, 248, 241, 0.72) 100%),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1600&q=84") center/cover;
}

.welcome-signup-hero .container {
  max-width: 1280px;
}

.welcome-signup-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.welcome-signup-copy h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(46px, 6vw, 82px);
}

.welcome-signup-copy .lede {
  max-width: 720px;
}

.welcome-signup-copy .welcome-proof-row {
  max-width: 720px;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.78);
}

.welcome-signin-link {
  display: inline-flex;
  margin-top: 22px;
}

.pilot-community-card {
  grid-column: 1;
  grid-row: 2;
  max-width: 720px;
  margin-top: -44px;
  border: 1px solid rgba(198, 154, 57, 0.34);
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(21, 27, 40, 0.06);
}

.pilot-community-card h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 3vw, 42px);
}

.pilot-community-card p {
  max-width: 560px;
  color: var(--muted-text);
  line-height: 1.6;
}

.pilot-school-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pilot-school-row span {
  border: 1px solid rgba(21, 27, 40, 0.12);
  padding: 9px 12px;
  color: var(--foreground);
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.pilot-included-eyebrow {
  margin-top: 18px;
  margin-bottom: 10px;
}

.pilot-included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
}

.pilot-included-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--foreground);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.pilot-included-list svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--gold);
}

.welcome-account-panel {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.welcome-hero-form {
  width: 100%;
  border: 1px solid rgba(21, 27, 40, 0.12);
  padding: clamp(24px, 3.2vw, 36px);
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(21, 27, 40, 0.14);
}

.welcome-hero-form h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 3vw, 42px);
}

.welcome-hero-form .form-row {
  align-items: start;
}

.welcome-hero-form label {
  grid-template-rows: auto auto;
  align-content: start;
  gap: 10px;
}

.welcome-hero-form .field-help {
  margin: -4px 0 18px;
  color: var(--muted-text);
  font-size: 12px;
  line-height: 1.55;
}

.welcome-hero-form .form-label-text {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  min-height: 14px;
  line-height: 1;
}

.welcome-hero-form input {
  display: block;
  height: 56px;
  margin: 0;
  box-sizing: border-box;
}

.welcome-hero-form .button {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.registration-confidence {
  margin: 10px 0 0;
  color: var(--muted-text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.welcome-hero-form .text-link {
  display: inline-flex;
  margin-top: 18px;
}

.welcome-steps-section {
  padding-block: clamp(34px, 4.4vw, 58px);
  background: #ffffff;
}

.welcome-moments-section,
.welcome-family-trust {
  padding-block: clamp(52px, 6vw, 82px);
}

.welcome-moments-section .section-head,
.welcome-family-trust .section-head {
  margin-bottom: clamp(28px, 4vw, 42px);
}

.welcome-journey-bridge {
  border-top: 1px solid var(--border);
  padding: clamp(38px, 5vw, 72px) 0;
  background: #ffffff;
  text-align: center;
}

.welcome-journey-bridge p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted-text);
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
  text-align: center;
}

.welcome-journey-bridge > .container > .eyebrow {
  margin-bottom: 18px;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1;
}

.parent-promise-copy {
  display: grid;
  gap: 10px;
}

.parent-promise-copy p:last-child {
  margin-top: 12px;
  color: var(--foreground);
  font-weight: 700;
}

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

.welcome-step-card {
  border: 1px solid var(--border);
  padding: 26px;
  background: var(--background);
  box-shadow: 0 14px 34px rgba(21, 27, 40, 0.045);
}

.welcome-step-card span {
  display: block;
  margin-bottom: 26px;
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1;
}

.welcome-step-card h3 {
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 900;
}

.welcome-step-card p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.6;
}

.welcome-family-trust .trust-foundation {
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.5fr);
  gap: clamp(26px, 4.5vw, 54px);
  align-items: start;
}

.welcome-family-trust .trust-copy {
  display: block;
}

.welcome-family-trust .trust-copy h2 {
  margin-bottom: 18px;
}

.welcome-family-trust .section-copy {
  max-width: 720px;
}

.welcome-family-trust .benefit-list-grid {
  align-self: end;
  gap: 10px;
}

.welcome-family-trust .benefit-line {
  padding: 14px 16px;
}

.welcome-trust-proof-grid {
  grid-column: 1 / -1;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 6px;
}

.welcome-trust-proof-grid .welcome-family-card {
  min-height: 100%;
}

.welcome-trust-proof-grid .welcome-family-card img {
  aspect-ratio: 16 / 11;
}

.welcome-trust-proof-grid .welcome-family-card div {
  padding: 24px;
}

.welcome-trust-proof-grid .welcome-family-card h3 {
  margin-bottom: 10px;
  font-size: 25px;
  line-height: 1.05;
}

.student-verified-banner-section {
  padding-block: clamp(28px, 4vw, 48px);
  background: #ffffff;
}

.student-verified-banner {
  border: 1px solid var(--border);
  padding: clamp(24px, 4vw, 36px);
  background: var(--background);
  box-shadow: 0 14px 36px rgba(21, 27, 40, 0.04);
}

.student-verified-banner h2 {
  margin: 8px 0 10px;
  font-size: clamp(28px, 3vw, 40px);
}

.student-verified-banner .section-copy {
  max-width: 760px;
}

.welcome-signup-section h2,
.welcome-signup-section .eyebrow {
  color: #f7f4ed;
}

.welcome-signup-story .lede {
  max-width: 650px;
  color: rgba(247, 244, 237, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.welcome-signup-image {
  width: min(620px, 100%);
  aspect-ratio: 16 / 9;
  display: block;
  margin-top: 28px;
  border: 1px solid rgba(247, 244, 237, 0.18);
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
}

.welcome-perk-list {
  max-width: 620px;
  margin-top: 30px;
  border-color: rgba(247, 244, 237, 0.14);
  background: rgba(247, 244, 237, 0.14);
}

.welcome-perk-list span {
  color: rgba(247, 244, 237, 0.82);
  background: rgba(247, 244, 237, 0.06);
}

.welcome-future-note {
  max-width: 620px;
  margin-top: 28px;
  border-top: 1px solid rgba(247, 244, 237, 0.14);
  padding-top: 24px;
}

.welcome-future-note > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.welcome-future-note span {
  color: rgba(247, 244, 237, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.welcome-future-note strong {
  display: block;
  color: #f7f4ed;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.welcome-premium-form {
  padding: clamp(28px, 4vw, 42px);
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.welcome-premium-form .welcome-step h3 {
  color: var(--foreground);
  font-size: clamp(24px, 2.4vw, 32px);
}

.welcome-future-stack {
  display: grid;
  gap: 1px;
  margin-top: 32px;
  border: 1px solid var(--border);
  background: var(--border);
}

.welcome-future-stack div {
  display: grid;
  gap: 5px;
  padding: 18px;
  background: var(--background);
}

.welcome-future-stack strong {
  color: var(--foreground);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.welcome-future-stack span {
  color: var(--muted-text);
  font-size: 13px;
  line-height: 1.55;
}

.welcome-flow {
  display: grid;
  gap: 22px;
}

.welcome-step {
  display: grid;
  gap: 16px;
}

.welcome-step[hidden],
[data-welcome-prev][hidden],
[data-welcome-next][hidden],
[data-welcome-submit][hidden] {
  display: none !important;
}

.welcome-step h3 {
  margin-bottom: 0;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 800;
}

.welcome-flow-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.interest-chip {
  cursor: pointer;
}

.interest-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.interest-chip span {
  min-height: 54px;
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  padding: 12px;
  color: var(--foreground);
  background: var(--background);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.interest-chip input:checked + span {
  border-color: var(--foreground);
  color: #f7f4ed;
  background: var(--foreground);
}

.welcome-dashboard-hero {
  border-bottom: 1px solid var(--border);
}

.welcome-recommendation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}

.welcome-tools-panel {
  position: sticky;
  top: 124px;
  border: 1px solid var(--border);
  padding: 28px;
  background: var(--background);
}

.welcome-tools-panel h3 {
  margin-bottom: 8px;
}

.welcome-tools-panel p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.6;
}

.welcome-tool-list {
  display: grid;
  gap: 1px;
  margin-top: 22px;
  border: 1px solid var(--border);
  background: var(--border);
}

.welcome-tool-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  background: var(--background);
  color: var(--foreground);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.upcoming-events {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.upcoming-events span {
  color: var(--muted-text);
  font-size: 13px;
  line-height: 1.5;
}

.pilot-welcome-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 14%, rgba(198, 154, 57, 0.22), transparent 28%),
    radial-gradient(circle at 13% 78%, rgba(44, 93, 136, 0.16), transparent 30%),
    linear-gradient(115deg, rgba(255, 247, 232, 0.94), rgba(255, 255, 255, 0.92)),
    url("https://images.unsplash.com/photo-1541339907198-e08756dedf3f?w=1400&q=85") center/cover;
}

.pilot-welcome-layout {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.52fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}

.pilot-welcome-copy h1 {
  max-width: 820px;
  font-size: clamp(52px, 5.4vw, 86px);
}

.pilot-welcome-copy .lede {
  max-width: 700px;
  color: var(--foreground);
  font-size: 18px;
  line-height: 1.75;
}

.pilot-pass-card {
  border: 1px solid rgba(247, 244, 237, 0.18);
  padding: 30px;
  color: #f7f4ed;
  background:
    linear-gradient(145deg, rgba(23, 32, 52, 0.94), rgba(28, 68, 107, 0.88)),
    url("https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?w=900&q=80") center/cover;
  box-shadow: 0 28px 70px rgba(21, 27, 40, 0.22);
}

.pilot-pass-card .eyebrow,
.pilot-pass-card h2 {
  color: #f7f4ed;
}

.pilot-pass-card h2 {
  margin-bottom: 8px;
  font-size: clamp(34px, 4vw, 52px);
}

.pilot-pass-card p {
  color: rgba(247, 244, 237, 0.72);
}

.pilot-unlock-list {
  display: grid;
  gap: 1px;
  margin: 26px 0;
  border: 1px solid rgba(247, 244, 237, 0.14);
  background: rgba(247, 244, 237, 0.14);
}

.pilot-unlock-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px;
  color: rgba(247, 244, 237, 0.86);
  background: rgba(21, 27, 40, 0.52);
  font-size: 13px;
  font-weight: 800;
}

.pilot-unlock-list svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.light-link {
  color: #f7f4ed;
}

.pilot-value-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(198, 154, 57, 0.28);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.pilot-value-strip span {
  display: grid;
  gap: 5px;
  padding: 18px;
  border-left: 1px solid rgba(198, 154, 57, 0.24);
  color: var(--muted-text);
  font-size: 13px;
  line-height: 1.45;
}

.pilot-value-strip span:first-child {
  border-left: 0;
}

.pilot-value-strip strong {
  color: var(--foreground);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pilot-welcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pilot-step-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  min-height: 245px;
  padding: 26px;
  border: 1px solid var(--border);
  background: #ffffff;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.pilot-step-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(198, 154, 57, 0.38);
  border-radius: 999px;
}

.pilot-step-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(21, 27, 40, 0.1);
}

.pilot-step-card > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--primary);
  font-family: var(--font-serif);
  font-size: 24px;
}

.pilot-step-card.tone-2 > span {
  background: #9d2f2f;
}

.pilot-step-card.tone-3 > span {
  color: var(--foreground);
  background: var(--accent);
}

.pilot-step-card small {
  color: var(--muted-text);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pilot-step-card h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 900;
}

.pilot-step-card p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.6;
}

.feedback-section {
  background: #ffffff;
}

.feedback-section.compact-feedback {
  padding: 28px 0 0;
}

.feedback-inline {
  width: 100%;
}

.feedback-inline .feedback-card {
  width: 100%;
  padding: 22px;
}

.feedback-inline .form-row {
  grid-template-columns: 1fr;
}

.feedback-inline textarea,
.feedback-inline input,
.feedback-inline select {
  width: 100%;
  min-width: 0;
}

.feedback-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  gap: 28px;
  align-items: stretch;
  border: 1px solid var(--border);
  padding: 30px;
  background:
    radial-gradient(circle at 8% 10%, rgba(198, 154, 57, 0.13), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #fbfaf7 100%);
}

.feedback-copy-card {
  min-height: 318px;
  border: 1px solid rgba(198, 154, 57, 0.22);
  background: rgba(255, 255, 255, 0.72);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feedback-layout h2 {
  font-size: clamp(30px, 3vw, 44px);
  max-width: 720px;
}

.feedback-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.feedback-chip-row span {
  border: 1px solid rgba(198, 154, 57, 0.34);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--foreground);
  background: #fff7e8;
  font-size: 12px;
  font-weight: 800;
}

.feedback-card {
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(21, 27, 40, 0.05);
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feedback-card .form-row {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.floating-feedback-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 260;
}

.floating-feedback-widget summary {
  display: inline-flex;
  min-height: 46px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 244, 237, 0.2);
  padding: 0 20px;
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 20px 48px rgba(21, 27, 40, 0.28), 0 0 0 1px rgba(198, 154, 57, 0.18);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.floating-feedback-widget summary:hover {
  transform: translateY(-2px);
  background: #0f1728;
  box-shadow: 0 28px 64px rgba(21, 27, 40, 0.34), 0 0 0 1px rgba(198, 154, 57, 0.32);
}

.floating-feedback-widget summary::-webkit-details-marker {
  display: none;
}

.floating-feedback-card {
  position: absolute;
  right: 0;
  bottom: 58px;
  display: grid;
  width: min(420px, calc(100vw - 32px));
  gap: 14px;
  border: 1px solid var(--border);
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 34px 78px rgba(21, 27, 40, 0.26), 0 2px 12px rgba(21, 27, 40, 0.08);
}

.floating-feedback-card label {
  display: grid;
  gap: 8px;
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-feedback-card textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--border);
  padding: 12px;
  color: var(--foreground);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.download-section {
  margin-top: clamp(56px, 7vw, 88px);
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.download-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 190px;
  flex-direction: column;
  border: 1px solid var(--border);
  padding: 24px;
  background: var(--background);
  box-shadow: 0 12px 30px rgba(21, 27, 40, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.download-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(198, 154, 57, 0.24);
  border-radius: 999px;
}

.download-card:hover {
  border-color: rgba(198, 154, 57, 0.42);
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(21, 27, 40, 0.09);
}

.download-card h3 {
  margin-bottom: 10px;
}

.download-card p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.6;
}

.download-card .text-link {
  margin-top: auto;
}

.campus-hub-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.campus-hub-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--border);
  background: var(--border);
}

.campus-hub-stats div {
  min-height: 112px;
  padding: 18px;
  background: var(--background);
}

.campus-hub-stats strong,
.campus-hub-stats span {
  display: block;
}

.campus-hub-stats strong {
  margin-bottom: 8px;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.campus-hub-stats span {
  color: var(--muted-text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.campus-tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.campus-tool-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  border: 1px solid var(--border);
  padding: 26px;
  background: var(--background);
  box-shadow: 0 12px 30px rgba(21, 27, 40, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.campus-tool-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -46px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(198, 154, 57, 0.24);
  border-radius: 999px;
}

.campus-tool-card:hover {
  border-color: rgba(198, 154, 57, 0.42);
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(21, 27, 40, 0.09);
}

.campus-tool-card h3 {
  margin-bottom: 10px;
}

.campus-tool-card p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.65;
}

.campus-tool-card .text-link {
  margin-top: auto;
}

.stage-result {
  min-height: 56px;
  margin: -14px 0 28px;
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.6;
}

.stage-result p {
  margin-bottom: 8px;
}

.campus-finder {
  display: flex;
  gap: 12px;
}

.campus-finder input,
.form-card input,
.form-card textarea,
.form-card select,
.directory-toolbar input,
.directory-toolbar select,
.ask-panel textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 13px 15px;
  color: var(--foreground);
  background: var(--card);
  outline: none;
  font-size: 14px;
}

.campus-finder input:focus,
.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus,
.directory-toolbar input:focus,
.directory-toolbar select:focus,
.ask-panel textarea:focus {
  border-color: rgba(21, 27, 40, 0.45);
}

.simple-hero {
  border-bottom: 1px solid var(--border);
  padding: clamp(64px, 7vw, 96px) 0;
}

.simple-hero .container {
  max-width: 1400px;
}

.simple-hero .narrow {
  max-width: 720px;
}

.offers-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(198, 154, 57, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #fbf8f1 100%);
}

.offers-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
}

.offers-summary-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(198, 154, 57, 0.34);
  padding: clamp(26px, 4vw, 42px);
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(21, 27, 40, 0.1);
}

.offers-summary-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(198, 154, 57, 0.24);
  border-radius: 999px;
}

.offers-summary-card h2 {
  margin: 6px 0 0;
  color: var(--red);
  font-family: var(--font-sans);
  font-size: clamp(56px, 8vw, 92px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.offer-example-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.offer-example-row span {
  border: 1px solid rgba(198, 154, 57, 0.34);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--foreground);
  background: #fff7e8;
  font-size: 12px;
  font-weight: 900;
}

.offer-summary-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--border);
}

.offer-summary-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-summary-list span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-category-stack {
  display: grid;
  gap: 26px;
}

.offer-category-panel {
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(21, 27, 40, 0.06);
}

.offer-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(12, 35, 75, 0.04), rgba(198, 154, 57, 0.1));
}

.offer-category-head h3 {
  margin: 0;
}

.offer-category-head > span {
  flex: 0 0 auto;
  border: 1px solid rgba(198, 154, 57, 0.34);
  border-radius: 999px;
  padding: 8px 12px;
  background: #ffffff;
  color: var(--red);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-category-panel .offer-grid {
  padding: 22px;
}

.category-offer-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 14px 14px 0;
  border: 1px solid rgba(198, 154, 57, 0.3);
  padding: 14px 16px;
  background: #fff7e8;
}

.category-offer-strip strong {
  color: var(--foreground);
  font-size: 14px;
}

.category-offer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.category-offer-links a {
  border: 1px solid rgba(198, 154, 57, 0.34);
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--red);
  background: #ffffff;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.vendor-benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vendor-benefit-grid .benefit {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid var(--border);
  padding: 28px;
  background: var(--background);
  box-shadow: 0 12px 30px rgba(21, 27, 40, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.offer-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  padding: 28px;
  background: var(--background);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.offer-card::after,
.vendor-benefit-grid .benefit::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 134px;
  height: 134px;
  border: 1px solid rgba(198, 154, 57, 0.24);
  border-radius: 999px;
  z-index: 0;
  pointer-events: none;
}

.offer-card > *,
.vendor-benefit-grid .benefit > * {
  position: relative;
  z-index: 1;
}

.offer-card:hover,
.vendor-benefit-grid .benefit:hover {
  border-color: rgba(198, 154, 57, 0.42);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.locked-offer-preview-grid .offer-card,
.locked-offer-card {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
}

.offer-card h3 {
  margin-bottom: 12px;
}

.offer-card-meta,
.offer-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.parent-perks-section {
  background:
    radial-gradient(circle at 8% 15%, rgba(198, 154, 57, 0.14), transparent 26%),
    linear-gradient(180deg, #fbfaf7 0%, #f7f4ed 100%);
}

.parent-perks-head {
  align-items: end;
}

.parent-perks-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.parent-perk-card {
  position: relative;
  min-height: 235px;
  display: grid;
  align-content: start;
  gap: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 24px;
  color: var(--foreground);
  background:
    radial-gradient(circle at 100% 100%, rgba(198, 154, 57, 0.13), transparent 34%),
    #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.parent-perk-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--gold);
  opacity: 0.9;
}

.parent-perk-card:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 154, 57, 0.65);
  box-shadow: var(--shadow-card-hover);
}

.parent-perk-card span {
  width: fit-content;
  border: 1px solid rgba(198, 154, 57, 0.45);
  padding: 5px 8px;
  color: var(--muted-text);
  background: rgba(255, 247, 237, 0.82);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.parent-perk-card h3 {
  margin: 0;
  font-size: 26px;
}

.parent-perk-card p {
  margin: 0;
  color: var(--muted-text);
  line-height: 1.55;
}

.parent-perk-card small {
  align-self: end;
  margin-top: auto;
  border-top: 1px solid rgba(21, 27, 40, 0.22);
  padding-top: 10px;
  color: var(--foreground);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-perk-card {
  grid-column: span 2;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 16%, rgba(198, 154, 57, 0.24), transparent 28%),
    linear-gradient(135deg, #151b28 0%, #0c234b 100%);
}

.featured-perk-card h3,
.featured-perk-card small {
  color: #ffffff;
}

.featured-perk-card p {
  color: rgba(255, 255, 255, 0.78);
}

.featured-perk-card span {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

.featured-perk-card small {
  border-color: rgba(255, 255, 255, 0.26);
}

.parent-perks-offer-head {
  margin-top: 12px;
}

.offer-status {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(198, 154, 57, 0.34);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--ink);
  background: rgba(198, 154, 57, 0.12);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.offer-status-active {
  border-color: rgba(4, 120, 87, 0.3);
  background: #ecfdf5;
  color: #047857;
}

.offer-status-coming-soon {
  border-color: rgba(75, 85, 99, 0.25);
  background: #f3f4f6;
  color: #4b5563;
}

.offer-card p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.65;
}

.offer-card .offer-vendor {
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 800;
}

.offer-card .offer-redemption {
  margin-top: 12px;
  font-size: 13px;
}

.offer-card .text-link {
  margin-top: auto;
}

.offer-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 980px;
}

.offer-detail-card {
  border: 1px solid var(--border);
  padding: 28px;
  background: var(--background);
  box-shadow: 0 18px 44px rgba(21, 27, 40, 0.06);
}

.offer-feedback-card {
  display: grid;
  gap: 16px;
}

.offer-feedback-card .quick-feedback-actions {
  margin: 0;
}

.offer-detail-list {
  display: grid;
  gap: 0;
  margin: 24px 0;
  border: 1px solid var(--border);
}

.offer-detail-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

.offer-detail-list div:last-child {
  border-bottom: 0;
}

.offer-detail-list dt {
  color: var(--muted-text);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-detail-list dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.65;
}

.offer-disclaimer,
.pilot-note {
  border-left: 4px solid var(--gold);
  padding: 12px 14px;
  color: var(--muted-text);
  background: rgba(198, 154, 57, 0.1);
  font-size: 14px;
  line-height: 1.6;
}

.pilot-note {
  margin: 16px 0;
}

.prompt-card-list {
  display: grid;
  gap: 14px;
}

.prompt-card-list a {
  border: 1px solid var(--border);
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.15;
  box-shadow: 0 10px 24px rgba(21, 27, 40, 0.035);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.prompt-card-list a:hover {
  border-color: rgba(198, 154, 57, 0.42);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(21, 27, 40, 0.08);
}

.prompt-card-list svg {
  flex: 0 0 auto;
}

.bookstore-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 88% 8%, rgba(198, 154, 57, 0.16), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, var(--background) 100%);
}

.bookstore-hero::after {
  content: "";
  position: absolute;
  left: -130px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(198, 154, 57, 0.22);
  border-radius: 999px;
}

.bookstore-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(44px, 6vw, 90px);
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
}

.bookstore-hero h1 {
  max-width: 780px;
  font-size: clamp(54px, 6vw, 88px);
}

.bookstore-hero .lede {
  max-width: 660px;
  font-size: 17px;
  line-height: 1.75;
}

.bookstore-feature {
  position: relative;
}

.bookstore-feature img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
  border: 1px solid var(--border);
  filter: var(--image-filter);
  box-shadow: 0 30px 70px rgba(21, 27, 40, 0.14);
}

.bookstore-feature span {
  position: absolute;
  left: -24px;
  bottom: 32px;
  border: 1px solid rgba(198, 154, 57, 0.38);
  padding: 15px 18px;
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(21, 27, 40, 0.12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bookstore-category-grid,
.bookstore-product-grid {
  display: grid;
  gap: 18px;
}

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

.bookstore-category-card,
.bookstore-product-card,
.bookstore-note {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(21, 27, 40, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.bookstore-category-card:hover,
.bookstore-product-card:hover {
  border-color: rgba(198, 154, 57, 0.42);
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(21, 27, 40, 0.09);
}

.bookstore-category-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: var(--image-filter);
}

.bookstore-category-card div {
  padding: 24px;
}

.bookstore-category-card h3,
.bookstore-product-card h3 {
  margin-bottom: 10px;
}

.bookstore-category-card p,
.bookstore-product-card p,
.bookstore-note p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.65;
}

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

.bookstore-product-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.bookstore-product-card::after,
.bookstore-note::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -50px;
  width: 136px;
  height: 136px;
  border: 1px solid rgba(198, 154, 57, 0.24);
  border-radius: 999px;
}

.bookstore-product-card > span {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bookstore-product-card .button {
  position: relative;
  z-index: 1;
  width: max-content;
  margin-top: 18px;
}

.bookstore-note {
  max-width: 960px;
  padding: clamp(32px, 5vw, 56px);
}

.bookstore-note h2 {
  margin-bottom: 16px;
}

.panel-grid {
  display: grid;
  gap: 18px;
}

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

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

.compact-head {
  margin-bottom: 28px;
}

.mini-panel {
  position: relative;
  overflow: hidden;
  display: block;
  min-width: 0;
  border: 1px solid var(--border);
  padding: 28px;
  background: var(--background);
  box-shadow: 0 12px 30px rgba(21, 27, 40, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mini-panel::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -44px;
  width: 124px;
  height: 124px;
  border: 1px solid rgba(198, 154, 57, 0.24);
  border-radius: 999px;
}

.mini-panel:hover {
  border-color: rgba(198, 154, 57, 0.42);
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(21, 27, 40, 0.09);
}

.mini-panel h3 {
  margin-bottom: 10px;
}

.mini-panel p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.65;
}

.mini-panel .text-link,
.mini-panel .button {
  margin-top: 18px;
}

.tier-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: transparent;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.tier,
.article-card,
.form-card,
.answer-card {
  background: var(--background);
  padding: 32px;
}

.tier {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tier-section {
  margin-top: clamp(56px, 7vw, 88px);
}

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

.tier-note {
  margin: 18px 0 0;
  color: var(--muted-text);
  font-size: 13px;
  line-height: 1.6;
}

.tier-price {
  margin: 10px 0 0;
  color: var(--primary);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1;
}

.tier ul,
.answer-card ul {
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.tier li,
.answer-card li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 16px;
  color: var(--foreground);
  font-size: 14px;
  line-height: 1.55;
}

.tier li::before,
.answer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.directory-toolbar {
  gap: 12px;
  padding: 16px;
  margin-bottom: 36px;
  background: transparent;
  border-color: var(--border);
}

.directory-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.directory-tabs button {
  border: 1px solid var(--border);
  padding: 12px 18px;
  color: var(--muted-text);
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.directory-tabs button.active {
  border-color: var(--foreground);
  color: var(--background);
  background: var(--foreground);
}

.directory-tabs button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.import-warning {
  margin-bottom: 22px;
  border: 1px solid rgba(198, 154, 57, 0.45);
  padding: 20px 22px;
  background: rgba(198, 154, 57, 0.08);
}

.import-warning h3 {
  margin: 0 0 6px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
}

.import-warning p {
  margin: 0;
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.65;
}

.import-warning code {
  color: var(--foreground);
  font-size: 13px;
}

.directory-toolbar input,
.directory-toolbar select {
  flex: 1 1 220px;
}

.directory-page [data-directory-panel="campuses"] {
  display: grid;
  gap: 18px;
}

.directory-page [data-directory-panel="campuses"][hidden] {
  display: none;
}

.directory-page [data-directory-panel="campuses"] .directory-toolbar {
  margin-bottom: 0;
}

.directory-community-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 24px;
  align-items: end;
  margin-top: 2px;
}

.directory-community-intro h2 {
  margin: 4px 0 0;
  color: var(--foreground);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.directory-community-intro p {
  margin: 0;
  color: var(--muted-text);
  font-size: 15px;
  line-height: 1.65;
}

.directory-count {
  margin: -2px 0 0;
  color: var(--muted-text);
  font-size: 12px;
}

.directory-helper {
  margin: -18px 0 28px;
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.65;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.directory-community-request {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(198, 154, 57, 0.28);
  padding: 18px 20px;
  background: rgba(250, 247, 240, 0.72);
}

.directory-community-request strong,
.directory-community-request span {
  display: block;
}

.directory-community-request strong {
  color: var(--foreground);
  font-size: 15px;
}

.directory-community-request span {
  margin-top: 4px;
  color: var(--muted-text);
  font-size: 13px;
  line-height: 1.5;
}

.directory-community-request a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.directory-app {
  margin-top: 8px;
  border: 1px solid #e5e7eb;
  padding: 18px;
  background: #f3f4f6;
  box-shadow: var(--shadow-panel), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.directory-app-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  border-radius: 12px;
  padding: 24px;
  color: #111827;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.directory-app-header h2 {
  margin: 4px 0 6px;
  color: #111827;
  font-family: var(--font-sans);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: 0;
}

.directory-app-header p {
  max-width: 700px;
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

.directory-location {
  margin-top: 8px !important;
  color: #6b7280 !important;
  font-size: 12px !important;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.community-context {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 14px;
}

.community-context div {
  flex: 1 1 190px;
  min-width: 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 12px;
  background: #f9fafb;
}

.community-context span {
  display: block;
  color: #6b7280;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.community-context strong {
  display: block;
  margin-top: 3px;
  color: #111827;
  font-size: 14px;
}

.directory-disclaimer {
  margin: 0 0 14px;
  border: 1px solid rgba(198, 154, 57, 0.28);
  padding: 12px 14px;
  color: #4b5563;
  background: rgba(255, 247, 237, 0.72);
  font-size: 12px;
  line-height: 1.6;
}

.directory-kicker {
  color: #8b0000 !important;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.directory-stat {
  min-width: 112px;
  align-self: stretch;
  display: grid;
  place-items: center;
  border-radius: 10px;
  padding: 14px;
  color: #8b0000;
  background: #fff7ed;
  text-align: center;
}

.directory-stat strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.directory-stat span {
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.directory-side-actions {
  min-width: 190px;
  display: grid;
  gap: 8px;
}

.directory-action,
.favorites-filter {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 10px 12px;
  color: #111827;
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.directory-action:hover,
.favorites-filter:hover,
.favorites-filter.active {
  transform: translateY(-1px);
  border-color: #8b0000;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.directory-action.primary {
  border-color: #8b0000;
  color: #ffffff;
  background: #8b0000;
}

.directory-action.offers-action {
  border-color: rgba(198, 154, 57, 0.55);
  color: var(--foreground);
  background: #fff7ed;
}

.favorites-filter {
  flex: 0 0 auto;
}

.favorites-filter span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 4px;
  border-radius: 999px;
  color: #8b0000;
  background: #fff7ed;
}

.show-all-categories {
  border-color: rgba(12, 35, 75, 0.22);
  color: #0c234b;
  background: #f8fafc;
}

.quicklinks-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.official-campus-resources {
  margin: 22px 0 20px;
  padding: 20px;
  border: 1px solid rgba(198, 154, 57, 0.32);
  border-radius: 10px;
  background: #fffdf8;
  box-shadow: 0 12px 30px rgba(21, 27, 40, 0.055);
}

.official-campus-resources-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: 18px;
  align-items: end;
  margin-bottom: 16px;
}

.official-campus-resources-head h2 {
  margin: 4px 0 8px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.official-campus-resources-head p {
  max-width: 820px;
  margin: 0;
  color: var(--muted-text);
  line-height: 1.6;
}

.official-campus-resource-filter {
  display: grid;
  gap: 7px;
  color: var(--foreground);
  font-size: 13px;
  font-weight: 700;
}

.official-campus-resource-filter select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  color: var(--foreground);
  padding: 9px 12px;
}

.official-campus-resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.official-campus-resource-card {
  min-height: 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(21, 27, 40, 0.1);
  border-radius: 8px;
  background: #ffffff;
}

.official-campus-resource-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(198, 154, 57, 0.32);
  border-radius: 8px;
  background: #fff8e6;
  font-size: 18px;
}

.official-campus-resource-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: start;
}

.official-campus-resource-card h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.22;
}

.official-campus-resource-group {
  margin: 0 0 3px !important;
  color: #6b7280 !important;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.official-link-indicator {
  color: #8b1e1e;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.official-campus-resource-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.official-campus-resource-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border: 1px solid rgba(198, 154, 57, 0.38);
  border-radius: 999px;
  color: #725414;
  background: #fff8e6;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.official-campus-resource-category {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.official-campus-resource-card p:not(.official-campus-resource-category) {
  margin: 0;
  color: var(--muted-text);
  line-height: 1.55;
}

.official-campus-resource-card .text-link {
  font-size: 12px;
}

.official-campus-resource-footer {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.community-business-section {
  margin: 24px 0 12px;
}

.community-business-head {
  border-top: 1px solid #e5e7eb;
  padding-top: 22px;
}

.community-business-head h2 {
  margin: 4px 0 8px;
  font-size: clamp(24px, 3vw, 34px);
}

.community-business-head p {
  max-width: 760px;
  margin: 0;
  color: var(--muted-text);
  line-height: 1.6;
}

.official-resource-loading {
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px dashed var(--border);
  border-radius: 8px;
  color: var(--muted-text);
  background: #ffffff;
}

.category-quick-card {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid #e5e7eb;
  border-left: 5px solid var(--category-color, #8b0000);
  border-radius: 10px;
  padding: 12px;
  color: #111827;
  background: #ffffff;
  text-align: left;
  box-shadow: var(--shadow-card);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.category-quick-card.active,
.category-quick-card:hover {
  transform: translateY(-2px);
  border-color: var(--category-color, #8b0000);
  box-shadow: var(--shadow-card-hover);
}

.category-quick-icon {
  font-size: 24px;
}

.category-quick-name {
  min-width: 0;
  color: #111827;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.category-quick-count {
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--category-color, #8b0000);
  background: #f9fafb;
  font-size: 12px;
  font-weight: 800;
}

.dir-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) minmax(170px, 1fr) minmax(170px, 1fr) minmax(220px, 1.15fr) auto;
  align-items: end;
  gap: 12px;
  margin-bottom: 14px;
}

.dir-controls input,
.dir-controls select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 13px 14px;
  color: #111827;
  background: #ffffff;
}

.school-filter-control {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.school-filter-control span {
  color: #4b5563;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.school-filter-control select {
  width: 100%;
  flex: none;
}

.dir-controls .favorites-filter {
  min-height: 48px;
  align-self: end;
  white-space: nowrap;
}

.dir-controls .show-all-categories {
  justify-self: start;
}

.dir-controls [data-collapse-all] {
  grid-column: 5;
  justify-self: end;
}

.listing-directory {
  display: grid;
  gap: 18px;
}

.directory-category-group {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: transparent;
  box-shadow: var(--shadow-card);
}

.cat-header-row {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 0;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  color: #ffffff;
  background: var(--category-color, #8b0000);
  text-align: left;
  transition: filter 160ms ease;
}

.cat-header-row:hover {
  filter: brightness(1.05);
}

.cat-icon {
  width: 66px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  font-size: 30px;
}

.cat-header-row h3 {
  margin: 0;
  padding: 14px 16px 2px;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.cat-header-row p {
  margin: 0;
  padding: 0 16px 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.cat-title {
  flex: 1;
}

.cat-title h3,
.cat-title p,
.cat-header-row,
.cat-header-row * {
  color: #ffffff;
}

.cat-header-action {
  align-self: center;
  margin-right: 16px;
  border-radius: 8px;
  padding: 7px 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 800;
}

.directory-category-group.collapsed .biz-grid {
  display: none;
}

.directory-category-group.collapsed .cat-header-row {
  border-radius: 12px;
}

.directory-category-group.collapsed .cat-header-action {
  background: rgba(255, 255, 255, 0.24);
}

.subcategory-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 10px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}

.subcategory-row button {
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 6px 9px;
  color: #4b5563;
  background: #f9fafb;
  font-size: 11px;
  font-weight: 800;
}

.subcategory-row button:hover {
  border-color: var(--category-color, #8b0000);
  color: var(--category-color, #8b0000);
  background: #fff;
}

.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  background: #ffffff;
}

.biz-card,
.empty-directory {
  min-width: 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.biz-card:hover,
.biz-card.is-favorite {
  transform: translateY(-2px);
  border-color: rgba(139, 0, 0, 0.28);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
}

.biz-card-head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  gap: 8px 10px;
  min-height: 22px;
  margin-bottom: 10px;
}

.biz-campus {
  margin: 0;
  color: #6b7280;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.verified-pill {
  border-radius: 999px;
  padding: 4px 7px;
  color: #047857;
  background: #ecfdf5;
  font-size: 11px;
  font-weight: 800;
}

.favorite-button {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #d1d5db;
  border-radius: 9px;
  color: #94a3b8;
  background: #ffffff;
  font-size: 18px;
  line-height: 1;
  transition: transform 150ms ease, color 150ms ease, border-color 150ms ease, background 150ms ease;
}

.favorite-button:hover,
.favorite-button.active {
  transform: scale(1.06);
  border-color: #8b0000;
  color: #8b0000;
  background: #fff7ed;
}

.biz-card h4 {
  margin: 0;
  color: #111827;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.biz-card p,
.biz-detail-list a {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.55;
}

.biz-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 6px;
}

.biz-status span {
  border-radius: 999px;
  padding: 4px 8px;
  color: #ffffff;
  background: #17345a;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.listing-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px;
}

.listing-type {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(23, 52, 90, 0.18);
  border-radius: 999px;
  padding: 4px 8px;
  color: #17345a;
  background: #eff6ff;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.listing-type-official {
  border-color: rgba(4, 120, 87, 0.22);
  color: #047857;
  background: #ecfdf5;
}

.listing-type-parent {
  border-color: rgba(198, 154, 57, 0.35);
  color: #7c5c12;
  background: #fffbeb;
}

.listing-type-vendor {
  border-color: rgba(23, 52, 90, 0.24);
  color: #17345a;
  background: #eff6ff;
}

.listing-type-pilot-example,
.listing-type-coming-soon,
.listing-type-needs-verification {
  border-color: rgba(139, 0, 0, 0.22);
  color: #8b0000;
  background: #fff7ed;
}

.listing-qa-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}

.listing-qa-flags span {
  border: 1px solid #fed7aa;
  border-radius: 999px;
  padding: 4px 8px;
  color: #9a3412;
  background: #fff7ed;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
}

.listing-qa-flags.compact {
  margin: 8px 0;
}

.quick-feedback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.quick-feedback-actions button {
  border: 1px solid #d8d2c4;
  border-radius: 999px;
  padding: 6px 9px;
  color: #4b5563;
  background: #ffffff;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}

.quick-feedback-actions button:hover {
  border-color: #8b0000;
  color: #8b0000;
  background: #fff7ed;
}

.quick-feedback-actions button:disabled {
  border-color: rgba(4, 120, 87, 0.2);
  color: #047857;
  background: #ecfdf5;
  cursor: default;
}

.biz-detail-list {
  display: grid;
  gap: 7px;
  margin: 10px 0 12px;
}

.biz-detail-list p,
.biz-detail-list a {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 7px;
  align-items: start;
  min-width: 0;
  overflow-wrap: anywhere;
}

.biz-detail-list span {
  color: #8b0000;
}

.biz-detail-list a {
  color: #8b0000;
}

.biz-description {
  color: #8b93a1 !important;
  font-size: 12px !important;
  font-style: italic;
  overflow-wrap: anywhere;
}

.directory-build-state {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.directory-build-state .button {
  margin-top: 2px;
}

.biz-deal {
  margin-top: 10px !important;
  border-left: 3px solid #8b0000;
  padding: 8px 10px;
  color: #7c2d12 !important;
  background: #fff7ed;
  font-weight: 700;
}

.biz-meta,
.biz-tags,
.biz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.biz-meta span,
.biz-tags span {
  border-radius: 999px;
  padding: 5px 8px;
  color: #4b5563;
  background: #f3f4f6;
  font-size: 11px;
  font-weight: 700;
}

.biz-action {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 8px 10px;
  color: #374151;
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.biz-action:hover {
  transform: translateY(-1px);
  border-color: #8b0000;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
}

.biz-action.primary {
  border-color: #8b0000;
  color: #ffffff;
  background: #8b0000;
}

.listing-offer-button {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  border: 1px solid rgba(12, 35, 75, 0.18);
  border-radius: 999px;
  padding: 8px 11px;
  color: #0c234b;
  background: #ffffff;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease, transform 150ms ease;
}

.listing-offer-button:hover {
  transform: translateY(-1px);
  border-color: rgba(139, 0, 0, 0.34);
  color: #8b0000;
  background: #fff7ed;
}

.directory-page-hero {
  padding: clamp(52px, 7vw, 92px) 0 clamp(30px, 4vw, 54px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.92)),
    url("https://images.unsplash.com/photo-1562774053-701939374585?w=1600&q=85") center/cover;
}

.directory-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(26px, 5vw, 56px);
  align-items: end;
}

.directory-hero-inner h1 {
  max-width: 820px;
  margin: 8px 0 14px;
  color: #0f172a;
  font-family: var(--font-sans);
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
}

.directory-hero-inner p {
  max-width: 720px;
  margin: 0;
  color: #475569;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.directory-hero-context {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(16px);
}

.directory-hero-context div,
.community-context div {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 13px 14px;
  background: #ffffff;
}

.directory-hero-context span,
.community-context span {
  display: block;
  color: #64748b;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.directory-hero-context strong,
.community-context strong {
  display: block;
  margin-top: 4px;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.25;
}

.directory-page-section {
  background: #f8fafc;
}

.directory-app {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.community-context {
  position: sticky;
  top: 78px;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.official-campus-resources,
.community-business-section,
.directory-community-modules {
  margin: 34px 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.official-campus-resources-head,
.community-business-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  margin-bottom: 18px;
}

.official-campus-resources-head h2,
.community-business-head h2 {
  margin: 4px 0 8px;
  color: #0f172a;
  font-family: var(--font-sans);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.05;
}

.official-campus-resources-head p,
.community-business-head p {
  max-width: 760px;
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.official-campus-resource-filter select,
.dir-controls input,
.dir-controls select {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.official-campus-resource-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.official-campus-resource-card {
  min-height: 132px;
  color: #0f172a;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 15px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.07);
  transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.official-campus-resource-card:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 30, 30, 0.18);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.official-campus-resource-icon {
  border: 0;
  border-radius: 13px;
  color: #8b1e1e;
  background: #fff7ed;
}

.official-campus-resource-badges {
  display: none;
}

.quicklinks-grid {
  grid-template-columns: repeat(auto-fit, minmax(116px, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.category-quick-card {
  min-height: 56px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-left: 0;
  border-radius: 999px;
  padding: 10px 12px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.category-quick-icon {
  font-size: 18px;
}

.category-quick-name {
  font-size: 13px;
}

.dir-controls {
  position: sticky;
  top: 174px;
  z-index: 11;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.directory-count {
  margin: 16px 0 22px;
  color: #64748b;
  font-size: 13px;
}

.listing-directory {
  gap: 24px;
}

.directory-category-group {
  overflow: visible;
  border: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
}

.cat-header-row {
  border-radius: 18px;
  background: #0f172a;
}

.directory-category-group.collapsed .cat-header-row {
  border-radius: 18px;
}

.biz-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 16px 0 0;
  background: transparent;
}

.biz-card {
  display: grid;
  gap: 13px;
  border: 0;
  border-radius: 20px;
  padding: 14px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.biz-card:hover,
.biz-card.is-favorite {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.biz-card-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  color: #8b1e1e;
  background: linear-gradient(135deg, #fff7ed, #eef2ff);
  font-size: 30px;
  font-weight: 850;
}

.biz-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.biz-card-head {
  grid-template-columns: minmax(0, 1fr) auto auto;
  margin-bottom: 0;
}

.biz-card-actions {
  display: inline-flex;
  gap: 7px;
}

.share-button {
  font-size: 14px;
}

.share-button:disabled {
  opacity: 0.62;
  cursor: default;
}

.biz-rating-row {
  display: flex;
  gap: 6px;
  color: #64748b;
  font-size: 12px;
  font-weight: 750;
}

.biz-detail-list {
  gap: 8px;
  margin: 0;
}

.biz-detail-list p,
.biz-detail-list a {
  grid-template-columns: 20px 1fr;
  color: #475569;
  font-size: 13px;
}

.biz-description {
  color: #475569 !important;
  font-size: 13px !important;
  font-style: normal;
}

.directory-module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.directory-module-card {
  display: grid;
  gap: 10px;
  min-height: 210px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 20px;
  color: #0f172a;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.directory-module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.directory-module-card > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #8b1e1e;
  background: #fff7ed;
}

.directory-module-card svg {
  width: 21px;
  height: 21px;
}

.directory-module-card h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 850;
}

.directory-module-card p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.6;
}

.directory-module-card strong {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8b1e1e;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.snapshot-note {
  margin-top: 28px;
  color: var(--muted-text);
  font-size: 13px;
}

.directory-access-gate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 12px 0;
  border: 1px solid rgba(198, 154, 57, 0.42);
  border-radius: 12px;
  padding: 22px;
  color: #111827;
  background: #fffaf0;
}

.directory-access-gate.top-gate {
  margin-bottom: 14px;
}

.directory-access-gate h3 {
  margin: 0 0 8px;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 800;
}

.directory-access-gate p {
  max-width: 760px;
  margin: 0 0 12px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

.directory-access-gate ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.directory-access-gate li {
  border-radius: 999px;
  padding: 6px 9px;
  color: #8b0000;
  background: #ffffff;
  font-size: 11px;
  font-weight: 800;
}

.access-required-section {
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

.feature-access-gate {
  box-shadow: var(--shadow-card);
}

.feature-access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.locked-preview .directory-category-group {
  border: 1px solid rgba(198, 154, 57, 0.18);
}

.locked-listing-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
}

.locked-listing-card .biz-description {
  max-height: 3.2em;
  overflow: hidden;
}

.lock-favorite {
  text-decoration: none;
}

.preview-detail-list a {
  color: #8b0000;
  font-weight: 900;
}

.locked-offer {
  color: #8b0000 !important;
  font-weight: 800;
}

.empty-directory {
  grid-column: 1 / -1;
}

.directory-modal[hidden] {
  display: none;
}

.directory-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 24, 39, 0.55);
}

.directory-modal-card {
  position: relative;
  width: min(760px, 100%);
  max-height: min(760px, 92vh);
  overflow: auto;
  border-radius: 14px;
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  color: #111827;
  background: #ffffff;
  font-size: 22px;
  line-height: 1;
}

.directory-modal-card h3 {
  margin: 4px 0 8px;
  font-family: var(--font-sans);
  font-size: 28px;
}

.modal-intro {
  max-width: 620px;
  margin: 0 0 18px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

.directory-submit-form {
  display: grid;
  gap: 14px;
}

.directory-submit-form label {
  display: grid;
  gap: 7px;
  color: #374151;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.directory-submit-form input,
.directory-submit-form select,
.directory-submit-form textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 12px 13px;
  color: #111827;
  background: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.submit-role-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.submit-role-tabs button {
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 9px 12px;
  color: #374151;
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.submit-role-tabs button.active {
  border-color: #8b0000;
  color: #ffffff;
  background: #8b0000;
}

.cause-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
  min-height: 520px;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.cause-hero-image {
  min-height: 520px;
  overflow: hidden;
}

.cause-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--image-filter);
}

.cause-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 86px);
}

.cause-hero-copy h1 {
  max-width: 480px;
  margin: 0 0 22px;
}

.cause-hero-copy p:not(.eyebrow) {
  max-width: 440px;
  color: var(--muted-text);
  font-size: 16px;
  line-height: 1.7;
}

.cause-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.cause-stats div {
  min-height: 104px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.cause-stats div:last-child {
  border-right: 0;
}

.cause-stats strong {
  color: var(--foreground);
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1;
}

.cause-stats span {
  color: var(--muted-text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cause-section {
  background: #ffffff;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}

.campaign-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  background: #ffffff;
  cursor: grab;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.campaign-card:hover,
.campaign-card.dragging {
  z-index: 2;
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(21, 27, 40, 0.14);
}

.campaign-card.dragging {
  cursor: grabbing;
  opacity: 0.72;
}

.campaign-grip {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px 8px;
  color: var(--muted-text);
  background: #ffffff;
  font-weight: 800;
  letter-spacing: -0.18em;
}

.campaign-heart {
  display: block;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 18px;
}

.campaign-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.campaign-card p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.7;
}

.fund-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  color: var(--foreground);
  font-size: 13px;
}

.fund-row span {
  color: var(--muted-text);
}

.fund-bar {
  height: 4px;
  margin-top: 8px;
  background: #d6d0c5;
}

.fund-bar span {
  display: block;
  height: 100%;
  background: var(--accent);
}

.campaign-backers {
  margin: 10px 0 22px;
  font-size: 12px !important;
}

.stripe-status {
  display: inline-flex;
  margin: 0 0 14px !important;
  border: 1px solid rgba(139, 0, 0, 0.18);
  border-radius: 999px;
  padding: 5px 9px;
  color: #8b0000 !important;
  background: #fff7ed;
  font-family: var(--font-sans);
  font-size: 10px !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.stripe-status.is-live {
  border-color: rgba(4, 120, 87, 0.24);
  color: #047857 !important;
  background: #ecfdf5;
}

.stripe-readiness-card {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  border: 1px solid var(--border);
  padding: 18px;
  background: #ffffff;
}

.stripe-readiness-card strong {
  color: var(--foreground);
}

.stripe-readiness-card span {
  color: var(--muted-text);
  line-height: 1.55;
}

.cause-support-section,
.cause-nomination-section {
  border-top: 1px solid var(--border);
}

.calendar-directory {
  border: 1px solid #e5e7eb;
  padding: 18px;
  background: #f3f4f6;
}

.calendar-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  border-radius: 12px;
  padding: 24px;
  color: #111827;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}

.calendar-head h2 {
  margin: 4px 0 6px;
  font-family: var(--font-sans);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
}

.calendar-head p {
  max-width: 680px;
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

.calendar-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.calendar-links a {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #e5e7eb;
  border-left: 5px solid #8b0000;
  border-radius: 10px;
  padding: 12px;
  color: #111827;
  background: #ffffff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.calendar-links a:hover {
  transform: translateY(-2px);
  border-color: #8b0000;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.calendar-years {
  display: grid;
  gap: 18px;
}

.calendar-year {
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1);
}

.calendar-year h3 {
  margin: 0;
  padding: 15px 18px;
  color: #ffffff;
  background: #8b0000;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 800;
}

.calendar-term-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
}

.calendar-term {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px;
  background: #ffffff;
}

.calendar-term h4 {
  margin: 0 0 12px;
  color: #111827;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 800;
}

.calendar-term ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.calendar-term li {
  display: grid;
  grid-template-columns: minmax(128px, 0.42fr) 1fr;
  gap: 10px;
  align-items: baseline;
  border-top: 1px solid #f3f4f6;
  padding-top: 9px;
  color: #111827;
  font-size: 13px;
}

.calendar-term li:first-child {
  border-top: 0;
  padding-top: 0;
}

.calendar-term li span {
  color: #8b0000;
  font-weight: 800;
}

.calendar-term li strong {
  font-weight: 700;
}

.empty-directory code {
  font-size: 13px;
}

.resource-list {
  border: 1px solid var(--border);
  background: var(--border);
  display: grid;
  gap: 1px;
}

.resource-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  background: var(--background);
}

.resource-item h3 {
  margin: 2px 0 6px;
}

.ask-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
}

.ask-shell {
  min-height: calc(100vh - 100px);
  padding: 48px 0 88px;
  background:
    radial-gradient(circle at 92% 8%, rgba(198, 154, 57, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8f6f1 44%, #ffffff 100%);
}

.ask-container {
  max-width: 1160px;
}

.back-link {
  margin-bottom: 34px;
}

.ask-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

.ask-intro {
  max-width: 760px;
}

.ask-intro h1 {
  margin-bottom: 14px;
  font-size: clamp(44px, 5vw, 72px);
}

.ask-topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.ask-topic-row a {
  border: 1px solid rgba(198, 154, 57, 0.38);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--foreground);
  background: #fff7e8;
  font-size: 12px;
  font-weight: 900;
}

.ask-topic-row a:hover {
  color: #ffffff;
  background: var(--navy);
}

.ask-truth-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(198, 154, 57, 0.34);
  padding: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(198, 154, 57, 0.17), transparent 34%),
    #ffffff;
  box-shadow: 0 18px 42px rgba(21, 27, 40, 0.06);
}

.ask-truth-card::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(198, 154, 57, 0.28);
  border-radius: 999px;
}

.ask-truth-card h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 40px);
}

.ask-truth-card p:last-child {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.7;
}

.ask-moment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.ask-moment-grid button {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 158px;
  gap: 10px;
  align-content: start;
  border: 1px solid var(--border);
  padding: 18px;
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.86);
  text-align: left;
  box-shadow: 0 14px 30px rgba(21, 27, 40, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ask-moment-grid button::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -44px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(198, 154, 57, 0.23);
  border-radius: 999px;
}

.ask-moment-grid button:hover {
  border-color: rgba(198, 154, 57, 0.52);
  box-shadow: 0 22px 42px rgba(21, 27, 40, 0.08);
  transform: translateY(-3px);
}

.ask-moment-grid span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--foreground);
  background: var(--accent);
}

.ask-moment-grid svg {
  width: 17px;
  height: 17px;
}

.ask-moment-grid strong {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
}

.ask-moment-grid small {
  color: var(--muted-text);
  font-size: 13px;
  line-height: 1.55;
}

.ask-search {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(21, 27, 40, 0.2);
  background: var(--card);
  box-shadow: 0 18px 42px rgba(21, 27, 40, 0.06);
}

.ask-search .search-icon {
  margin-left: 16px;
  color: var(--muted-text);
}

.ask-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 18px 12px;
  background: transparent;
  color: var(--foreground);
  font-size: 16px;
}

.ai-answer {
  min-height: 220px;
}

.ask-answer-card {
  overflow: hidden;
  border-color: rgba(198, 154, 57, 0.28);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 54px rgba(21, 27, 40, 0.08);
}

.ask-example-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.ask-example-row button {
  border: 1px solid var(--border);
  padding: 9px 12px;
  color: var(--muted-text);
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.ask-example-row button:hover {
  border-color: var(--foreground);
  color: var(--foreground);
}

.ask-brain-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 34px;
  border: 1px solid var(--border);
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(21, 27, 40, 0.045);
}

.ask-brain-heading {
  max-width: 780px;
}

.ask-brain-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 3vw, 40px);
}

.ask-brain-panel p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.65;
}

.mcp-agent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mcp-agent-grid article {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  border: 1px solid var(--border);
  padding: 15px;
  background: var(--background);
}

.mcp-agent-grid article::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -38px;
  width: 106px;
  height: 106px;
  border: 1px solid rgba(198, 154, 57, 0.22);
  border-radius: 999px;
}

.mcp-agent-grid article > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-bottom: 12px;
  color: var(--foreground);
  background: var(--accent);
}

.mcp-agent-grid svg {
  width: 17px;
  height: 17px;
}

.mcp-agent-grid h3 {
  margin-bottom: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 900;
}

.mcp-agent-grid p {
  margin-bottom: 0;
  font-size: 11px;
  line-height: 1.45;
}

.suggested-list {
  display: grid;
  border: 1px solid var(--border);
  background: var(--border);
  gap: 1px;
}

.suggested-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  border: 0;
  padding: 18px 22px;
  color: var(--foreground);
  background: var(--background);
  text-align: left;
  font-size: 14px;
}

.suggested-list span {
  opacity: 0;
  transition: opacity 160ms ease;
}

.suggested-list button:hover span {
  opacity: 1;
}

.thinking,
.ai-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pulse-lines {
  display: grid;
  gap: 10px;
}

.pulse-lines span {
  display: block;
  height: 12px;
  background: var(--secondary);
  animation: pulse 1.2s ease-in-out infinite;
}

.pulse-lines span:nth-child(1) {
  width: 74%;
}

.pulse-lines span:nth-child(2) {
  width: 52%;
}

.pulse-lines span:nth-child(3) {
  width: 66%;
}

@keyframes pulse {
  50% {
    opacity: 0.42;
  }
}

.ai-copy h3 {
  margin: 24px 0 8px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
}

.ai-copy p,
.ai-copy li {
  color: var(--foreground);
  font-size: 15px;
  line-height: 1.72;
}

.ai-copy ul {
  margin: 0;
  padding-left: 20px;
}

.answer-question-card {
  border: 1px solid var(--border);
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(198, 154, 57, 0.12), transparent 32%),
    #ffffff;
}

.answer-question-card h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.answer-agent-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.answer-agent-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(198, 154, 57, 0.34);
  padding: 7px 10px;
  color: var(--foreground);
  background: rgba(198, 154, 57, 0.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.answer-agent-strip .confidence-pill {
  border-color: rgba(21, 27, 40, 0.28);
  color: #ffffff;
  background: var(--primary);
}

.answer-agent-strip svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.answer-summary {
  border: 1px solid rgba(198, 154, 57, 0.34);
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(198, 154, 57, 0.12), rgba(255, 255, 255, 0.78)),
    rgba(198, 154, 57, 0.06);
  box-shadow: 0 14px 30px rgba(21, 27, 40, 0.045);
}

.answer-summary h3 {
  margin-bottom: 8px;
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
}

.answer-summary p:last-child {
  margin-bottom: 0;
}

.answer-caveat,
.answer-section-note {
  color: var(--muted-text) !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
}

.answer-caveat {
  margin-top: 14px;
  border-top: 1px solid rgba(198, 154, 57, 0.25);
  padding-top: 14px;
}

.answer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 0;
  background: transparent;
}

.answer-columns section {
  border: 1px solid var(--border);
  padding: 22px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(21, 27, 40, 0.045);
}

.answer-section-block {
  border: 1px solid var(--border);
  padding: 22px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(21, 27, 40, 0.045);
}

.answer-section-head {
  margin-bottom: 14px;
}

.answer-section-head h3 {
  margin: 0;
}

.answer-resource-grid,
.answer-opportunity-list,
.answer-official-links {
  display: grid;
  gap: 10px;
}

.answer-resource-card,
.answer-opportunity-card,
.answer-official-links a {
  min-width: 0;
  border: 1px solid var(--border);
  padding: 16px 18px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(21, 27, 40, 0.04);
}

.answer-resource-card .listing-type {
  margin-bottom: 9px;
}

.answer-resource-card .eyebrow,
.answer-opportunity-card .eyebrow {
  margin-bottom: 7px;
  font-size: 10px;
  letter-spacing: 0.13em;
  line-height: 1.45;
}

.answer-resource-card h4,
.answer-opportunity-card h4 {
  margin: 0 0 8px;
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.answer-resource-card p,
.answer-opportunity-card p {
  margin-bottom: 14px;
  color: var(--muted-text);
  font-size: 13px;
  line-height: 1.55;
}

.answer-card-subtitle {
  margin: -2px 0 8px !important;
  color: var(--foreground) !important;
  font-weight: 700;
}

.answer-resource-actions,
.answer-actions,
.answer-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.answer-resource-actions a,
.answer-opportunity-card > a {
  width: max-content;
  border-bottom: 1px solid currentColor;
  color: #8b0000;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.answer-card-meta {
  margin: 0 0 12px;
}

.answer-card-meta span {
  border: 1px solid var(--border);
  padding: 5px 8px;
  color: var(--muted-text);
  background: var(--background);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.answer-link-list {
  display: grid;
  border: 1px solid var(--border);
  background: var(--border);
  gap: 1px;
}

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

.answer-official-links a {
  display: grid;
  gap: 4px;
  color: var(--foreground);
}

.answer-official-links span {
  color: #8b0000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.answer-official-links strong {
  font-size: 14px;
}

.answer-link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--foreground);
  background: var(--background);
}

.answer-link-list span {
  color: var(--muted-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.answer-link-list strong {
  margin-right: auto;
  font-size: 14px;
}

.answer-actions {
  padding-top: 6px;
}

.answer-verify-box {
  border: 1px solid rgba(139, 0, 0, 0.22);
  padding: 20px;
  background: rgba(139, 0, 0, 0.035);
}

.answer-verify-box p:last-child {
  margin-bottom: 0;
  color: var(--foreground);
  font-size: 14px;
  line-height: 1.7;
}

.ask-panel {
  display: grid;
  gap: 16px;
}

.ask-panel textarea {
  min-height: 190px;
  resize: vertical;
}

.answer-card {
  border: 1px solid var(--border);
}

.article-body {
  max-width: 780px;
}

.article-image {
  width: 100%;
  height: 50vh;
  max-height: 520px;
  min-height: 320px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--image-filter);
}

.article-shell {
  padding: 48px 0 88px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -4px 0 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  color: var(--muted-text);
  font-size: 12px;
}

.article-meta svg {
  width: 15px;
  height: 15px;
  color: var(--muted-text);
}

.ai-tip {
  margin-bottom: 42px;
  border: 1px solid rgba(198, 154, 57, 0.35);
  padding: 24px;
  background: rgba(198, 154, 57, 0.06);
}

.ai-tip .eyebrow {
  margin-bottom: 10px;
  color: var(--accent);
}

.ai-tip p:last-child {
  margin-bottom: 0;
  color: var(--foreground);
  font-size: 14px;
  line-height: 1.7;
}

.article-content {
  display: grid;
  gap: 20px;
}

.article-content h2 {
  margin: 42px 0 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: clamp(30px, 3vw, 42px);
}

.article-content h3 {
  margin: 10px 0 0;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-content p,
.article-content li {
  color: var(--foreground);
  font-size: 16px;
  line-height: 1.85;
}

.article-content ul,
.article-content ol {
  margin: 0;
  padding-left: 22px;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.checklist-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 10% 10%, rgba(198, 154, 57, 0.13), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, var(--background) 100%);
}

.checklist-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -140px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(198, 154, 57, 0.22);
  border-radius: 999px;
}

.checklist-hero-grid {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(44px, 6vw, 90px);
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
}

.checklist-hero h1 {
  max-width: 780px;
  font-size: clamp(54px, 6vw, 88px);
}

.checklist-hero .lede {
  max-width: 670px;
  font-size: 17px;
  line-height: 1.75;
}

.checklist-hero-media {
  position: relative;
  min-height: 470px;
}

.checklist-hero-media img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border: 1px solid var(--border);
  filter: var(--image-filter);
  box-shadow: 0 30px 70px rgba(21, 27, 40, 0.14);
}

.checklist-floating-note {
  position: absolute;
  left: -28px;
  bottom: 34px;
  max-width: 300px;
  border: 1px solid rgba(198, 154, 57, 0.38);
  padding: 18px;
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(21, 27, 40, 0.12);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.checklist-phase-grid,
.checklist-section-grid,
.checklist-image-band,
.checklist-two-col {
  display: grid;
  gap: 18px;
}

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

.checklist-phase-card,
.checklist-section-card,
.checklist-highlight {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(21, 27, 40, 0.045);
}

.checklist-phase-card {
  min-height: 230px;
  padding: 30px;
}

.checklist-phase-card::after,
.checklist-section-card::after,
.checklist-highlight::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -54px;
  width: 142px;
  height: 142px;
  border: 1px solid rgba(198, 154, 57, 0.24);
  border-radius: 999px;
}

.checklist-phase-card > span {
  display: block;
  margin-bottom: 32px;
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 44px;
  line-height: 1;
}

.checklist-phase-card h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3vw, 40px);
}

.checklist-phase-card p,
.checklist-section-card p,
.checklist-highlight p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.7;
}

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

.checklist-section-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.checklist-section-card h3 {
  margin-bottom: 10px;
}

.checklist-section-card ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.checklist-section-card li {
  display: flex;
  gap: 10px;
  align-items: start;
  color: var(--foreground);
  font-size: 14px;
  line-height: 1.45;
}

.checklist-section-card li svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--accent);
}

.checklist-section-card aside {
  position: relative;
  z-index: 1;
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.checklist-image-band {
  grid-template-columns: 1.15fr 0.85fr 0.7fr;
  align-items: stretch;
}

.checklist-image-band img {
  width: 100%;
  min-height: 280px;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
  filter: var(--image-filter);
  box-shadow: 0 12px 30px rgba(21, 27, 40, 0.055);
}

.checklist-image-band img:nth-child(2) {
  border-radius: 999px;
  aspect-ratio: 1;
}

.checklist-two-col {
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  align-items: stretch;
}

.checklist-tip {
  margin: 0;
  background: #ffffff;
}

.checklist-highlight {
  padding: clamp(32px, 5vw, 56px);
  background:
    radial-gradient(circle at 92% 15%, rgba(198, 154, 57, 0.18), transparent 26%),
    #ffffff;
}

.checklist-highlight h2 {
  max-width: 760px;
  margin-bottom: 18px;
}

.checklist-highlight p {
  max-width: 760px;
}

.action-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.action-band > div:first-child {
  max-width: 680px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
}

.form-card {
  display: grid;
  gap: 18px;
  border: 1px solid var(--border);
}

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

.form-card label {
  display: grid;
  gap: 8px;
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-card .form-row {
  gap: 14px;
}

.auth-card input,
.auth-card select {
  min-height: 44px;
}

.auth-card .button.primary {
  min-height: 46px;
}

.auth-shell {
  min-height: calc(100vh - 108px);
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 0.72fr);
  align-items: start;
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  gap: 0;
  padding: clamp(72px, 8vw, 104px) 0;
}

.auth-register-shell {
  grid-template-columns: minmax(360px, 0.78fr) minmax(460px, 1fr);
  align-items: start;
  width: min(1180px, calc(100% - 48px));
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(21, 27, 40, 0.08);
  padding: 0;
  margin-block: clamp(34px, 5vw, 56px) clamp(56px, 7vw, 82px);
  gap: 0;
}

.auth-intro-card {
  display: grid;
  align-content: center;
  min-height: clamp(560px, 62vh, 680px);
  height: 100%;
  border: 0;
  border-right: 1px solid var(--border);
  padding: clamp(30px, 4vw, 46px);
  color: #f7f4ed;
  background:
    linear-gradient(145deg, rgba(23, 32, 52, 0.88), rgba(34, 45, 69, 0.78)),
    url("https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?w=1200&q=82") center/cover;
}

.auth-intro-card h2,
.auth-intro-card .eyebrow {
  color: #f7f4ed;
}

.auth-intro-card h2 {
  max-width: 430px;
  margin-bottom: 14px;
  font-size: clamp(34px, 3.6vw, 48px);
}

.auth-intro-card p {
  max-width: 440px;
  color: rgba(247, 244, 237, 0.72);
  font-size: 15px;
  line-height: 1.62;
}

.auth-path-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 26px 0 0;
  border: 1px solid rgba(247, 244, 237, 0.14);
  background: rgba(247, 244, 237, 0.14);
}

.auth-path-list span {
  display: grid;
  gap: 6px;
  padding: 14px;
  color: rgba(247, 244, 237, 0.64);
  background: rgba(247, 244, 237, 0.06);
  font-size: 12px;
  line-height: 1.45;
}

.auth-path-list strong {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-card {
  width: min(430px, 100%);
  align-self: center;
  margin: 0 auto;
}

.auth-shell > .auth-card {
  width: 100%;
  border: 0;
  padding: clamp(28px, 3.5vw, 40px);
  background: #ffffff;
  box-shadow: none;
}

.auth-register-shell > .student-verified-card {
  grid-column: 3;
  grid-row: 1;
  justify-self: stretch;
  width: 100%;
  height: 100%;
  border: 0;
  border-left: 1px solid var(--border);
  margin-top: 0;
}

.auth-register-shell > .auth-card {
  grid-column: 2;
  grid-row: 1;
}

.auth-benefit-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.auth-benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(247, 244, 237, 0.86);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.auth-benefit-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: #f2cf78;
  stroke-width: 2.6;
}

.auth-heading-link {
  width: fit-content;
  margin-top: -6px;
}

.auth-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: -2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
}

.auth-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.auth-trust-row svg {
  width: 13px;
  height: 13px;
  color: var(--accent);
  stroke-width: 2.7;
}

.area-school-picker {
  display: grid;
  gap: 12px;
}

.compact-area-picker .field-help {
  max-width: 34rem;
  margin-top: -2px;
}

.missing-school-suggestion {
  border: 1px solid rgba(198, 154, 57, 0.32);
  padding: 10px 12px;
  background: rgba(255, 247, 232, 0.45);
}

.missing-school-suggestion summary {
  min-height: 32px;
  cursor: pointer;
  color: var(--foreground);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.missing-school-suggestion .form-row {
  margin-top: 10px;
}

.student-verified-card {
  min-height: 0;
}

.profile-gate-card {
  display: grid;
  gap: 20px;
}

.profile-gate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.profile-access-gate .auth-intro-card {
  align-content: center;
}

.profile-access-gate .auth-path-list {
  gap: 8px;
  border-color: rgba(247, 244, 237, 0.1);
  background: transparent;
}

.profile-access-gate .auth-path-list span {
  gap: 8px;
  padding: 16px;
  background: rgba(247, 244, 237, 0.08);
}

.profile-access-gate .auth-path-list strong {
  letter-spacing: 0.07em;
}

.profile-gate-trust {
  margin-top: -4px;
}

.button.outline.light {
  border-color: rgba(247, 244, 237, 0.72);
  color: #f7f4ed;
}

.optional-label {
  color: var(--muted-text);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.access-includes {
  border: 1px solid var(--border);
  padding: 14px;
  background: rgba(238, 232, 220, 0.28);
}

.access-includes ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.access-includes li {
  position: relative;
  padding-left: 16px;
  color: var(--foreground);
  font-size: 12px;
  font-weight: 700;
}

.access-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.student-verified-card {
  width: min(520px, 100%);
  border: 1px solid var(--border);
  padding: 26px;
  background: rgba(238, 232, 220, 0.24);
}

.student-verified-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.55fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}

.student-verified-layout .student-verified-card {
  width: 100%;
  background: #ffffff;
}

.student-verified-card h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 2.4vw, 34px);
}

.student-verified-card p,
.student-verified-card span {
  color: var(--muted-text);
  font-size: 13px;
  line-height: 1.55;
}

.verification-preview {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.verification-preview label {
  display: grid;
  gap: 7px;
  color: var(--foreground);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.verification-preview input {
  width: 100%;
  border: 1px solid var(--border);
  padding: 13px 15px;
  color: var(--muted-text);
  background: #ffffff;
}

.status-note {
  min-height: 22px;
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

.mcp-brain-shell {
  padding: 148px 0 72px;
  background: #f6f7f9;
}

.mcp-brain-header,
.mcp-brain-layout,
.mcp-brain-bottom-grid {
  display: grid;
  gap: 20px;
}

.mcp-brain-header {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  margin-bottom: 16px;
}

.mcp-brain-header h1 {
  margin: 6px 0 8px;
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
}

.mcp-brain-header p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  color: var(--muted-text);
  line-height: 1.6;
}

.mcp-brain-status,
.privacy-reminder,
.status-badge {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--foreground);
  font-size: 13px;
}

.mcp-brain-status {
  margin-bottom: 20px;
  padding: 12px 14px;
}

.mcp-knowledge-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 20px;
  color: var(--muted-text);
  font-size: 13px;
}

.mcp-knowledge-flow span {
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px 10px;
  font-weight: 700;
  color: var(--foreground);
}

.mcp-knowledge-flow b {
  color: var(--muted-text);
  font-weight: 700;
}

.mcp-brain-status[data-tone="error"] {
  border-color: rgba(179, 38, 30, 0.35);
  color: var(--danger);
}

.privacy-reminder {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-color: rgba(179, 38, 30, 0.24);
  background: #fff8f7;
  color: #7a211b;
}

.mcp-brain-layout {
  grid-template-columns: minmax(320px, 0.85fr) minmax(480px, 1.35fr);
  align-items: start;
}

.mcp-brain-intake-card,
.mcp-brain-extraction-card,
.mcp-brain-bottom-grid .form-card {
  border: 1px solid var(--border);
  box-shadow: none;
}

.section-head.compact {
  margin-bottom: 18px;
  gap: 16px;
}

.section-head.compact h2 {
  margin: 2px 0 0;
  font-size: 22px;
}

.mcp-brain-field-grid,
.mcp-brain-chip-grid,
.mcp-brain-bottom-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mcp-brain-field-grid,
.mcp-brain-chip-grid {
  display: grid;
  gap: 14px;
}

.mcp-brain-field-grid {
  margin-bottom: 14px;
}

.mcp-brain-chip-grid {
  margin: 16px 0;
}

.mcp-brain-panel {
  border: 1px solid var(--border);
  background: #fff;
}

.mcp-brain-panel + .mcp-brain-panel {
  margin-top: 14px;
}

.mcp-brain-panel summary {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
}

.mcp-brain-panel summary::-webkit-details-marker {
  display: none;
}

.mcp-brain-panel summary span {
  display: grid;
  gap: 2px;
}

.mcp-brain-panel summary small {
  color: var(--muted-text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mcp-brain-panel summary strong {
  font-size: 18px;
}

.mcp-brain-panel summary em {
  color: var(--muted-text);
  font-size: 12px;
  font-style: normal;
}

.mcp-brain-panel[open] summary {
  border-bottom: 1px solid var(--border);
}

.mcp-brain-panel-body {
  padding: 18px;
}

.mcp-brain-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--border);
}

.mcp-brain-check-grid legend {
  padding: 0 6px;
  color: var(--muted-text);
  font-size: 13px;
  font-weight: 700;
}

.mcp-brain-check-grid label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  margin: 0;
  font-size: 13px;
}

.mcp-brain-row-list {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

.mcp-brain-repeat-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr)) auto;
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px solid var(--border);
  background: #fbfaf7;
}

.mcp-brain-chip-editor {
  display: grid;
  gap: 8px;
}

.mcp-brain-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 28px;
}

.mcp-brain-chip-row small,
.field-help {
  color: var(--muted-text);
  font-size: 13px;
}

.mcp-brain-action-bar,
.mcp-brain-search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.mcp-brain-action-bar {
  position: sticky;
  bottom: 0;
  z-index: 5;
  margin: 20px -32px -32px;
  padding: 18px 32px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
}

.mcp-brain-duplicates {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.mcp-brain-match,
.mcp-brain-list-item,
.mcp-brain-list-card {
  width: 100%;
  border: 1px solid var(--border);
  background: #fff;
  padding: 14px;
}

.mcp-brain-match {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 10px;
}

.mcp-brain-match span,
.mcp-brain-list-item span,
.mcp-brain-list-card {
  display: grid;
  gap: 5px;
}

.mcp-brain-match small,
.mcp-brain-list-item small,
.mcp-brain-list-card small {
  color: var(--muted-text);
  font-size: 12px;
  line-height: 1.45;
}

.mcp-brain-match em {
  color: var(--muted-text);
  font-size: 12px;
  font-style: normal;
}

.status-badge,
.mcp-brain-list-item em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mcp-brain-list {
  display: grid;
  gap: 10px;
}

.mcp-brain-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  text-align: left;
}

.mcp-brain-list-card p {
  margin: 4px 0 0;
  color: var(--foreground);
  font-size: 13px;
  line-height: 1.55;
}

.mcp-brain-search-row {
  margin-bottom: 14px;
}

.mcp-brain-search-row input {
  flex: 1 1 260px;
  border: 1px solid var(--border);
  padding: 13px 15px;
  background: #fff;
}

.campus-admin-shell .mcp-brain-header {
  align-items: flex-end;
}

.campus-admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.campus-admin-metric {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 16px;
  box-shadow: var(--shadow-card);
}

.campus-admin-metric small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.campus-admin-metric strong {
  display: block;
  font-size: 20px;
  line-height: 1.25;
}

.campus-admin-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.campus-admin-check {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--border);
  padding: 10px 12px;
  background: #fff;
}

.campus-admin-check input {
  width: auto;
}

.campus-admin-results {
  margin-top: 18px;
}

.admin-content-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.admin-content-nav a {
  border: 1px solid var(--border);
  background: #fff;
  padding: 9px 12px;
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.admin-content-nav a.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.admin-content-metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.admin-content-manager-grid,
.admin-content-layout {
  display: grid;
  gap: 18px;
}

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

.admin-content-layout {
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  align-items: start;
}

.admin-content-search-card {
  margin-bottom: 18px;
}

.admin-content-form textarea {
  min-height: 116px;
}

.admin-content-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.admin-content-row-actions .button {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 11px;
}

.admin-dashboard-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-dashboard-count-card {
  color: var(--foreground);
}

.admin-dashboard-count-card:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

.admin-dashboard-panel {
  margin-bottom: 18px;
}

.admin-dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-dashboard-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: 18px;
  align-items: start;
}

.admin-dashboard-status-list {
  display: grid;
  gap: 10px;
}

.admin-dashboard-status-list div {
  border: 1px solid var(--border);
  background: #fff;
  padding: 12px;
}

.admin-dashboard-status-list span,
.admin-dashboard-activity-group h3 {
  display: block;
  color: var(--muted-text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-dashboard-status-list strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.admin-dashboard-activity {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-dashboard-activity-group h3 {
  margin: 0 0 8px;
}

.sample-cleanup-note {
  margin-bottom: 18px;
  border-color: rgba(198, 154, 57, 0.45);
  background: rgba(198, 154, 57, 0.08);
}

.sample-cleanup-note p {
  margin: 0;
  color: var(--foreground);
  font-weight: 600;
}

.sample-cleanup-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sample-cleanup-campus-group + .sample-cleanup-campus-group {
  margin-top: 20px;
}

.sample-cleanup-campus-group h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.sample-cleanup-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.sample-cleanup-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.sample-cleanup-badge {
  border: 1px solid var(--border);
  background: var(--secondary);
  padding: 4px 7px;
  color: var(--muted-text);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .mcp-brain-header,
  .mcp-brain-layout,
  .mcp-brain-bottom-grid,
  .mcp-brain-field-grid,
  .mcp-brain-chip-grid,
  .mcp-brain-check-grid,
  .mcp-brain-repeat-row,
  .campus-admin-metrics,
  .campus-admin-filters,
  .admin-dashboard-card-grid,
  .admin-dashboard-layout,
  .admin-dashboard-activity,
  .admin-content-metrics,
  .admin-content-manager-grid,
  .admin-content-layout,
  .sample-cleanup-layout {
    grid-template-columns: 1fr;
  }

  .mcp-brain-shell {
    padding-top: 124px;
  }

  .mcp-brain-action-bar {
    position: static;
  }
}

.tier-email-preview,
.vendor-tier-note {
  border: 1px solid var(--border);
  background: rgba(202, 161, 73, 0.08);
}

.tier-email-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.tier-email-preview span,
.vendor-tier-note {
  padding: 16px;
  color: var(--muted-text);
  font-size: 13px;
  line-height: 1.5;
}

.tier-email-preview span {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tier-email-preview span:nth-child(2n) {
  border-right: 0;
}

.tier-email-preview span:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.tier-email-preview strong,
.vendor-tier-note strong {
  display: block;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.centered-actions {
  justify-content: center;
  margin-top: 24px;
}

.business-comparison-table {
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1.45fr 1.25fr 1.45fr 1fr;
  border-top: 1px solid var(--border);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-row strong,
.comparison-row span {
  padding: 16px;
  border-left: 1px solid var(--border);
  color: var(--muted-text);
  font-size: 13px;
  line-height: 1.45;
  transition: color 160ms ease, background 160ms ease;
}

.comparison-row strong:first-child,
.comparison-row span:first-child {
  border-left: 0;
}

.comparison-row strong {
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  background: rgba(202, 161, 73, 0.08);
}

.comparison-row span:first-child {
  color: var(--ink);
  font-weight: 700;
}

.business-comparison-table .comparison-row:not(.comparison-heading):hover {
  position: relative;
  z-index: 1;
  cursor: pointer;
  background: #fffaf0;
  box-shadow: 0 16px 34px rgba(21, 27, 40, 0.08);
  transform: translateY(-2px);
}

.business-comparison-table .comparison-row:not(.comparison-heading):hover span {
  color: var(--foreground);
}

.business-comparison-table .comparison-row:not(.comparison-heading):hover span:first-child {
  color: var(--primary);
}

.profile-hero {
  color: #f7f4ed;
  background: var(--primary);
  padding: 56px 0;
}

.profile-head {
  display: flex;
  align-items: end;
  gap: 24px;
}

.profile-head h1,
.profile-head .eyebrow {
  color: #f7f4ed;
}

.profile-head p {
  margin-bottom: 0;
  color: rgba(247, 244, 237, 0.5);
}

.avatar {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--foreground);
  background: var(--accent);
  font-family: var(--font-serif);
  font-size: 28px;
}

.profile-stats {
  display: flex;
  gap: 26px;
  margin-left: auto;
}

.profile-stats div {
  border-left: 1px solid rgba(247, 244, 237, 0.15);
  padding-left: 18px;
}

.profile-stats strong,
.profile-stats span {
  display: block;
}

.profile-stats strong {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
}

.profile-stats span {
  color: rgba(247, 244, 237, 0.42);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
}

.verification-status {
  display: grid;
  gap: 7px;
  margin: 18px 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.verification-status strong {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.verification-status span {
  width: max-content;
  border: 1px solid var(--border);
  padding: 6px 9px;
  color: var(--muted-text);
  background: var(--background);
  font-size: 12px;
  font-weight: 800;
  text-transform: capitalize;
}

.insight-list,
.opportunity-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}

.insight-card,
.opportunity-card {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--background);
}

.insight-card h3,
.opportunity-card h3 {
  margin-bottom: 0;
}

.insight-card p,
.opportunity-card p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.65;
}

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

.quad-coming-soon {
  position: relative;
  overflow: hidden;
  color: #f7f4ed;
  background:
    linear-gradient(135deg, rgba(21, 27, 40, 0.95), rgba(21, 27, 40, 0.88)),
    url("https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?w=1600&q=85") center/cover;
  border-bottom: 1px solid var(--border);
}

.quad-hero-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.55fr);
  gap: 48px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 96px;
}

.quad-hero-copy .eyebrow,
.quad-hero-copy h1 {
  color: #f7f4ed;
}

.quad-hero-copy h1 {
  max-width: 780px;
}

.quad-hero-copy .lede,
.quad-support-line {
  max-width: 680px;
  color: rgba(247, 244, 237, 0.72);
}

.quad-support-line {
  margin: 22px 0 32px;
  font-size: 18px;
  line-height: 1.7;
}

.coming-soon-badge {
  display: inline-flex;
  width: max-content;
  margin-bottom: 18px;
  border: 1px solid rgba(198, 154, 57, 0.5);
  padding: 8px 12px;
  color: var(--foreground);
  background: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quad-preview-panel {
  border: 1px solid rgba(247, 244, 237, 0.18);
  background: rgba(247, 244, 237, 0.08);
  backdrop-filter: blur(12px);
}

.quad-campus-card {
  padding: 32px;
  border-bottom: 1px solid rgba(247, 244, 237, 0.16);
}

.quad-campus-card .eyebrow,
.quad-campus-card h2 {
  color: #f7f4ed;
}

.quad-campus-card h2 {
  font-size: clamp(42px, 5vw, 72px);
}

.quad-campus-card p {
  color: rgba(247, 244, 237, 0.64);
  font-size: 15px;
  line-height: 1.65;
}

.quad-signal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(247, 244, 237, 0.16);
}

.quad-signal-list span {
  min-height: 92px;
  display: flex;
  align-items: end;
  padding: 18px;
  color: #f7f4ed;
  background: rgba(21, 27, 40, 0.7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quad-resource-section {
  background: #ffffff;
}

.quad-resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.quad-resource-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--border);
  padding: 24px;
  background: var(--background);
  box-shadow: 0 12px 30px rgba(21, 27, 40, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quad-resource-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -48px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(198, 154, 57, 0.24);
  border-radius: 999px;
}

.quad-resource-card:hover {
  border-color: rgba(198, 154, 57, 0.42);
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(21, 27, 40, 0.09);
}

.quad-card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--accent);
  background: var(--primary);
}

.quad-card-icon svg {
  width: 21px;
  height: 21px;
}

.quad-resource-card h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 900;
}

.quad-resource-card p {
  margin: 0;
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.6;
}

.quad-interest-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.55fr);
  gap: 56px;
  align-items: start;
}

.dashboard-shell {
  color: #f7f4ed;
  background: var(--primary);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 32px;
  align-items: end;
}

.dashboard-hero h1 {
  color: #f7f4ed;
  margin-bottom: 14px;
}

.dashboard-hero .eyebrow {
  color: rgba(247, 244, 237, 0.72);
}

.dashboard-hero p {
  margin: 0;
  color: rgba(247, 244, 237, 0.58);
  font-size: 14px;
}

.dashboard-school-card {
  border: 1px solid rgba(247, 244, 237, 0.14);
  padding: 24px;
  background: rgba(247, 244, 237, 0.06);
}

.dashboard-school-card h2 {
  margin-bottom: 8px;
  color: #f7f4ed;
  font-size: clamp(30px, 3vw, 44px);
}

.dashboard-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 42%, #ffffff 100%);
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.dashboard-left-menu {
  position: sticky;
  top: 124px;
  display: grid;
  gap: 14px;
}

.dashboard-menu-card,
.dashboard-menu-links,
.dashboard-menu-cta {
  border: 1px solid var(--border);
  background: #ffffff;
}

.dashboard-menu-card {
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(23, 32, 52, 0.95), rgba(23, 52, 90, 0.86)),
    url("https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?w=900&q=80") center/cover;
  color: #f7f4ed;
}

.dashboard-menu-card h2,
.dashboard-menu-card .eyebrow {
  color: #f7f4ed;
}

.dashboard-menu-card h2 {
  margin-bottom: 8px;
  font-size: 30px;
}

.dashboard-menu-card p {
  margin: 0;
  color: rgba(247, 244, 237, 0.68);
  font-size: 13px;
}

.dashboard-menu-links {
  display: grid;
  gap: 1px;
  background: var(--border);
}

.dashboard-menu-links a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 3px 12px;
  align-items: center;
  padding: 15px;
  background: #ffffff;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease;
}

.dashboard-menu-links a:hover,
.dashboard-menu-links a.active {
  color: #ffffff;
  background: var(--primary);
}

.dashboard-menu-links a:hover {
  transform: translateX(2px);
}

.dashboard-menu-links a > span {
  grid-row: span 2;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--accent);
  background: rgba(198, 154, 57, 0.12);
}

.dashboard-menu-links svg {
  width: 17px;
  height: 17px;
}

.dashboard-menu-links strong {
  font-size: 13px;
}

.dashboard-menu-links small {
  color: var(--muted-text);
  font-size: 11px;
  line-height: 1.35;
}

.dashboard-menu-links a:hover small,
.dashboard-menu-links a.active small {
  color: rgba(247, 244, 237, 0.66);
}

.dashboard-menu-cta {
  display: grid;
  gap: 7px;
  padding: 18px;
  background: #fff7e8;
}

.dashboard-menu-cta strong {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dashboard-menu-cta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted-text);
  font-size: 12px;
  line-height: 1.45;
}

.dashboard-main {
  display: grid;
  gap: 30px;
}

.dashboard-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dashboard-action-card {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--border);
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(21, 27, 40, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.dashboard-action-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(21, 27, 40, 0.11);
}

.dashboard-action-card h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 800;
}

.dashboard-action-card p {
  color: var(--muted-text);
  font-size: 13px;
  line-height: 1.55;
}

.dashboard-card-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 6px;
  color: #ffffff;
  background: var(--primary);
}

.dashboard-card-icon svg {
  width: 19px;
  height: 19px;
}

.dashboard-card-arrow {
  margin-top: auto;
  color: var(--accent);
}

.journey-map-module {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 24%, rgba(198, 154, 57, 0.14), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(44, 93, 136, 0.14), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #fbfaf7 100%);
}

.journey-map-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 20px 0 4px;
}

.journey-map-track::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #9d2f2f, #2c5d88, var(--primary));
  opacity: 0.32;
}

.journey-stop {
  position: relative;
  z-index: 1;
  min-height: 248px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 12px 18px;
  text-align: center;
  transition: transform 180ms ease, color 180ms ease;
}

.journey-stop:hover {
  color: var(--foreground);
  transform: translateY(-5px);
}

.journey-dot {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 9px solid #ffffff;
  border-radius: 999px;
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 18px 44px rgba(21, 27, 40, 0.16);
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.journey-stop:nth-child(2) .journey-dot,
.journey-stop:nth-child(5) .journey-dot {
  background: #9d2f2f;
}

.journey-stop:nth-child(3) .journey-dot {
  color: var(--foreground);
  background: var(--accent);
}

.journey-stop:nth-child(4) .journey-dot {
  background: #2c5d88;
}

.journey-stop:hover .journey-dot {
  transform: scale(1.08);
  box-shadow: 0 22px 54px rgba(21, 27, 40, 0.22);
}

.journey-stop.is-current .journey-dot {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.journey-label {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(198, 154, 57, 0.34);
  border-radius: 999px;
  color: var(--muted-text);
  background: #fff7e8;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journey-stop strong {
  font-size: 15px;
  line-height: 1.25;
}

.journey-stop small {
  max-width: 190px;
  color: var(--muted-text);
  font-size: 12px;
  line-height: 1.55;
}

.journey-map-note {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 10px;
  padding: 15px 18px;
  border: 1px solid rgba(198, 154, 57, 0.28);
  background: rgba(255, 247, 232, 0.72);
}

.journey-map-note strong {
  font-size: 13px;
}

.journey-map-note span {
  color: var(--muted-text);
  font-size: 13px;
}

.dashboard-action-card.tone-gold {
  border-top: 4px solid var(--accent);
}

.dashboard-action-card.tone-red {
  border-top: 4px solid #9d2f2f;
}

.dashboard-action-card.tone-blue {
  border-top: 4px solid #2c5d88;
}

.dashboard-action-card.tone-navy {
  border-top: 4px solid var(--primary);
}

.dashboard-action-card.tone-gold .dashboard-card-icon {
  color: var(--foreground);
  background: var(--accent);
}

.dashboard-action-card.tone-red .dashboard-card-icon {
  background: #9d2f2f;
}

.dashboard-action-card.tone-blue .dashboard-card-icon {
  background: #2c5d88;
}

.parent-dashboard-module {
  overflow: hidden;
  border-color: rgba(198, 154, 57, 0.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(198, 154, 57, 0.18), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(44, 93, 136, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  box-shadow: 0 22px 52px rgba(21, 27, 40, 0.06);
}

.dashboard-command-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 18px;
  margin-bottom: 18px;
}

.parent-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 16px;
}

.refined-dashboard-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: stretch;
}

.dashboard-now-card,
.dashboard-focus-card,
.dashboard-popular-card,
.dashboard-favorites-card,
.dashboard-moments-card {
  border: 1px solid var(--border);
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
}

.dashboard-now-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 1fr);
  gap: 22px;
  align-items: end;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(21, 27, 40, 0.96), rgba(18, 44, 82, 0.94)),
    var(--navy);
}

.dashboard-now-card::after {
  content: "";
  position: absolute;
  right: -68px;
  bottom: -72px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(198, 154, 57, 0.3);
  border-radius: 999px;
}

.dashboard-now-card .eyebrow,
.dashboard-now-card span {
  color: rgba(255, 255, 255, 0.72);
}

.dashboard-now-card h3,
.dashboard-focus-card h3,
.dashboard-popular-card h3,
.dashboard-moments-card h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.dashboard-update-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.dashboard-update-row a {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  min-height: 132px;
  align-content: center;
  border: 1px solid rgba(247, 244, 237, 0.14);
  padding: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 160ms ease, background 160ms ease;
}

.dashboard-update-row a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
}

.dashboard-now-card strong {
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1;
}

.dashboard-focus-card {
  display: grid;
  align-content: center;
  gap: 14px;
  background:
    radial-gradient(circle at 100% 100%, rgba(198, 154, 57, 0.18), transparent 34%),
    #ffffff;
}

.dashboard-focus-card p {
  color: var(--muted-text);
  line-height: 1.6;
}

.dashboard-action-lane {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.dashboard-action-tile {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  min-height: 178px;
  align-content: start;
  border: 1px solid var(--border);
  padding: 20px;
  color: var(--foreground);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(21, 27, 40, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.dashboard-action-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 154, 57, 0.55);
  box-shadow: 0 18px 38px rgba(21, 27, 40, 0.08);
}

.dashboard-action-tile::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 122px;
  height: 122px;
  border: 1px solid rgba(198, 154, 57, 0.25);
  border-radius: 999px;
}

.dashboard-action-tile > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-action-tile.tone-2 > span {
  background: #9d2f2f;
}

.dashboard-action-tile.tone-3 > span {
  color: var(--foreground);
  background: var(--accent);
}

.dashboard-action-tile.tone-4 > span {
  background: #2c5d88;
}

.dashboard-action-tile h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 900;
}

.dashboard-action-tile p {
  margin: 0;
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.55;
}

.dashboard-action-tile small {
  margin-top: auto;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.popular-resource-links,
.dashboard-moments-card div {
  display: grid;
  gap: 10px;
}

.popular-resource-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.popular-resource-links a,
.dashboard-moments-card a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  border: 1px solid var(--border);
  padding: 14px;
  color: var(--foreground);
  background: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.popular-resource-links a > span {
  grid-row: span 2;
  font-size: 22px;
}

.popular-resource-links small,
.dashboard-moments-card small {
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.dashboard-moments-card div {
  margin-top: 18px;
}

.dashboard-moments-card a {
  grid-template-columns: 1fr;
}

.dashboard-favorites-card h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 900;
}

.dashboard-favorites-card p {
  color: var(--muted-text);
  line-height: 1.6;
}

.dashboard-module,
.dashboard-side-card {
  border: 1px solid var(--border);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(21, 27, 40, 0.04);
}

.dashboard-module {
  padding: 28px;
}

.welcome-mat-settings-module {
  overflow: hidden;
  border-color: rgba(198, 154, 57, 0.38);
  background:
    radial-gradient(circle at 94% 14%, rgba(198, 154, 57, 0.13), transparent 26%),
    radial-gradient(circle at 4% 88%, rgba(44, 93, 136, 0.11), transparent 28%),
    #ffffff;
}

.welcome-settings-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.75fr);
  gap: 28px;
  align-items: start;
}

.welcome-settings-copy {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(198, 154, 57, 0.28);
  padding: 24px;
  background: #fff7e8;
}

.welcome-settings-copy h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 900;
}

.welcome-settings-copy p {
  margin: 0;
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.65;
}

.welcome-settings-benefits {
  display: grid;
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}

.welcome-settings-benefits span {
  display: grid;
  gap: 3px;
  padding: 12px;
  color: var(--muted-text);
  background: #ffffff;
  font-size: 13px;
}

.welcome-settings-benefits strong {
  color: var(--foreground);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.welcome-settings-form {
  display: grid;
  gap: 16px;
}

.welcome-settings-form label {
  display: grid;
  gap: 8px;
  color: var(--muted-text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.welcome-settings-form input,
.welcome-settings-form select {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--border);
  padding: 13px 15px;
  color: var(--foreground);
  background: #ffffff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.welcome-settings-form input:focus,
.welcome-settings-form select:focus {
  outline: 2px solid rgba(198, 154, 57, 0.35);
  outline-offset: 2px;
}

.field-help {
  margin: -4px 0 10px;
  color: var(--muted-text);
  font-size: 13px;
  line-height: 1.5;
}

.multi-school-picker {
  display: grid;
  gap: 8px;
}

.school-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.welcome-settings-form .school-check,
.school-check {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 9px;
  align-items: start;
  border: 1px solid var(--border);
  min-height: 54px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--foreground);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.school-check input {
  width: 14px;
  height: 14px;
  min-height: 0;
  margin-top: 2px;
  accent-color: var(--gold);
}

.school-check span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.school-check strong {
  font-size: 11px;
  line-height: 1.15;
}

.school-check small {
  color: var(--muted-text);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.dashboard-school-extra {
  margin-top: 8px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 13px !important;
}

.welcome-tools-panel .dashboard-school-extra {
  color: var(--muted-text) !important;
}

.dashboard-interest-grid .interest-chip span {
  background: #ffffff;
}

.welcome-settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.dashboard-module.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: var(--border);
}

.dashboard-module.two-col > div {
  padding: 28px;
  background: var(--background);
}

.dashboard-module-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}

.dashboard-module-head.compact {
  margin-bottom: 18px;
}

.dashboard-module-head h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.funnel-inbox-module {
  background:
    radial-gradient(circle at 94% 8%, rgba(198, 154, 57, 0.13), transparent 24%),
    #ffffff;
}

.funnel-note {
  max-width: 940px;
  margin: -8px 0 22px;
  color: var(--muted-text);
  font-size: 15px;
  line-height: 1.7;
}

.funnel-inbox-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.funnel-bucket-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--border);
  padding: 18px;
  background: #fffaf0;
}

.funnel-bucket-card strong {
  color: var(--red);
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 1;
}

.funnel-bucket-card h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 900;
}

.funnel-bucket-card p,
.funnel-recent-list p {
  margin: 0;
  color: var(--muted-text);
  font-size: 12px;
  line-height: 1.55;
}

.funnel-recent-panel {
  margin-top: 24px;
}

.funnel-recent-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}

.funnel-recent-list article {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: #ffffff;
}

.funnel-recent-list span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.funnel-recent-list strong {
  color: var(--foreground);
  font-size: 14px;
}

.family-connect-module {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.48fr);
  gap: 1px;
  padding: 0;
  background: var(--border);
  border-color: rgba(198, 154, 57, 0.45);
}

.family-connect-copy,
.family-invite-card {
  background: var(--background);
}

.family-connect-copy {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 247, 232, 0.96), #ffffff 62%);
}

.family-connect-copy h2 {
  max-width: 720px;
  font-size: clamp(30px, 3vw, 44px);
}

.family-connect-copy p {
  max-width: 760px;
  color: var(--muted-text);
  font-size: 15px;
  line-height: 1.7;
}

.family-share-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  border: 1px solid var(--border);
  background: var(--border);
}

.family-share-grid a {
  display: grid;
  gap: 7px;
  padding: 18px;
  color: var(--foreground);
  background: #ffffff;
}

.family-share-grid strong {
  font-size: 14px;
}

.family-share-grid span {
  color: var(--muted-text);
  font-size: 12px;
  line-height: 1.5;
}

.family-invite-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 34px;
  box-shadow: inset 4px 0 0 rgba(198, 154, 57, 0.28);
}

.family-invite-card h3 {
  margin-bottom: 0;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 900;
}

.family-invite-card label {
  display: grid;
  gap: 8px;
  color: var(--foreground);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.family-invite-card input,
.family-invite-card select {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--foreground);
  background: #ffffff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.family-invite-card input:focus,
.family-invite-card select:focus {
  outline: 2px solid rgba(198, 154, 57, 0.38);
  outline-offset: 2px;
}

.family-invite-card .button {
  width: 100%;
  justify-content: center;
  min-height: 50px;
}

.family-connection-plan,
.family-invite-list {
  display: grid;
  gap: 7px;
  border: 1px solid var(--border);
  padding: 14px;
  background: rgba(247, 244, 237, 0.56);
}

.family-connection-plan strong,
.family-invite-list strong {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.family-connection-plan span,
.family-invite-list span {
  color: var(--muted-text);
  font-size: 12px;
  line-height: 1.45;
}

.dashboard-card-grid,
.dashboard-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}

.dashboard-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: var(--background);
}

.dashboard-card h3 {
  margin-bottom: 10px;
}

.dashboard-card p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.6;
}

.dashboard-card .text-link {
  margin-top: auto;
}

.dashboard-list,
.dashboard-timeline,
.dashboard-download-list,
.dashboard-access-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}

.dashboard-list a,
.dashboard-timeline div,
.dashboard-download-list a,
.dashboard-access-list span {
  display: grid;
  gap: 5px;
  padding: 16px;
  background: var(--background);
}

.dashboard-list strong,
.dashboard-timeline strong {
  color: var(--foreground);
  font-size: 14px;
  line-height: 1.4;
}

.dashboard-list span,
.dashboard-timeline span {
  color: var(--muted-text);
  font-size: 12px;
  line-height: 1.5;
}

.dashboard-download-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--foreground);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-access-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--foreground);
  font-size: 13px;
  font-weight: 700;
}

.dashboard-access-list svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.dashboard-sidebar {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.dashboard-side-card {
  padding: 24px;
}

.dashboard-side-card h3 {
  margin-bottom: 10px;
}

.dashboard-side-card p {
  color: var(--muted-text);
  font-size: 14px;
  line-height: 1.6;
}

.profile-settings-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 24px;
  align-items: end;
}

.profile-settings-card .eyebrow,
.profile-settings-card h3,
.profile-settings-card p,
.profile-settings-list {
  grid-column: 1;
}

.profile-settings-card .button {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: center;
}

.profile-settings-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-settings-list span {
  display: grid;
  gap: 3px;
  min-width: 150px;
  border: 1px solid var(--border);
  padding: 10px 12px;
  background: var(--background);
  color: var(--muted-text);
  font-size: 12px;
}

.profile-settings-list strong {
  color: var(--foreground);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dashboard-metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  background: var(--border);
}

.dashboard-metric-row div {
  padding: 16px;
  background: var(--background);
}

.dashboard-metric-row strong,
.dashboard-metric-row span {
  display: block;
}

.dashboard-metric-row strong {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
}

.dashboard-metric-row span {
  color: var(--muted-text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-insight-grid .insight-card {
  min-height: 220px;
}

.opportunity-org {
  margin: -4px 0 12px;
  color: var(--foreground) !important;
  font-weight: 600;
}

.opportunity-meta,
.opportunity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.opportunity-meta span,
.opportunity-tags span {
  border: 1px solid var(--border);
  padding: 6px 9px;
  color: var(--muted-text);
  background: rgba(247, 244, 237, 0.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer {
  color: #f7f4ed;
  background: var(--primary);
}

.footer-trust-bar {
  border-top: 1px solid var(--border);
  color: #f7f4ed;
  background: var(--primary);
}

.footer-trust-bar .container {
  padding-top: 28px;
  padding-bottom: 28px;
}

.footer-trust-bar p {
  margin: 0;
  color: rgba(247, 244, 237, 0.72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.footer-inner {
  padding-top: 64px;
  padding-bottom: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: clamp(36px, 5vw, 64px);
  margin-bottom: 56px;
}

.footer h4 {
  margin: 0 0 20px;
  color: rgba(247, 244, 237, 0.42);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.footer a,
.footer p {
  color: rgba(247, 244, 237, 0.62);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(247, 244, 237, 0.1);
  padding-top: 28px;
}

.footer-bottom p {
  color: rgba(247, 244, 237, 0.34);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.card,
.form-card,
.start-path-card,
.starter-resource-card,
.commons-topic-card,
.commons-resource-card,
.commons-collection-card,
.commons-trending-card,
.offer-card,
.vendor-benefit-grid .benefit,
.directory-app-header,
.category-quick-card,
.directory-category-group,
.biz-card,
.answer-resource-card,
.answer-opportunity-card,
.answer-official-links a,
.dashboard-action-card,
.dashboard-action-tile,
.dashboard-module,
.dashboard-side-card,
.dashboard-menu-card,
.dashboard-menu-links,
.dashboard-menu-cta,
.parent-dashboard-module,
.dashboard-now-card,
.dashboard-focus-card,
.dashboard-popular-card,
.dashboard-favorites-card,
.dashboard-moments-card,
.quad-resource-card,
.campus-card {
  box-shadow: var(--shadow-card);
}

.card:hover,
.start-path-card:hover,
.starter-resource-card:hover,
.commons-topic-card:hover,
.commons-trending-card:hover,
.offer-card:hover,
.vendor-benefit-grid .benefit:hover,
.category-quick-card:hover,
.biz-card:hover,
.dashboard-action-card:hover,
.dashboard-action-tile:hover,
.quad-resource-card:hover,
.campus-card:hover {
  box-shadow: var(--shadow-card-hover);
}

@media (max-width: 640px) {
  .floating-feedback-widget {
    right: 14px;
    bottom: 14px;
  }

  .floating-feedback-widget summary {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 10px;
  }

  .floating-feedback-card {
    right: -4px;
    bottom: 52px;
    width: calc(100vw - 28px);
    padding: 18px;
  }
}

@media (max-width: 1120px) {
  .comparison-row {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-heading {
    display: none;
  }

  .comparison-row span {
    border-top: 1px solid var(--border);
  }

  .comparison-row span:first-child {
    grid-column: 1 / -1;
    border-top: 0;
  }

  .header-search,
  .header-actions a.profile-link {
    display: none;
  }

  .card-grid,
  .tier-grid,
  .article-grid,
  .offer-grid,
  .ask-moment-grid,
  .start-path-grid,
  .starter-resource-grid,
  .starter-resource-grid.compact,
  .panel-grid.three,
  .panel-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .campus-grid,
  .directory-grid,
  .biz-grid,
  .quicklinks-grid,
  .calendar-links,
  .calendar-term-grid,
  .campaign-grid,
  .opportunity-grid,
  .welcome-family-grid,
  .welcome-moment-strip,
  .welcome-unlock-grid,
  .welcome-proof-row,
  .commons-topic-grid,
  .commons-download-grid,
  .commons-collection-grid,
  .commons-trending-grid,
  .answer-official-links,
  .answer-columns,
  .answer-resource-grid,
  .benefit-grid,
  .parent-perks-grid,
  .parent-value-strip-inner,
  .offers-hero-grid,
  .vendor-benefit-grid,
  .step-card-grid,
  .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .featured-perk-card {
    grid-column: span 2;
  }

  .nav-submenu {
    width: min(760px, calc(100vw - 48px));
    grid-template-columns: minmax(0, 1fr) 180px;
  }

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

@media (max-width: 980px) {
  .topbar {
    height: 64px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-actions,
  .nav-strip {
    display: none;
  }

  body.nav-open .nav-strip {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    border-top: 1px solid rgba(247, 244, 237, 0.1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.nav-open .nav-row {
    height: auto;
    min-height: calc(100dvh - 64px);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    justify-content: start;
    padding-block: 12px 28px;
  }

  body.nav-open .nav-row a {
    min-height: 44px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(247, 244, 237, 0.08);
  }

  body.nav-open .nav-item-wrap {
    height: auto;
    display: grid;
    align-items: stretch;
  }

  body.nav-open .nav-submenu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    min-width: 0;
    border: 0;
    padding: 0 0 10px 16px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  body.nav-open .nav-mega-columns {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.nav-open .nav-mega-column {
    gap: 2px;
  }

  body.nav-open .nav-mega-column p {
    margin-top: 10px;
    color: rgba(247, 244, 237, 0.92);
    font-size: 10px;
  }

  body.nav-open .nav-mega-helper {
    max-width: none;
    margin: 0 0 4px;
    color: rgba(247, 244, 237, 0.52);
    font-size: 11px;
    line-height: 1.45;
  }

  body.nav-open .nav-submenu a,
  body.nav-open .nav-mega-column a {
    min-height: 40px;
    padding: 10px 0;
    color: rgba(247, 244, 237, 0.68);
    background: transparent;
    font-size: 11px;
  }

  body.nav-open .nav-mega-feature {
    display: none;
  }

  main {
    padding-top: 64px;
  }

  .split-hero,
  .cause-hero,
  .cta-split,
  .feature-layout,
  .form-layout,
  .auth-shell,
  .welcome-onboarding-layout,
  .welcome-mat-hero-grid,
  .welcome-dashboard-grid,
  .pilot-welcome-layout,
  .welcome-settings-layout,
  .campus-hub-layout,
  .dashboard-hero,
  .dashboard-layout,
  .commons-hero-grid,
  .commons-ai-preview,
  .student-verified-layout,
  .quad-hero-grid,
  .quad-interest-layout,
  .family-connect-module,
  .checklist-hero-grid,
  .checklist-two-col,
  .ask-hero-grid,
  .ask-brain-panel,
  .feedback-layout,
  .offer-detail-layout,
  .bookstore-hero-grid,
  .ask-page,
  .profile-layout {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-media,
  .cause-hero-image,
  .hero-copy,
  .cause-hero-copy,
  .cta-split .split-media,
  .cta-split .split-copy {
    width: 100%;
  }

  .hero-copy,
  .cause-hero-copy,
  .split-copy {
    padding: 48px 28px;
  }

  .section-head,
  .footer-bottom,
  .action-band,
  .profile-head,
  .directory-app-header,
  .directory-access-gate,
  .calendar-head {
    align-items: start;
    flex-direction: column;
  }

  .action-band {
    display: flex;
  }

  .profile-stats {
    margin-left: 0;
  }

  .directory-access-gate {
    grid-template-columns: 1fr;
  }

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

  .number-grid,
  .footer-grid,
  .trust-foundation {
    grid-template-columns: 1fr;
  }

  .welcome-tools-panel {
    position: static;
  }

  .auth-register-shell > .auth-card,
  .auth-register-shell > .student-verified-card {
    grid-column: 1;
    grid-row: auto;
  }

  .auth-register-shell {
    border: 1px solid var(--border);
  }

  .auth-register-shell .auth-intro-card {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .auth-register-shell > .student-verified-card {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

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

  .pilot-value-strip span:nth-child(odd) {
    border-left: 0;
  }

  .dashboard-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-action-grid,
  .dashboard-card-grid,
  .dashboard-insight-grid,
  .dashboard-command-hero,
  .parent-dashboard-grid,
  .dashboard-layout,
  .parent-journey-strip,
  .founding-pilot-card,
  .quad-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .journey-map-track::before {
    display: none;
  }

  .dashboard-left-menu,
  .dashboard-sidebar {
    position: static;
  }

  .dashboard-left-menu {
    grid-column: 1 / -1;
    grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
    align-items: stretch;
  }

  .dashboard-main,
  .dashboard-sidebar {
    grid-column: 1 / -1;
  }

  .dashboard-menu-links {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .dashboard-menu-links a {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .dashboard-menu-links a > span {
    grid-row: auto;
  }

  .dashboard-menu-cta {
    grid-column: 1 / -1;
  }

  .dashboard-now-card,
  .dashboard-action-lane {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-update-row {
    grid-template-columns: 1fr;
  }

  .quad-hero-grid {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .checklist-hero-grid {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .checklist-hero-media {
    min-height: auto;
  }

  .checklist-hero-media img {
    height: 360px;
  }

  .checklist-floating-note {
    left: 24px;
    right: 24px;
    bottom: 24px;
    max-width: none;
  }

  .checklist-phase-grid,
  .checklist-section-grid,
  .checklist-image-band {
    grid-template-columns: 1fr;
  }

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

  .bookstore-hero-grid {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .bookstore-feature img {
    min-height: 360px;
  }

  .checklist-image-band img,
  .checklist-image-band img:nth-child(2) {
    min-height: 260px;
    border-radius: 0;
    aspect-ratio: auto;
  }

  .welcome-mat-hero-grid {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .welcome-family-grid,
  .welcome-moment-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .welcome-moment-card div {
    min-height: 160px;
  }

  .welcome-hero-panel {
    max-width: 640px;
  }

  .commons-hero-grid {
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .commons-hero-media {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .topbar,
  .nav-row,
  .footer-inner,
  .container {
    padding-inline: 22px;
  }

  .feedback-copy-card {
    min-height: auto;
    padding: 22px;
  }

  .feedback-card .form-row {
    grid-template-columns: 1fr;
  }

  .brand {
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  h1 {
    font-size: clamp(38px, 11vw, 50px);
  }

  h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  h3 {
    font-size: 20px;
  }

  .section {
    padding: 48px 0;
  }

  .simple-hero {
    padding: 48px 0;
  }

  .section-head {
    gap: 16px;
    margin-bottom: 28px;
  }

  .actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .actions .button,
  .actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .text-link {
    min-height: 40px;
    align-items: center;
    padding-bottom: 0;
  }

  .chip,
  .ask-topic-row a,
  .ask-example-row button,
  .commons-suggestions a,
  .commons-topic-card summary,
  .commons-topic-card a,
  .journey-link-stack a,
  .footer a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
  }

  .footer ul {
    gap: 4px;
  }

  .footer-inner {
    padding-top: 44px;
    padding-bottom: 28px;
  }

  .footer-grid {
    gap: 28px;
    margin-bottom: 36px;
  }

  .commons-orbit {
    display: none;
  }

  .bookmark-button {
    width: 42px;
    height: 42px;
  }

  input,
  select,
  textarea {
    min-height: 44px;
  }

  input[type="checkbox"],
  input[type="radio"],
  .school-check input {
    min-height: 0;
  }

  textarea {
    min-height: 112px;
  }

  .card-grid,
  .tier-grid,
  .article-grid,
  .offer-grid,
  .ask-moment-grid,
  .start-path-grid,
  .starter-resource-grid,
  .starter-resource-grid.compact,
  .panel-grid.three,
  .panel-grid.four,
  .campus-grid,
  .compact-campus-grid,
  .directory-grid,
  .biz-grid,
  .quicklinks-grid,
  .calendar-links,
  .calendar-term-grid,
  .campaign-grid,
  .opportunity-grid,
  .welcome-family-grid,
  .welcome-moment-strip,
  .welcome-unlock-grid,
  .welcome-proof-row,
  .welcome-future-note > div,
  .commons-topic-grid,
  .commons-download-grid,
  .commons-collection-grid,
  .commons-trending-grid,
  .commons-ai-preview,
  .answer-official-links,
  .answer-columns,
  .answer-resource-grid,
  .answer-opportunity-list,
  .mcp-agent-grid,
  .feedback-layout,
  .cause-stats,
  .benefit-grid,
  .parent-perks-grid,
  .parent-value-strip-inner,
  .offers-hero-grid,
  .vendor-benefit-grid,
  .benefit-list-grid,
  .comparison-card,
  .comparison-grid,
  .welcome-recommendation-grid,
  .pilot-welcome-grid,
  .welcome-preview-list,
  .welcome-perk-list,
  .download-grid,
  .interest-grid,
  .school-checkbox-grid,
  .funnel-inbox-grid,
  .funnel-recent-list,
  .pilot-value-strip,
  .welcome-settings-layout,
  .campus-tool-grid,
  .campus-hub-stats,
  .dashboard-command-hero,
  .dashboard-now-card,
  .dashboard-update-row,
  .dashboard-action-lane,
  .parent-dashboard-grid,
  .popular-resource-links,
  .dashboard-action-grid,
  .dashboard-card-grid,
  .dashboard-insight-grid,
  .dashboard-module.two-col,
  .journey-map-track,
  .dashboard-layout,
  .dashboard-sidebar,
  .dashboard-left-menu,
  .dashboard-menu-links,
  .checklist-phase-grid,
  .checklist-section-grid,
  .checklist-image-band,
  .checklist-two-col,
  .bookstore-category-grid,
  .bookstore-product-grid,
  .quad-resource-grid,
  .quad-signal-list,
  .family-share-grid,
  .feature-grid,
  .signal-list,
  .stat-grid,
  .step-card-grid,
  .choice-grid,
  .form-row,
  .resource-item {
    grid-template-columns: 1fr;
  }

  .featured-perk-card {
    grid-column: span 1;
  }

  .welcome-mat-copy h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .welcome-mat-copy .lede,
  .welcome-signup-story .lede {
    font-size: 16px;
  }

  .welcome-family-card div,
  .welcome-moment-card div {
    min-height: auto;
    padding: 20px;
  }

  .welcome-family-card h3,
  .welcome-moment-card h3 {
    font-size: 22px;
  }

  .parent-value-strip div div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .parent-perk-card {
    min-height: auto;
  }

  .offer-category-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-offer-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-offer-links {
    justify-content: flex-start;
  }

  .offer-category-panel .offer-grid {
    padding: 16px;
  }

  .profile-settings-card {
    grid-template-columns: 1fr;
  }

  .profile-settings-card .button,
  .profile-settings-card .eyebrow,
  .profile-settings-card h3,
  .profile-settings-card p,
  .profile-settings-list {
    grid-column: 1;
    grid-row: auto;
  }

  .profile-settings-card .button {
    justify-self: start;
  }

  .pilot-value-strip span {
    border-left: 0;
    border-top: 1px solid rgba(198, 154, 57, 0.24);
  }

  .pilot-value-strip span:first-child {
    border-top: 0;
  }

  .journey-stop {
    min-height: auto;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--border);
    background: #ffffff;
    text-align: left;
  }

  .journey-dot {
    width: 54px;
    height: 54px;
    border-width: 7px;
    font-size: 23px;
  }

  .journey-stop small {
    max-width: none;
  }

  .journey-map-note {
    flex-direction: column;
  }

  .auth-shell {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 32px 22px;
    row-gap: 20px;
  }

  .auth-register-shell {
    width: calc(100% - 44px);
    padding: 0;
    margin: 32px auto;
    row-gap: 0;
  }

  .auth-intro-card {
    min-height: auto;
    border-right: 1px solid var(--border);
    padding: 26px;
  }

  .auth-path-list {
    grid-template-columns: 1fr;
  }

  .auth-shell > .auth-card {
    border-left: 1px solid var(--border);
    border-top: 0;
    padding: 26px;
  }

  .auth-register-shell .auth-intro-card,
  .auth-register-shell > .auth-card,
  .auth-register-shell > .student-verified-card {
    border-left: 0;
    border-right: 0;
  }

  .auth-register-shell > .student-verified-card {
    grid-column: 1;
    justify-self: stretch;
    width: 100%;
  }

  .ask-inline,
  .ask-search,
  .commons-search,
  .campus-finder,
  .directory-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .dir-controls {
    grid-template-columns: 1fr;
  }

  .dir-controls [data-collapse-all] {
    grid-column: auto;
    justify-self: stretch;
  }

  .dir-controls .favorites-filter,
  .dir-controls .show-all-categories {
    justify-self: stretch;
    width: 100%;
  }

  .ask-inline .search-icon,
  .ask-search .search-icon {
    display: none;
  }

  .ask-inline input,
  .ask-inline button,
  .ask-search input,
  .ask-search button,
  .commons-search input,
  .commons-search button,
  .campus-finder .button {
    width: 100%;
  }

  .commons-hero-copy h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .welcome-mat-copy h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .welcome-proof-row div {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .welcome-proof-row div:first-child {
    border-top: 0;
  }

  .welcome-premium-form {
    padding: 24px;
  }

  .commons-hero-media {
    min-height: 280px;
  }

  .cause-hero,
  .cause-hero-image {
    min-height: auto;
  }

  .cause-hero-image {
    height: 320px;
  }

  .campaign-card {
    min-height: 0;
  }

  .calendar-term li {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

/* Parent Dashboard compact card cleanup */
.dashboard-command-hero {
  align-items: stretch;
}

.dashboard-now-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-content: start;
  min-height: 0;
  color: var(--foreground);
  background: #ffffff;
}

.dashboard-now-card::after {
  width: 150px;
  height: 150px;
  right: -54px;
  bottom: -54px;
  border-color: rgba(198, 154, 57, 0.22);
}

.dashboard-now-card .eyebrow,
.dashboard-now-card span {
  color: var(--muted-text);
}

.dashboard-now-card > div:first-child {
  position: relative;
  z-index: 1;
}

.dashboard-update-row {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-update-row a {
  min-height: 92px;
  color: var(--foreground);
  background: #fffaf0;
  border-color: rgba(198, 154, 57, 0.32);
  backdrop-filter: none;
}

.dashboard-update-row a:hover {
  background: #fff4dd;
}

.dashboard-now-card strong {
  color: var(--danger);
  font-size: 34px;
}

@media (max-width: 720px) {
  .dashboard-update-row {
    grid-template-columns: 1fr;
  }
}

/* Alignment polish for register and campaign cards */
.auth-register-shell {
  grid-template-columns: minmax(360px, 0.78fr) minmax(460px, 1fr);
}

.auth-register-shell > .auth-card,
.auth-register-shell > .student-verified-card {
  min-width: 0;
}

.auth-register-shell .form-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.auth-register-shell .form-card label,
.auth-register-shell .form-card input,
.auth-register-shell .form-card select {
  min-width: 0;
}

.auth-register-shell .form-card input,
.auth-register-shell .form-card select {
  width: 100%;
}

.campaign-card {
  display: grid;
  grid-template-rows: auto auto minmax(72px, 1fr) auto auto auto;
  align-content: stretch;
}

.campaign-card h3,
.campaign-card p {
  min-width: 0;
}

.campaign-card > p:not(.campaign-backers):not(.stripe-status) {
  margin-bottom: 0;
}

.campaign-card .fund-row {
  align-self: end;
}

.campaign-actions {
  display: grid;
  grid-template-columns: minmax(0, max-content) minmax(180px, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}

.campaign-actions .stripe-status {
  margin: 0 !important;
  white-space: nowrap;
}

.campaign-actions .button {
  width: 100%;
  min-height: 50px;
  justify-content: center;
  padding-inline: 18px;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .auth-register-shell {
    grid-template-columns: 1fr;
  }

  .campaign-actions {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .campaign-actions .stripe-status {
    justify-content: center;
    width: 100%;
    white-space: normal;
  }
}

@media (max-width: 720px) {
  .auth-register-shell .form-row {
    grid-template-columns: 1fr;
  }
}

/* Dashboard section controls and settings alignment */
.dashboard-module-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.dashboard-hide-toggle {
  min-height: 28px;
  border: 1px solid rgba(198, 154, 57, 0.38);
  padding: 6px 10px;
  color: var(--foreground);
  background: #fffaf0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.dashboard-hide-toggle:hover {
  background: #fff4dd;
}

[data-dashboard-collapsible][data-collapsed="true"] {
  padding-bottom: 20px;
}

[data-dashboard-collapsible][data-collapsed="true"] .dashboard-module-head {
  margin-bottom: 0;
}

[data-dashboard-collapsible][data-collapsed="true"] [data-dashboard-module-body] {
  display: none !important;
}

.welcome-settings-layout {
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 0.72fr);
  gap: 26px;
}

.welcome-settings-copy {
  align-self: start;
  padding: 24px;
}

.welcome-settings-copy h3 {
  max-width: 260px;
  line-height: 1.15;
}

.welcome-settings-form .form-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.welcome-settings-form input,
.welcome-settings-form select {
  min-height: 46px;
}

.welcome-settings-form select {
  padding-right: 34px;
}

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

.family-connect-module {
  display: block;
  padding: 28px;
  background: #ffffff;
}

.family-connect-module .dashboard-module-head {
  margin-bottom: 18px;
}

.family-connect-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: 1px;
  background: var(--border);
}

.family-connect-copy,
.family-invite-card {
  min-width: 0;
}

.family-connect-copy {
  padding: 28px;
}

.family-invite-card {
  padding: 28px;
}

@media (max-width: 980px) {
  .dashboard-module-head {
    align-items: flex-start;
  }

  .welcome-settings-layout,
  .family-connect-body {
    grid-template-columns: 1fr;
  }

  .welcome-settings-copy h3 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .dashboard-module-head {
    flex-direction: column;
  }

  .dashboard-module-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .welcome-settings-form .form-row,
  .school-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .official-campus-resources {
    padding: 16px;
  }

  .official-campus-resources-head,
  .official-campus-resource-grid {
    grid-template-columns: 1fr;
  }
}

.interest-chip input,
.welcome-settings-form input[type="checkbox"],
.welcome-settings-form input[type="radio"],
.school-check input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 0;
  padding: 0;
}

.interest-chip input {
  width: 1px;
  min-width: 1px;
  height: 1px;
}

@media (max-width: 980px) {
  .directory-hero-inner,
  .official-campus-resources-head,
  .community-business-head,
  .directory-module-grid {
    grid-template-columns: 1fr;
  }

  .community-context {
    top: 72px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dir-controls {
    top: 190px;
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .directory-page-hero {
    padding-top: 42px;
  }

  .directory-hero-context,
  .community-context {
    border-radius: 16px;
  }

  .community-context {
    top: 64px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    overflow-x: auto;
  }

  .community-context div {
    min-width: 148px;
    padding: 11px;
  }

  .official-campus-resources {
    padding: 0;
  }

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

  .official-campus-resource-card {
    min-height: 160px;
    grid-template-columns: 1fr;
    align-content: start;
    padding: 12px;
  }

  .official-campus-resource-card h3 {
    font-size: 14px;
  }

  .official-campus-resource-card p:not(.official-campus-resource-category) {
    font-size: 12px;
  }

  .quicklinks-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .category-quick-card {
    min-width: 148px;
  }

  .dir-controls {
    top: 178px;
    grid-template-columns: 1fr;
    max-height: calc(100dvh - 190px);
    overflow: auto;
  }

  .directory-module-grid {
    grid-template-columns: 1fr;
  }
}

/* Campus Directory calm redesign */
.directory-page {
  --directory-font: var(--font-sans);
  --directory-ink: #111827;
  --directory-muted: #667085;
  --directory-soft: #f7f8fb;
  --directory-line: rgba(17, 24, 39, 0.08);
  --directory-card-shadow: 0 12px 34px rgba(17, 24, 39, 0.07);
  --directory-title: clamp(46px, 6vw, 72px);
  --directory-section-title: clamp(26px, 3vw, 34px);
  --directory-card-title: 18px;
  --directory-body: 15px;
  --directory-label: 11px;
  color: var(--directory-ink);
  font-family: var(--directory-font);
}

.directory-hero {
  padding: clamp(56px, 7vw, 88px) 0 38px;
  background: #ffffff;
}

.directory-hero-inner {
  max-width: 1120px;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: end;
}

.directory-hero-inner h1 {
  margin: 6px 0 14px;
  color: var(--directory-ink);
  font-family: var(--directory-font);
  font-size: var(--directory-title);
  font-weight: 760;
  line-height: 1;
}

.directory-hero-inner p {
  max-width: 660px;
  color: var(--directory-muted);
  font-family: var(--directory-font);
  font-size: 18px;
  line-height: 1.6;
}

.directory-kicker,
.directory-page .eyebrow,
.directory-label {
  color: var(--directory-muted) !important;
  font-family: var(--directory-font);
  font-size: var(--directory-label) !important;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.directory-hero-context {
  gap: 0;
  border: 1px solid var(--directory-line);
  border-radius: 16px;
  padding: 0;
  background: #ffffff;
  box-shadow: var(--directory-card-shadow);
  backdrop-filter: none;
}

.directory-hero-context div {
  border: 0;
  border-radius: 0;
  padding: 18px;
  box-shadow: none;
}

.directory-hero-context div + div {
  border-top: 1px solid var(--directory-line);
}

.directory-hero-context strong,
.community-context strong {
  color: var(--directory-ink);
  font-size: 15px;
  font-weight: 700;
}

.directory-page-section {
  padding-top: 0;
  background: var(--directory-soft);
}

.directory-page-section > .container {
  max-width: 1120px;
}

.directory-school-tabs {
  width: fit-content;
  display: inline-flex;
  gap: 4px;
  margin: 0 0 22px;
  border: 1px solid var(--directory-line);
  border-radius: 999px;
  padding: 4px;
  background: #ffffff;
}

.directory-school-tabs a {
  min-width: 72px;
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--directory-muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.directory-school-tabs a.active {
  color: var(--directory-ink);
  background: #f0f2f5;
}

.directory-page .directory-tabs {
  display: none;
}

.directory-page .community-context {
  position: static;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 46px;
  border: 1px solid var(--directory-line);
  border-radius: 18px;
  padding: 0;
  background: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
}

.directory-page .community-context div {
  border: 0;
  border-radius: 0;
  padding: 18px;
}

.directory-page .community-context div + div {
  border-left: 1px solid var(--directory-line);
}

.directory-page .official-campus-resources,
.directory-page .community-business-section {
  margin: 0 0 58px;
}

.directory-page .official-campus-resources-head,
.directory-page .community-business-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  margin-bottom: 22px;
}

.directory-page .official-campus-resources-head h2,
.directory-page .community-business-head h2 {
  margin: 4px 0 8px;
  color: var(--directory-ink);
  font-family: var(--directory-font);
  font-size: var(--directory-section-title);
  font-weight: 740;
  line-height: 1.15;
}

.directory-page .official-campus-resources-head p,
.directory-page .community-business-head p,
.directory-page .biz-description,
.directory-page .directory-count {
  color: var(--directory-muted) !important;
  font-size: var(--directory-body) !important;
  line-height: 1.62;
}

.directory-page .official-campus-resource-filter {
  min-width: 220px;
}

.directory-page .official-campus-resource-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.directory-page .official-campus-resource-card {
  min-height: 148px;
  display: grid;
  grid-template-columns: 1fr;
  border: 0;
  border-radius: 14px;
  padding: 18px;
  background: #ffffff;
  box-shadow: var(--directory-card-shadow);
}

.directory-page .official-campus-resource-icon,
.directory-page .official-campus-resource-group,
.directory-page .official-campus-resource-badges {
  display: none;
}

.directory-page .official-campus-resource-card h3 {
  color: var(--directory-ink);
  font-family: var(--directory-font);
  font-size: 15px;
  font-weight: 740;
  line-height: 1.25;
}

.directory-page .official-campus-resource-category {
  margin: 8px 0 6px;
  color: var(--directory-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.directory-page .official-link-indicator {
  color: var(--directory-muted);
}

.official-resource-toggle {
  min-height: 148px;
  border: 1px dashed var(--directory-line);
  border-radius: 14px;
  color: var(--directory-ink);
  background: transparent;
  font-size: 14px;
  font-weight: 740;
}

.directory-page .community-business-head .directory-side-actions {
  display: none;
}

.directory-page .quicklinks-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.directory-page .category-quick-card {
  min-height: 40px;
  min-width: auto;
  display: inline-flex;
  gap: 8px;
  border: 1px solid var(--directory-line);
  border-radius: 999px;
  padding: 8px 13px;
  background: #ffffff;
  box-shadow: none;
}

.directory-page .category-quick-card.active,
.directory-page .category-quick-card:hover {
  transform: none;
  border-color: rgba(17, 24, 39, 0.2);
  box-shadow: none;
}

.directory-page .category-quick-icon {
  display: none;
}

.directory-page .category-quick-name,
.directory-page .category-quick-count {
  color: var(--directory-ink);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
}

.directory-page .dir-controls {
  position: static;
  grid-template-columns: minmax(260px, 1.5fr) minmax(170px, 0.7fr) minmax(170px, 0.7fr);
  gap: 10px;
  margin-bottom: 16px;
  border: 0;
  border-radius: 16px;
  padding: 14px;
  background: #ffffff;
  box-shadow: none;
}

.directory-page .school-filter-control,
.directory-page .favorites-filter,
.directory-page .show-all-categories,
.directory-page [data-collapse-all] {
  display: none;
}

.directory-page .dir-controls input,
.directory-page .dir-controls select,
.directory-page .official-campus-resource-filter select {
  min-height: 46px;
  border: 1px solid var(--directory-line);
  border-radius: 12px;
  color: var(--directory-ink);
  font-size: 14px;
  box-shadow: none;
}

.directory-page .listing-directory {
  gap: 18px;
}

.directory-page .cat-header-row {
  border: 0;
  border-radius: 14px;
  color: var(--directory-ink);
  background: #ffffff;
  box-shadow: none;
}

.directory-page .cat-icon,
.directory-page .subcategory-row,
.directory-page .category-offer-strip {
  display: none;
}

.directory-page .cat-header-row h3,
.directory-page .cat-title h3,
.directory-page .cat-title p,
.directory-page .cat-header-row,
.directory-page .cat-header-row * {
  color: var(--directory-ink);
  font-family: var(--directory-font);
}

.directory-page .cat-header-row h3 {
  padding: 16px 18px 3px;
  font-size: 18px;
  font-weight: 740;
}

.directory-page .cat-header-row p {
  padding: 0 18px 16px;
  color: var(--directory-muted);
  font-size: 13px;
}

.directory-page .cat-header-action {
  margin-right: 16px;
  color: var(--directory-muted);
  background: #f6f7f9;
}

.directory-page .biz-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 18px 0 0;
}

.directory-page .biz-card {
  min-height: 280px;
  align-content: start;
  gap: 14px;
  border: 0;
  border-radius: 16px;
  padding: 20px;
  background: #ffffff;
  box-shadow: var(--directory-card-shadow);
}

.directory-page .biz-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.1);
}

.directory-page .biz-card-head {
  display: block;
}

.directory-page .biz-campus {
  margin: 0 0 8px;
  color: var(--directory-muted);
  font-size: var(--directory-label);
  font-weight: 740;
  letter-spacing: 0.06em;
}

.directory-page .biz-card h4 {
  color: var(--directory-ink);
  font-family: var(--directory-font);
  font-size: var(--directory-card-title);
  font-weight: 740;
  line-height: 1.28;
}

.directory-page .biz-detail-list {
  gap: 5px;
  margin: 0;
}

.directory-page .biz-detail-list p,
.directory-page .biz-detail-list a {
  display: block;
  color: var(--directory-muted);
  font-size: 13px;
}

.directory-page .biz-detail-list span {
  display: none;
}

.directory-page .biz-actions {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
}

.directory-page .biz-action {
  border: 1px solid var(--directory-line);
  border-radius: 10px;
  padding: 9px 12px;
  color: var(--directory-ink);
  background: #ffffff;
  font-size: 13px;
  font-weight: 720;
}

.directory-page .biz-action.primary {
  border-color: transparent;
  color: #ffffff;
  background: var(--directory-ink);
}

.directory-page .biz-status,
.directory-page .biz-meta,
.directory-page .quick-feedback-actions,
.directory-page .biz-card-media,
.directory-page .biz-rating-row {
  display: none;
}

@media (max-width: 980px) {
  .directory-hero-inner {
    grid-template-columns: 1fr;
  }

  .directory-page .community-context,
  .directory-page .official-campus-resource-grid,
  .directory-page .biz-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .directory-page .dir-controls {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .directory-hero {
    padding-top: 42px;
  }

  .directory-hero-inner h1 {
    font-size: 44px;
  }

  .directory-page .community-context,
  .directory-page .official-campus-resource-grid,
  .directory-page .biz-grid {
    grid-template-columns: 1fr;
  }

  .directory-page .community-context div + div {
    border-left: 0;
    border-top: 1px solid var(--directory-line);
  }

  .directory-school-tabs {
    width: 100%;
  }

  .directory-school-tabs a {
    flex: 1;
  }

  .directory-page .quicklinks-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .directory-page .category-quick-card {
    flex: 0 0 auto;
  }
}

.directory-page .subcategory-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 0;
  border-top: 1px solid var(--directory-line);
  padding: 12px 18px;
  background: #ffffff;
}

.directory-page .subcategory-row button {
  border: 1px solid var(--directory-line);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--directory-muted);
  background: #ffffff;
  font-family: var(--directory-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.directory-page .subcategory-row button:hover {
  border-color: rgba(17, 24, 39, 0.2);
  color: var(--directory-ink);
  background: #f7f8fb;
}

/* Directory category polish: real separators, visible icons, compact calendar */
.directory-page .directory-calendar-first {
  margin: -22px 0 46px;
}

.directory-page .directory-calendar-first .calendar-directory {
  border: 1px solid var(--directory-line);
  border-radius: 18px;
  padding: 18px;
  background: #ffffff;
  box-shadow: var(--directory-card-shadow);
}

.directory-page .directory-calendar-first .calendar-head {
  margin-bottom: 14px;
  border-radius: 14px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.06), rgba(12, 35, 75, 0.04));
  box-shadow: none;
}

.directory-page .directory-calendar-first .calendar-head h2 {
  font-size: clamp(22px, 2vw, 30px);
}

.directory-page .directory-calendar-first .calendar-links {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.directory-page .directory-calendar-first .calendar-links a {
  min-height: 54px;
  border-left-width: 4px;
  border-radius: 12px;
  box-shadow: none;
}

.directory-page .directory-calendar-first .calendar-year {
  border: 1px solid var(--directory-line);
  border-radius: 14px;
  box-shadow: none;
}

.directory-page .directory-calendar-first .calendar-year h3 {
  color: #8b0000;
  background: #fff7ed;
}

.directory-page .category-quick-card {
  border-left: 4px solid var(--category-color, #8b0000);
}

.directory-page .category-quick-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--category-color, #8b0000) 11%, #ffffff);
  font-size: 14px;
}

.directory-page .directory-category-group {
  overflow: hidden;
  border: 1px solid var(--directory-line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--directory-card-shadow);
}

.directory-page .cat-header-row {
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--category-color, #8b0000) 13%, #ffffff), #ffffff 58%);
}

.directory-page .cat-icon {
  display: grid;
  width: 62px;
  place-items: center;
  color: var(--category-color, #8b0000);
  background: color-mix(in srgb, var(--category-color, #8b0000) 14%, #ffffff);
  font-size: 28px;
}

.directory-page .directory-category-group.collapsed .cat-header-row {
  border-radius: 18px;
}

.directory-page .cat-header-action {
  color: var(--category-color, #8b0000);
  background: #ffffff;
}

.directory-subcategory-section {
  border-top: 1px solid var(--directory-line);
  padding: 18px;
  background: #ffffff;
}

.directory-subcategory-section + .directory-subcategory-section {
  border-top-style: dashed;
}

.directory-subcategory-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid color-mix(in srgb, var(--category-color, #8b0000) 18%, #ffffff);
}

.directory-subcategory-heading span {
  color: var(--directory-ink);
  font-size: 14px;
  font-weight: 780;
}

.directory-subcategory-heading small {
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--category-color, #8b0000);
  background: color-mix(in srgb, var(--category-color, #8b0000) 9%, #ffffff);
  font-size: 11px;
  font-weight: 760;
}

.directory-page .directory-subcategory-section .biz-grid {
  padding: 0;
}

.directory-page .biz-card {
  border: 1px solid var(--directory-line);
  border-top: 4px solid color-mix(in srgb, var(--category-color, #8b0000) 40%, #ffffff);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.directory-page .biz-card:hover {
  border-color: color-mix(in srgb, var(--category-color, #8b0000) 28%, #ffffff);
}

@media (max-width: 980px) {
  .directory-page .directory-calendar-first .calendar-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .directory-page .directory-calendar-first {
    margin: -18px 0 34px;
  }

  .directory-page .directory-calendar-first .calendar-head {
    display: grid;
    padding: 16px;
  }

  .directory-page .directory-calendar-first .calendar-links,
  .directory-page .directory-calendar-first .calendar-term-grid {
    grid-template-columns: 1fr;
  }

  .directory-page .cat-icon {
    width: 50px;
    font-size: 22px;
  }

  .directory-subcategory-section {
    padding: 14px;
  }
}

/* Campus Directory Phase 1 Design System */
.directory-page {
  --mcp-navy: #071b3a;
  --mcp-navy-2: #102b53;
  --mcp-maroon: #9f171f;
  --mcp-gold: #c89b3c;
  --mcp-ink: #101828;
  --mcp-muted: #667085;
  --mcp-subtle: #eef3f8;
  --mcp-warm: #fbf8f3;
  --mcp-surface: rgba(255, 255, 255, 0.86);
  --mcp-line: rgba(7, 27, 58, 0.1);
  --mcp-shadow-sm: 0 8px 20px rgba(16, 24, 40, 0.06);
  --mcp-shadow-md: 0 18px 54px rgba(16, 24, 40, 0.1);
  --mcp-radius: 24px;
  --mcp-radius-sm: 16px;
  --directory-ink: var(--mcp-ink);
  --directory-muted: var(--mcp-muted);
  --directory-soft: linear-gradient(180deg, #f7f9fc 0%, #fbf8f3 48%, #ffffff 100%);
  --directory-line: var(--mcp-line);
  --directory-card-shadow: var(--mcp-shadow-sm);
  --directory-title: clamp(44px, 5.8vw, 74px);
  --directory-section-title: clamp(26px, 3.1vw, 40px);
  --directory-card-title: 18px;
}

.directory-hero.mcp-campus-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 128px) 0 clamp(84px, 8vw, 118px);
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 22%, rgba(200, 155, 60, 0.26), transparent 28%),
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.16), transparent 22%),
    linear-gradient(135deg, #06172f 0%, #0c234b 58%, #153861 100%);
}

.directory-hero.mcp-campus-shell::after {
  content: "";
  position: absolute;
  inset: auto -8% -46% 42%;
  height: 78%;
  border-radius: 999px 0 0 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
  transform: rotate(-7deg);
  pointer-events: none;
}

.directory-hero.mcp-campus-shell .directory-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.directory-hero.mcp-campus-shell .directory-kicker {
  color: rgba(255, 255, 255, 0.72) !important;
}

.directory-hero.mcp-campus-shell h1 {
  max-width: 760px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.96;
}

.directory-hero.mcp-campus-shell p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.9vw, 22px);
}

.directory-hero.mcp-campus-shell .directory-hero-context {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--mcp-radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.directory-hero.mcp-campus-shell .directory-hero-context div {
  padding: 24px;
}

.directory-hero.mcp-campus-shell .directory-hero-context div + div {
  border-top: 1px solid rgba(7, 27, 58, 0.1);
}

.directory-hero.mcp-campus-shell .directory-hero-context span {
  color: var(--mcp-muted);
}

.directory-hero.mcp-campus-shell .directory-hero-context strong {
  color: var(--mcp-navy);
  font-size: 17px;
}

.directory-page-section {
  margin-top: -54px;
  padding-bottom: 90px;
}

.directory-page-section > .container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
}

.directory-school-tabs {
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--mcp-shadow-sm);
  backdrop-filter: blur(14px);
}

.directory-school-tabs a.active {
  color: #ffffff;
  background: var(--mcp-navy);
}

.directory-app {
  display: grid;
  gap: 34px;
}

.directory-page .community-context {
  margin: 0;
  border-radius: var(--mcp-radius);
  background: var(--mcp-surface);
  box-shadow: var(--mcp-shadow-md);
  backdrop-filter: blur(18px);
}

.directory-page .community-context div {
  padding: 22px 24px;
}

.mcp-directory-panel,
.directory-page .official-campus-resources,
.directory-page .community-business-section,
.directory-page .directory-calendar-first .calendar-directory,
.directory-page .listing-directory,
.student-deals-section,
.submit-resource-section {
  border: 1px solid var(--mcp-line);
  border-radius: var(--mcp-radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--mcp-shadow-sm);
}

.mcp-directory-panel,
.directory-page .official-campus-resources,
.directory-page .community-business-section {
  padding: clamp(22px, 3vw, 34px);
}

.mcp-directory-section-head,
.directory-page .official-campus-resources-head,
.directory-page .community-business-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  gap: 24px;
  align-items: end;
  margin: 0 0 24px;
}

.mcp-directory-section-head h2,
.directory-page .official-campus-resources-head h2,
.directory-page .community-business-head h2 {
  margin: 6px 0 0;
  color: var(--mcp-navy);
  font-family: var(--font-sans);
  font-size: var(--directory-section-title);
  font-weight: 600;
  line-height: 1.04;
}

.mcp-directory-section-head > p,
.directory-page .official-campus-resources-head p,
.directory-page .community-business-head p {
  max-width: 440px;
  justify-self: end;
  margin: 0;
  color: var(--mcp-muted) !important;
  font-size: 14px !important;
  line-height: 1.65;
}

.campus-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.campus-quick-card {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid var(--mcp-line);
  border-radius: var(--mcp-radius-sm);
  padding: 18px;
  color: var(--mcp-navy);
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.campus-quick-card:hover {
  transform: translateY(-2px);
  border-color: rgba(159, 23, 31, 0.24);
  box-shadow: var(--mcp-shadow-sm);
}

.campus-quick-card span {
  color: var(--mcp-navy);
  font-size: 15px;
  font-weight: 760;
}

.campus-quick-card small {
  color: var(--mcp-muted);
  font-size: 13px;
  line-height: 1.45;
}

.directory-page .directory-calendar-first {
  margin: 0;
}

.directory-page .directory-calendar-first .calendar-directory {
  padding: clamp(24px, 3vw, 36px);
}

.directory-page .directory-calendar-first .calendar-head {
  padding: 0;
  background: transparent;
}

.directory-page .directory-calendar-first .calendar-head h2 {
  color: var(--mcp-navy);
  font-family: var(--font-sans);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
}

.directory-page .calendar-links a {
  border-color: var(--mcp-line);
  border-left: 0;
  border-radius: 15px;
  color: var(--mcp-navy);
  background: #ffffff;
}

.calendar-year-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 18px;
}

.calendar-year-tabs button {
  min-height: 44px;
  border: 1px solid rgba(7, 27, 58, 0.14);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--mcp-navy);
  background: #ffffff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.calendar-year-tabs button:hover {
  transform: translateY(-1px);
  border-color: rgba(159, 23, 31, 0.28);
}

.calendar-year-tabs button.active {
  border-color: var(--mcp-maroon);
  color: #ffffff;
  background: var(--mcp-maroon);
}

.directory-page .directory-calendar-first .calendar-year {
  border-color: rgba(159, 23, 31, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffefe, #fffaf8);
}

.directory-page .directory-calendar-first .calendar-year h3 {
  color: var(--mcp-maroon);
  background: transparent;
}

.directory-page .calendar-term {
  border-color: rgba(7, 27, 58, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.directory-page .calendar-term h4 {
  color: var(--mcp-navy);
}

.directory-page .calendar-term li span {
  color: var(--mcp-maroon);
}

.directory-page .calendar-year[hidden] {
  display: none !important;
}

.directory-page .official-campus-resource-grid,
.featured-partner-grid,
.student-deals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.directory-page .official-campus-resource-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.directory-page .official-campus-resource-card,
.directory-partner-card,
.directory-deal-card {
  border: 1px solid var(--mcp-line);
  border-radius: var(--mcp-radius-sm);
  padding: 18px;
  background: #ffffff;
  box-shadow: none;
}

.directory-page .official-campus-resource-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
}

.directory-page .official-campus-resource-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--mcp-maroon);
  background: linear-gradient(135deg, rgba(159, 23, 31, 0.12), rgba(200, 155, 60, 0.12));
  font-size: 17px;
}

.directory-page .official-campus-resource-card:hover,
.directory-partner-card:hover,
.directory-deal-card:hover {
  border-color: rgba(7, 27, 58, 0.18);
  box-shadow: var(--mcp-shadow-sm);
}

.directory-partner-card h3,
.directory-deal-card h3 {
  margin: 8px 0 10px;
  color: var(--mcp-navy);
  font-size: 18px;
  line-height: 1.25;
}

.directory-partner-card p,
.directory-deal-card p {
  color: var(--mcp-muted);
  font-size: 13px;
  line-height: 1.6;
}

.directory-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--mcp-maroon);
  font-size: 13px;
  font-weight: 760;
}

.directory-page .community-business-section {
  margin-bottom: -12px;
}

.directory-page .quicklinks-grid {
  gap: 10px;
  margin: 0;
  padding: 0 4px;
}

.directory-page .category-quick-card {
  border-radius: 999px;
  border-left-width: 1px;
  padding: 9px 14px;
}

.directory-page .category-quick-icon {
  display: none;
}

.directory-page .dir-controls {
  margin: -14px 0 0;
  border: 1px solid var(--mcp-line);
  box-shadow: var(--mcp-shadow-sm);
}

.directory-page .listing-directory {
  gap: 0;
  padding: clamp(14px, 2vw, 22px);
}

.directory-page .directory-category-group {
  border-radius: 20px;
  box-shadow: none;
}

.directory-page .directory-category-group + .directory-category-group {
  margin-top: 16px;
}

.directory-page .cat-header-row {
  background: #ffffff;
}

.directory-page .cat-icon {
  color: var(--mcp-maroon);
  background: #fff5f3;
}

.directory-subcategory-heading {
  border-bottom-color: rgba(7, 27, 58, 0.08);
}

.directory-subcategory-heading small {
  color: var(--mcp-muted);
  background: var(--mcp-subtle);
}

.directory-page .biz-card {
  border-top: 1px solid var(--mcp-line);
  border-radius: 18px;
  box-shadow: none;
}

.directory-page .biz-card:hover {
  border-color: rgba(7, 27, 58, 0.16);
  box-shadow: var(--mcp-shadow-sm);
}

.directory-page .cat-header-row h3,
.directory-page .biz-card h4,
.directory-page .official-campus-resource-card h3,
.directory-partner-card h3,
.directory-deal-card h3 {
  font-family: var(--font-sans);
  letter-spacing: 0;
}

.directory-page .directory-kicker,
.directory-page .biz-campus,
.directory-subcategory-heading span {
  letter-spacing: 0.08em;
}

.directory-deal-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.directory-action.subtle {
  color: var(--mcp-navy);
  background: #f7f9fc;
}

.submit-resource-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(159, 23, 31, 0.06), rgba(200, 155, 60, 0.08)),
    #ffffff;
}

.submit-resource-copy h2 {
  margin: 6px 0 8px;
  color: var(--mcp-navy);
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
}

.submit-resource-copy p {
  max-width: 660px;
  margin: 0;
  color: var(--mcp-muted);
  line-height: 1.6;
}

.submit-resource-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.directory-page .directory-action {
  border-color: var(--mcp-line);
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--mcp-navy);
  background: #ffffff;
  box-shadow: none;
}

.directory-page .directory-action.primary {
  border-color: var(--mcp-navy);
  color: #ffffff;
  background: var(--mcp-navy);
}

.directory-page .directory-action.offers-action {
  color: #ffffff;
  background: var(--mcp-maroon);
}

@media (max-width: 980px) {
  .directory-hero.mcp-campus-shell .directory-hero-inner,
  .mcp-directory-section-head,
  .directory-page .official-campus-resources-head,
  .directory-page .community-business-head,
  .submit-resource-section {
    grid-template-columns: 1fr;
  }

  .mcp-directory-section-head > p,
  .directory-page .official-campus-resources-head p,
  .directory-page .community-business-head p {
    justify-self: start;
  }

  .campus-quick-grid,
  .directory-page .official-campus-resource-grid,
  .featured-partner-grid,
  .student-deals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .submit-resource-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .directory-hero.mcp-campus-shell {
    padding: 58px 0 86px;
  }

  .directory-hero.mcp-campus-shell h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .directory-page-section {
    margin-top: -44px;
    padding-bottom: 64px;
  }

  .directory-app {
    gap: 24px;
  }

  .directory-page .community-context,
  .campus-quick-grid,
  .directory-page .official-campus-resource-grid,
  .featured-partner-grid,
  .student-deals-grid,
  .directory-deal-card {
    grid-template-columns: 1fr;
  }

  .mcp-directory-panel,
  .directory-page .official-campus-resources,
  .directory-page .community-business-section,
  .directory-page .directory-calendar-first .calendar-directory,
  .directory-page .listing-directory,
  .student-deals-section,
  .submit-resource-section {
    border-radius: 20px;
  }

  .campus-quick-card {
    min-height: 112px;
  }

  .directory-page .directory-calendar-first .calendar-head h2 {
    font-size: 34px;
  }

  .directory-page .quicklinks-grid {
    margin-inline: -4px;
  }

  .submit-resource-actions,
  .submit-resource-actions .directory-action {
    width: 100%;
  }
}

/* Campus Directory cleanup final override: keep this at the end of the stylesheet. */
.directory-page {
  --mcp-directory-container: 1180px;
  --mcp-directory-font: var(--font-sans);
  --mcp-directory-title: clamp(42px, 5vw, 66px);
  --mcp-directory-section-title: clamp(24px, 2.6vw, 34px);
  --mcp-directory-card-title: 17px;
  --mcp-directory-body: 15px;
  --mcp-directory-label: 11px;
  --mcp-directory-navy: #071b3a;
  --mcp-directory-blue: #eef5fb;
  --mcp-directory-cream: #fbf8f2;
  --mcp-directory-red: #9f171f;
  --mcp-directory-ink: #111827;
  --mcp-directory-muted: #667085;
  --mcp-directory-line: rgba(7, 27, 58, 0.12);
  --mcp-directory-shadow: 0 14px 38px rgba(7, 27, 58, 0.07);
  --mcp-directory-radius: 20px;
  color: var(--mcp-directory-ink);
  font-family: var(--mcp-directory-font);
  background: #f7f9fc;
}

.directory-page .container,
.directory-page-section > .container,
.directory-hero.mcp-campus-shell .directory-hero-inner {
  width: min(var(--mcp-directory-container), calc(100% - 48px));
  max-width: var(--mcp-directory-container);
  margin-inline: auto;
}

.directory-page h1,
.directory-page h2,
.directory-page h3,
.directory-page h4,
.directory-page p,
.directory-page a,
.directory-page button,
.directory-page input,
.directory-page select,
.directory-page small,
.directory-page span {
  font-family: var(--mcp-directory-font);
  letter-spacing: 0;
}

.directory-hero.mcp-campus-shell {
  padding: clamp(34px, 4.2vw, 56px) 0 clamp(42px, 4.8vw, 64px);
  color: var(--mcp-directory-navy);
  background: #f7f9fc;
}

.directory-hero.mcp-campus-shell::after {
  display: none;
}

.directory-hero.mcp-campus-shell .directory-hero-inner {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  gap: clamp(28px, 5vw, 64px);
}

.directory-hero.mcp-campus-shell h1 {
  max-width: 720px;
  color: var(--mcp-directory-navy);
  font-size: clamp(46px, 5.6vw, 76px);
  font-weight: 800;
  line-height: 1.02;
}

.directory-hero.mcp-campus-shell p {
  max-width: 640px;
  color: #344054;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
}

.directory-supporting-school {
  display: grid;
  gap: 6px;
  margin: 14px 0 18px;
}

.directory-supporting-school span {
  color: var(--mcp-directory-muted);
  font-size: var(--mcp-directory-label);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.directory-supporting-school strong {
  color: var(--mcp-directory-navy);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 760;
}

.directory-page .directory-kicker {
  margin: 0;
  color: var(--mcp-directory-red) !important;
  font-size: var(--mcp-directory-label);
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.directory-hero.mcp-campus-shell .directory-hero-context,
.directory-page .community-context,
.directory-platform-stats,
.directory-search-panel,
.mcp-directory-panel,
.directory-page .official-campus-resources,
.directory-page .community-business-section,
.directory-page .directory-calendar-first .calendar-directory,
.directory-page .listing-directory,
.student-deals-section,
.submit-resource-section {
  border: 1px solid var(--mcp-directory-line);
  border-radius: var(--mcp-directory-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--mcp-directory-shadow);
}

.directory-page-section {
  margin-top: -28px;
  padding: 0 0 80px;
}

.directory-app {
  gap: 24px;
}

.directory-snapshot-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}

.directory-snapshot-card .snapshot-row {
  grid-column: 1 / -1;
  display: grid;
  gap: 5px;
  padding: 18px 20px;
}

.directory-snapshot-card .snapshot-row + .snapshot-row,
.directory-snapshot-card .snapshot-updated {
  border-top: 1px solid var(--mcp-directory-line);
}

.directory-snapshot-card .snapshot-metric {
  display: grid;
  gap: 5px;
  padding: 18px 20px;
  border-top: 1px solid var(--mcp-directory-line);
}

.directory-snapshot-card .snapshot-metric + .snapshot-metric {
  border-left: 1px solid var(--mcp-directory-line);
}

.directory-snapshot-card span {
  color: var(--mcp-directory-muted);
  font-size: var(--mcp-directory-label);
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.directory-snapshot-card strong {
  color: var(--mcp-directory-navy);
  font-size: 16px;
  font-weight: 780;
  line-height: 1.2;
}

.directory-snapshot-card .snapshot-metric strong {
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.02em;
}

.directory-platform-stats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
}

.directory-platform-stats div {
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 94px;
  padding: 18px 20px;
}

.directory-platform-stats div + div {
  border-left: 1px solid var(--mcp-directory-line);
}

.directory-platform-stats strong {
  color: var(--mcp-directory-navy);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 820;
  line-height: 1;
}

.directory-platform-stats span {
  color: var(--mcp-directory-muted);
  font-size: var(--mcp-directory-label);
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.directory-search-panel {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 2.4vw, 26px);
}

.directory-search-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: end;
}

.directory-search-head h2 {
  margin: 4px 0 0;
  color: var(--mcp-directory-navy);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 820;
  line-height: 1.08;
}

.directory-search-head p {
  margin: 0;
  color: var(--mcp-directory-muted) !important;
  font-size: 14px !important;
  line-height: 1.55;
}

.directory-page .community-context {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.directory-page .community-context div {
  padding: 18px 22px;
}

.directory-page .community-context span,
.official-campus-resource-filter span,
.directory-page .school-filter-control span,
.directory-page .biz-campus {
  color: var(--mcp-directory-muted);
  font-size: var(--mcp-directory-label);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.directory-page .community-context strong {
  color: var(--mcp-directory-navy);
  font-size: 16px;
  font-weight: 760;
}

.mcp-directory-section-head,
.directory-page .official-campus-resources-head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 22px;
  margin-bottom: 22px;
}

.directory-page .community-business-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 18px;
  padding-top: 4px;
  text-align: left;
}

.mcp-directory-section-head h2,
.directory-page .official-campus-resources-head h2,
.directory-page .community-business-head h2,
.submit-resource-copy h2,
.directory-page .directory-calendar-first .calendar-head h2 {
  margin: 4px 0 0;
  color: var(--mcp-directory-navy);
  font-size: var(--mcp-directory-section-title);
  font-weight: 800;
  line-height: 1.12;
}

.mcp-directory-section-head > p,
.directory-page .official-campus-resources-head p,
.directory-page .community-business-head p,
.submit-resource-copy p,
.directory-page .directory-calendar-first .calendar-head p,
.directory-page .directory-count,
.directory-page .biz-description {
  max-width: 680px;
  color: var(--mcp-directory-muted) !important;
  font-size: var(--mcp-directory-body) !important;
  line-height: 1.6;
}

.directory-page .official-campus-resources,
.directory-page .community-business-section,
.directory-page .listing-directory,
.directory-page .directory-calendar-first .calendar-directory {
  padding: clamp(22px, 3vw, 32px);
}

.directory-page .official-campus-resource-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.directory-page .official-campus-resource-card {
  min-height: 154px;
  grid-template-columns: 1fr auto;
  gap: 12px;
  border: 1px solid var(--mcp-directory-line);
  border-radius: 16px;
  padding: 16px;
  background: #ffffff;
  box-shadow: none;
}

.directory-page .official-campus-resource-icon,
.directory-page .official-campus-resource-group,
.directory-page .official-campus-resource-badges,
.directory-page .official-campus-resource-category {
  display: none;
}

.directory-page .official-campus-resource-card h3 {
  color: var(--mcp-directory-navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.directory-page .official-campus-resource-card p:not(.official-campus-resource-category) {
  margin-top: 8px;
  color: var(--mcp-directory-muted);
  font-size: 13px;
  line-height: 1.5;
}

.directory-page .official-link-indicator {
  color: var(--mcp-directory-red);
}

.directory-page .quicklinks-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.directory-popular-categories {
  display: grid;
  gap: 12px;
  padding-top: 2px;
}

.directory-popular-categories > div:first-child {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.directory-popular-categories > div:first-child p:last-child {
  margin: 0;
  color: var(--mcp-directory-muted) !important;
  font-size: 13px !important;
  line-height: 1.4;
}

.directory-page .category-quick-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid var(--mcp-directory-line);
  border-radius: 999px;
  border-left-width: 1px;
  padding: 8px 12px;
  color: var(--mcp-directory-navy);
  background: #ffffff;
  font-size: 13px;
  font-weight: 760;
  box-shadow: none;
}

.directory-page .category-quick-card.active,
.directory-page .category-quick-card:hover {
  border-color: rgba(159, 23, 31, 0.28);
  color: var(--mcp-directory-red);
  background: #fff7f5;
  transform: none;
}

.directory-page .category-quick-icon,
.directory-page .cat-icon {
  display: inline-grid;
  place-items: center;
  color: var(--mcp-directory-red);
}

.directory-page .category-quick-icon svg {
  width: 15px;
  height: 15px;
}

.directory-page .directory-category-emoji {
  display: inline-block;
  font-size: 1em;
  line-height: 1;
}

.directory-page svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.directory-page .dir-controls {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) minmax(180px, 0.65fr) minmax(180px, 0.65fr) auto minmax(180px, 0.8fr) auto;
  gap: 12px;
  margin-top: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.directory-page .dir-controls input,
.directory-page .dir-controls select,
.directory-page .official-campus-resource-filter select,
.directory-page .favorites-filter,
.directory-page .show-all-categories,
.directory-page [data-collapse-all] {
  min-height: 44px;
  border: 1px solid var(--mcp-directory-line);
  border-radius: 12px;
  color: var(--mcp-directory-navy);
  background: #ffffff;
  font-size: 14px;
}

.directory-page .directory-toggle-control {
  border-color: rgba(166, 16, 16, 0.28);
  color: var(--mcp-directory-red);
  background: #fff7f4;
  font-weight: 850;
  white-space: nowrap;
}

.directory-page .directory-toggle-control::before {
  content: "Categories: ";
  color: var(--mcp-directory-muted);
  font-weight: 750;
}

.directory-page .listing-directory {
  display: grid;
  gap: 18px;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.directory-page .directory-category-group {
  overflow: hidden;
  border: 1px solid var(--mcp-directory-line);
  border-radius: var(--mcp-directory-radius);
  background: #ffffff;
  box-shadow: var(--mcp-directory-shadow);
}

.directory-page .cat-header-row {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  border-radius: 0;
  padding: 18px 20px;
  color: #ffffff;
  background: linear-gradient(90deg, rgba(122, 7, 10, 0.98), rgba(166, 16, 16, 0.96));
}

.directory-page .cat-header-row:hover {
  filter: none;
}

.directory-page .cat-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  font-size: 22px;
}

.directory-page .cat-title h3,
.directory-page .cat-header-row h3 {
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.2;
}

.directory-page .cat-title p,
.directory-page .cat-header-row p {
  margin: 5px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.4;
}

.directory-page .cat-header-action {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 800;
}

.directory-page .cat-header-action::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.directory-page .directory-category-group:not(.collapsed) .cat-header-action::after {
  transform: translateY(2px) rotate(225deg);
}

.directory-page .subcategory-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--mcp-directory-line);
  padding: 14px 20px;
  background: var(--mcp-directory-blue);
}

.directory-page .subcategory-row button {
  border: 1px solid rgba(7, 27, 58, 0.1);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--mcp-directory-navy);
  background: #ffffff;
  font-size: 12px;
  font-weight: 760;
  text-transform: none;
}

.directory-page .subcategory-row button.active,
.directory-page .subcategory-row button[aria-pressed="true"] {
  border-color: var(--mcp-directory-red);
  color: #ffffff;
  background: var(--mcp-directory-red);
}

.directory-subcategory-section {
  border-top: 1px solid var(--mcp-directory-line);
  padding: 22px;
  background: #ffffff;
}

.directory-subcategory-heading {
  justify-content: flex-start;
  gap: 10px;
  margin: 0 0 14px;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(159, 23, 31, 0.16);
}

.directory-subcategory-heading span {
  color: var(--mcp-directory-red);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.directory-subcategory-heading small {
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--mcp-directory-muted);
  background: #f2f4f7;
  font-size: 11px;
  font-weight: 760;
}

.directory-page .biz-grid,
.directory-page .directory-subcategory-section .biz-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
}

.directory-page .directory-category-group.collapsed .subcategory-row,
.directory-page .directory-category-group.collapsed .directory-subcategory-section,
.directory-page .directory-category-group.collapsed .category-offer-strip {
  display: none;
}

.directory-page .biz-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--mcp-directory-line);
  border-radius: 16px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(7, 27, 58, 0.055);
}

.directory-page .biz-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.directory-page .biz-card-head > div {
  min-width: 0;
}

.directory-page .biz-card h4 {
  margin: 0;
  color: var(--mcp-directory-navy);
  font-size: var(--mcp-directory-card-title);
  font-weight: 850;
  line-height: 1.24;
}

.directory-page .biz-campus {
  display: block;
  margin: 0 0 7px;
  color: var(--mcp-directory-red);
}

.directory-page .biz-description {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.directory-page .biz-detail-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--mcp-directory-line);
}

.directory-page .biz-detail-list:empty {
  display: none;
}

.directory-page .biz-detail-list p,
.directory-page .biz-detail-list a {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: var(--mcp-directory-muted);
  font-size: 13px;
  line-height: 1.4;
}

.directory-page .biz-detail-list a {
  color: var(--mcp-directory-red);
  font-weight: 760;
  word-break: break-word;
}

.directory-page .biz-detail-row span {
  min-width: 0;
  display: inline;
  color: inherit;
  overflow-wrap: anywhere;
}

.directory-page .biz-detail-icon {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin-top: 1px;
  color: var(--mcp-directory-red);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.directory-page .biz-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
}

.directory-page .biz-action {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mcp-directory-line);
  border-radius: 10px;
  padding: 8px 11px;
  color: var(--mcp-directory-navy);
  background: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.directory-page .biz-action.primary {
  border-color: var(--mcp-directory-navy);
  color: #ffffff;
  background: var(--mcp-directory-navy);
}

.directory-page .biz-status,
.directory-page .biz-meta,
.directory-page .quick-feedback-actions,
.directory-page .biz-card-media,
.directory-page .biz-rating-row,
.directory-page .listing-offer-button,
.directory-page .biz-deal {
  display: none;
}

.directory-page .favorite-button {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mcp-directory-line);
  border-radius: 10px;
  color: var(--mcp-directory-muted);
  background: #ffffff;
  font-size: 17px;
  line-height: 1;
  box-shadow: none;
}

.directory-page .favorite-button:hover,
.directory-page .favorite-button.active {
  border-color: rgba(166, 16, 16, 0.28);
  color: var(--mcp-directory-red);
  background: #fff7f4;
}

.directory-page .mcp-directory-panel > .mcp-directory-section-head,
.directory-page .official-campus-resources > .official-campus-resources-head,
.directory-page .community-business-section > .community-business-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 24px;
  margin: 0 0 22px;
  padding: 0 0 20px 18px;
  border-bottom: 1px solid var(--mcp-directory-line);
  text-align: left;
}

.directory-page .mcp-directory-panel > .mcp-directory-section-head::before,
.directory-page .official-campus-resources > .official-campus-resources-head::before,
.directory-page .community-business-section > .community-business-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 22px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--mcp-directory-red), rgba(166, 16, 16, 0.24));
}

.directory-page .mcp-directory-section-head > div,
.directory-page .official-campus-resources-head > div,
.directory-page .community-business-head > div:first-child {
  grid-column: 1;
  min-width: 0;
}

.directory-page .mcp-directory-section-head > p,
.directory-page .official-campus-resources-head > div > p,
.directory-page .community-business-head > div:first-child > p:not(.directory-kicker) {
  grid-column: 1;
  max-width: 760px;
  margin: 6px 0 0;
}

.directory-page .official-campus-resource-filter,
.directory-page .community-business-head .directory-side-actions {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.directory-page .mcp-directory-section-head .directory-kicker,
.directory-page .official-campus-resources-head .directory-kicker,
.directory-page .community-business-head .directory-kicker {
  margin: 0 0 6px;
  color: var(--mcp-directory-red) !important;
}

.directory-page .mcp-directory-section-head h2,
.directory-page .official-campus-resources-head h2,
.directory-page .community-business-head h2 {
  margin: 0;
}

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

  .directory-platform-stats div:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--mcp-directory-line);
  }

  .directory-platform-stats div:nth-child(n + 5) {
    border-top: 1px solid var(--mcp-directory-line);
  }

  .directory-page .dir-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .directory-page .official-campus-resource-grid,
  .directory-page .biz-grid,
  .directory-page .directory-subcategory-section .biz-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .directory-page .container,
  .directory-page-section > .container,
  .directory-hero.mcp-campus-shell .directory-hero-inner {
    width: min(100% - 32px, var(--mcp-directory-container));
  }

  .directory-hero.mcp-campus-shell .directory-hero-inner,
  .directory-search-head,
  .directory-page .community-context,
  .mcp-directory-section-head,
  .directory-community-intro,
  .directory-page .official-campus-resources-head,
  .directory-page .community-business-head,
  .directory-page .dir-controls,
  .directory-page .official-campus-resource-grid,
  .directory-page .biz-grid,
  .directory-page .directory-subcategory-section .biz-grid {
    grid-template-columns: 1fr;
  }

  .directory-hero.mcp-campus-shell h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .directory-hero.mcp-campus-shell {
    padding-top: 22px;
    padding-bottom: 26px;
  }

  .directory-page-section {
    margin-top: -38px;
  }

  .directory-community-request {
    align-items: flex-start;
    flex-direction: column;
  }

  .directory-hero.mcp-campus-shell .directory-hero-inner {
    gap: 18px;
  }

  .directory-hero.mcp-campus-shell p {
    font-size: 15px;
    line-height: 1.5;
  }

  .directory-supporting-school {
    margin: 10px 0 12px;
  }

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

  .directory-snapshot-card .snapshot-row {
    padding: 10px 12px;
  }

  .directory-snapshot-card .snapshot-metric {
    padding: 10px 12px;
  }

  .directory-snapshot-card .snapshot-metric + .snapshot-metric {
    border-left: 1px solid var(--mcp-directory-line);
    border-top: 1px solid var(--mcp-directory-line);
  }

  .directory-snapshot-card .snapshot-metric strong {
    font-size: 22px;
  }

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

  .directory-platform-stats div {
    min-height: 58px;
    padding: 10px 12px;
  }

  .directory-platform-stats div + div {
    border-left: 1px solid var(--mcp-directory-line);
    border-top: 0;
  }

  .directory-platform-stats div:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--mcp-directory-line);
  }

  .directory-platform-stats div:nth-child(n + 5) {
    border-top: 1px solid var(--mcp-directory-line);
  }

  .directory-platform-stats strong {
    font-size: 19px;
  }

  .directory-platform-stats span,
  .directory-snapshot-card span {
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .directory-popular-categories > div:first-child {
    display: grid;
    align-items: start;
  }

  .directory-page .community-context div + div {
    border-left: 0;
    border-top: 1px solid var(--mcp-directory-line);
  }

  .directory-page .cat-header-row {
    grid-template-columns: 1fr auto;
  }

  .directory-page .cat-icon {
    display: none;
  }

  .directory-page .mcp-directory-panel > .mcp-directory-section-head,
  .directory-page .official-campus-resources > .official-campus-resources-head,
  .directory-page .community-business-section > .community-business-head {
    grid-template-columns: minmax(0, 1fr);
  }

  .directory-page .official-campus-resource-filter,
  .directory-page .community-business-head .directory-side-actions {
    grid-column: 1 / -1;
    grid-row: auto;
    margin-top: 8px;
  }

  .directory-page .biz-card {
    min-height: 0;
  }
}

@media (max-width: 1080px) {
  .welcome-signup-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 28px;
  }

  .welcome-signup-copy h1 {
    font-size: clamp(40px, 6vw, 62px);
  }

  .welcome-proof-row,
  .welcome-signup-copy .welcome-proof-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .welcome-proof-row div {
    border-left: 1px solid var(--border);
    border-top: 0;
  }

  .welcome-proof-row div:first-child {
    border-left: 0;
  }

  .welcome-family-grid,
  .welcome-trust-proof-grid,
  .welcome-moment-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .welcome-signup-hero {
    padding-top: 34px;
    background:
      linear-gradient(180deg, rgba(251, 248, 241, 0.97), rgba(251, 248, 241, 0.94)),
      url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1200&q=82") center/cover;
  }

  .welcome-signup-hero-grid,
  .welcome-step-card-grid,
  .welcome-family-grid,
  .welcome-trust-proof-grid,
  .welcome-moment-strip,
  .trust-foundation {
    grid-template-columns: 1fr;
  }

  .welcome-account-panel {
    grid-column: auto;
    grid-row: auto;
    order: 2;
  }

  .pilot-community-card {
    grid-column: auto;
    grid-row: auto;
    order: 3;
    margin-top: 0;
  }

  .welcome-hero-form,
  .pilot-community-card,
  .welcome-step-card,
  .student-verified-banner {
    padding: 22px;
  }

  .pilot-included-list {
    grid-template-columns: 1fr;
  }

  .welcome-family-trust .trust-foundation {
    gap: 22px;
  }

  .welcome-trust-proof-grid {
    margin-top: 0;
  }

  .welcome-moment-card div {
    min-height: auto;
  }

  .welcome-proof-row,
  .welcome-signup-copy .welcome-proof-row {
    grid-template-columns: 1fr;
  }

  .welcome-proof-row div {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .welcome-proof-row div:first-child {
    border-top: 0;
  }

  .floating-feedback-widget {
    display: none;
  }
}

@media (max-width: 560px) {
  .welcome-signup-hero .container,
  .welcome-steps-section .container,
  .welcome-moments-section .container,
  .welcome-family-trust .container,
  .student-verified-banner-section .container {
    width: min(100% - 32px, var(--container));
  }

  .welcome-signup-copy h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .welcome-signup-copy .lede {
    font-size: 16px;
    line-height: 1.65;
  }

  .welcome-hero-form .form-row {
    grid-template-columns: 1fr;
  }

  .welcome-hero-form input,
  .welcome-hero-form .button {
    min-height: 48px;
  }

  .pilot-school-row,
  .benefit-list-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .floating-feedback-widget {
    bottom: 12px;
    right: 12px;
  }

  .floating-feedback-widget summary {
    padding: 11px 13px;
    font-size: 11px;
  }
}
