
@font-face {
  font-family: "Inconsolata VF";
  src: url("/fonts/Inconsolata-VF.ttf") format("truetype");
  font-weight: 275 900;
  font-stretch: 50% 200%;
  font-display: swap;
}
@view-transition { navigation: auto; }
@supports (view-transition-name: none) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 160ms;
    animation-timing-function: ease;
  }
}

/* ============================================================
   Sleek Academia — modern neumorphism for public college pages

   Structural rule, taken straight from the approved references:
   every section is a FULL-BLEED PHOTO BAND with a translucent glass
   panel inset on top of it, so the photograph bleeds past the glass
   on all four edges. Bands sit flush against each other and their
   photo layers fade at top/bottom, so one image morphs into the next.

   Scoped under .glass-college so it never leaks into brand-v2 pages.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap");

.glass-college {
  /* Chroma tokens tuned to the exact Sleek Academia logo spectrum:
     blue #078fec, teal #12c8ae, green #42c83f, orange #ff9c0a,
     pink #ed3489, yellow #ffd51a. Coral/cobalt/violet are supporting
     hues kept so rings and cards keep an 8-step gradient. */
  --gc-coral: #f04a3a;
  --gc-orange: #ff9c0a;
  --gc-yellow: #ffd51a;
  --gc-lime: #42c83f;
  --gc-teal: #12c8ae;
  --gc-blue: #078fec;
  --gc-cobalt: #3457d5;
  --gc-violet: #9457e0;
  --gc-magenta: #ed3489;
  --gc-spectrum: linear-gradient(
    115deg,
    var(--gc-coral),
    var(--gc-orange),
    var(--gc-yellow),
    var(--gc-lime),
    var(--gc-teal),
    var(--gc-blue),
    var(--gc-violet),
    var(--gc-magenta)
  );

  --gc-ink: #372f52;
  --gc-body: #4a435c;
  --gc-muted: #6b6488;

  --gc-sky: #e4e0ef;
  --gc-cream: #e4e0ef;
  --gc-blush: #e4e0ef;
  --gc-paper: #e4e0ef;

  --gc-r-glass: 1.75rem;
  --gc-r-lg: 1.3rem;
  --gc-r-md: 0.85rem;
  --gc-r-sm: 0.6rem;
  --gc-r-pill: 999px;
  --gc-r-btn: 999px;

  --gc-shadow-card: 8px 8px 18px #c3bdd8, -8px -8px 18px #ffffff;
  --gc-shadow-glass: 8px 8px 18px #c3bdd8, -8px -8px 18px #ffffff;

  --gc-band-pad: clamp(1.4rem, 3.2vw, 2.6rem);
  --gc-ease: cubic-bezier(0.22, 1, 0.36, 1);

  --gc-font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-family: var(--gc-font);
  color: var(--gc-ink);
  overflow-x: clip;

  /* Base wash the photo bands fade into, so section edges morph. */
  --gc-surface: #e4e0ef;
  --gc-dark: #c9c2db;
  --gc-light: #ffffff;
  --gc-brand: #009fe3;
  --gc-brand2: #4cc4f0;
  --gc-brand-dark: #007ab8;
  --gc-shadow-raised: 8px 8px 18px #c3bdd8, -8px -8px 18px #ffffff;
  --gc-shadow-raised-sm: 5px 5px 12px #c3bdd8, -5px -5px 12px #ffffff;
  --gc-shadow-raised-hover: 10px 10px 22px #c3bdd8, -10px -10px 22px #ffffff;
  --gc-shadow-pressed: inset 6px 6px 12px #c3bdd8, inset -6px -6px 12px #ffffff;
  --gc-shadow-cta: 8px 8px 18px rgba(0, 159, 227, 0.28), -8px -8px 18px #ffffff, inset 0 1px 0 rgba(255, 255, 255, 0.45);
  background: var(--gc-surface);
}


/* Mild soft wash — almost classic neu, light lavender only */
html:not([data-theme="dark"]) .glass-college {
  background:
    radial-gradient(ellipse 90% 55% at 12% 0%, rgba(0, 159, 227, 0.05), transparent 55%),
    radial-gradient(ellipse 80% 50% at 92% 8%, rgba(148, 87, 224, 0.05), transparent 52%),
    var(--gc-surface);
}
html:not([data-theme="dark"]) body {
  background: var(--gc-surface, #e4e0ef);
}
html:not([data-theme="dark"]) {
  background: var(--gc-surface, #e4e0ef);
}
.glass-college *,
.glass-college *::before,
.glass-college *::after {
  box-sizing: border-box;
}

/* ============================================================
   Photo band + inset glass panel
   ============================================================ */

.glass-college .gc-band {
  position: relative;
  isolation: isolate;
  padding: var(--gc-band-pad);
}

/* The photograph. Bleeds the full width of the band, so it is visible
   outside every edge of the glass panel. Masked at top and bottom so
   neighbouring bands blend instead of butting up against each other. */
.glass-college .gc-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--band-photo);
  background-size: cover;
  background-position: var(--band-pos, center);
  filter: var(--band-filter, none);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

/* Hero stays a clean neu surface — woman media is the only photo. */
.glass-college .gc-band--hero::before {
  opacity: 0;
  background-image: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.glass-college .gc-glass {
  position: relative;
  border-radius: var(--gc-r-glass);
  background: rgba(255, 255, 255, 0.26);
  -webkit-backdrop-filter: blur(4px) saturate(1.05);
  backdrop-filter: blur(4px) saturate(1.05);
  box-shadow: var(--gc-shadow-glass), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

/* Heavily softened photo layer, used behind the reviews stage. */
.glass-college .gc-band--soft::before {
  filter: blur(30px) saturate(1.35);
  transform: scale(1.16);
}

/* The closing CTA carries no photograph of its own. */
.glass-college .gc-band--cta::before { content: none; }

/* On desktop the rails are layout-neutral so their cards position against
   the stage; below 1024px they become real horizontal scrollers. */
.glass-college .gc-loop-rail,
.glass-college .gc-review-rail { display: contents; }

/* Thin spectrum perimeter — gradient ring drawn in the element's padding. */
.glass-college .gc-glass--spectrum {
  border-color: transparent;
}

.glass-college .gc-glass--spectrum::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: var(--gc-spectrum);
  opacity: 0.85;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 4;
}

/* ============================================================
   Type
   ============================================================ */

.glass-college .gc-eyebrow {
  font-family: var(--gc-font);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gc-ink);
  margin: 0 0 1rem;
}

.glass-college .gc-display {
  font-family: var(--gc-font);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.022em;
  line-height: 0.93;
  margin: 0;
}

.glass-college .gc-headline {
  font-family: var(--gc-font);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.018em;
  margin: 0;
}

.glass-college .gc-lead {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gc-body);
  margin: 1.1rem 0 0;
  max-width: 32rem;
}

/* ============================================================
   Buttons
   ============================================================ */

.glass-college .gc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--gc-font);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  min-height: 44px;
  padding: 0.85rem 1.7rem;
  border-radius: var(--gc-r-btn);
  transition: transform 0.2s var(--gc-ease), box-shadow 0.2s var(--gc-ease);
}

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

/* Spectrum perimeter drawn as a RING (masked border), so it never fills the
   element behind it. Reused by the buttons and the 01/02/03 strip. */
.glass-college .gc-btn-dark,
.glass-college .gc-btn-ghost,
.glass-college .gc-steps {
  position: relative;
}

.glass-college .gc-btn-dark::after,
.glass-college .gc-btn-ghost::after,
.glass-college .gc-steps::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.6px;
  background: var(--gc-spectrum);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

/* Dark primary */
.glass-college .gc-btn-dark {
  display: inline-flex;
  align-self: flex-start;
  border-radius: var(--gc-r-btn);
  background: #14181f;
}
.glass-college .gc-btn-dark .gc-btn { color: #fff; background: transparent; }

/* Translucent secondary */
.glass-college .gc-btn-ghost {
  display: inline-flex;
  align-self: flex-start;
  border-radius: var(--gc-r-btn);
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.glass-college .gc-btn-ghost .gc-btn { color: var(--gc-ink); background: transparent; }

/* Wide squared-off dark button used inside sections */
.glass-college .gc-btn-block {
  border-radius: var(--gc-r-md);
}
.glass-college .gc-btn-block .gc-btn {
  border-radius: var(--gc-r-md);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  padding: 1rem 1.9rem;
  gap: 2.4rem;
}

/* ============================================================
   Wordmark + navigation (lives INSIDE the hero glass panel)
   ============================================================ */

.glass-college .gc-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex: none;
}

.glass-college .gc-wordmark img { width: 2.3rem; height: 2.3rem; }

.glass-college .gc-wordmark span {
  font-family: var(--gc-font);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* The nav lockup in the hero reference is plain dark mixed-case text, not the
   per-letter spectrum wordmark used on the login and pricing panels. */
.glass-college .gc-wordmark--plain span {
  font-family: var(--gc-font);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: -0.015em;
  text-transform: none;
  color: var(--gc-ink);
}

.glass-college .gc-wordmark b:nth-child(8n + 1) { color: var(--gc-coral); }
.glass-college .gc-wordmark b:nth-child(8n + 2) { color: var(--gc-orange); }
.glass-college .gc-wordmark b:nth-child(8n + 3) { color: var(--gc-yellow); }
.glass-college .gc-wordmark b:nth-child(8n + 4) { color: var(--gc-lime); }
.glass-college .gc-wordmark b:nth-child(8n + 5) { color: var(--gc-teal); }
.glass-college .gc-wordmark b:nth-child(8n + 6) { color: var(--gc-blue); }
.glass-college .gc-wordmark b:nth-child(8n + 7) { color: var(--gc-cobalt); }
.glass-college .gc-wordmark b:nth-child(8n) { color: var(--gc-violet); }

/* No gradient fill on the bar itself — a plain frosted strip, per reference. */
.glass-college .gc-nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.05rem clamp(1rem, 2.2vw, 1.9rem);
  background: rgba(255, 255, 255, 0.42);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--gc-r-glass) var(--gc-r-glass) 0 0;
}

.glass-college .gc-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.6vw, 2.6rem);
  margin-inline: auto;
}

.glass-college .gc-nav-links a {
  color: var(--gc-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
}

.glass-college .gc-nav-links a:hover { text-decoration: underline; text-underline-offset: 4px; }

.glass-college .gc-nav-mobile-login { display: none; }
.glass-college .gc-nav-mobile-cta { display: none; }

.glass-college .gc-nav-actions {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex: none;
  margin-left: 0.35rem;
}

/* Legacy class kept harmless if present; Log in is a normal gc-nav-links item */
.glass-college .gc-nav-login {
  color: var(--gc-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0;
}

.glass-college .gc-nav .gc-btn { padding: 0.7rem 1.4rem; font-size: 0.9rem; }

.glass-college .gc-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.6rem;
  min-width: 44px;
  min-height: 44px;
}
.glass-college .gc-nav-toggle span,
.glass-college .gc-nav-toggle span::before,
.glass-college .gc-nav-toggle span::after {
  content: "";
  display: block;
  width: 1.4rem;
  height: 2px;
  border-radius: 2px;
  background: var(--gc-ink);
  position: relative;
}
.glass-college .gc-nav-toggle span::before { top: -6px; }
.glass-college .gc-nav-toggle span::after { top: 4px; }

/* ============================================================
   Hero
   ============================================================ */

.glass-college .gc-band--hero {
  min-height: 85vh;
  min-height: 85svh;
  display: flex;
}

.glass-college .gc-band--hero > .gc-glass--hero {
  flex: 1;
  min-height: 100%;
}

/* In the reference the hero photograph stays SHARP inside the panel — the desk
   texture and pencil detail read through it. The panel is only a light white
   wash, not a frosted blur. */
.glass-college .gc-glass--hero {
  overflow: hidden; /* keeps the nav strip inside the rounded corners */
  display: flex;
  flex-direction: column;
  width: 100%;
  background: rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

/* Hero copy — centered typography filling the tall hero. */
.glass-college .gc-hero-body {
  padding: clamp(1.1rem, 2.4vw, 2rem) 0.15rem clamp(0.55rem, 1.2vw, 0.9rem);
  max-width: min(72rem, 96%);
  width: 100%;
  min-width: 0;
  margin-inline: auto;
  text-align: center;
}

.glass-college .gc-hero-title {
  font-size: clamp(3.1rem, 8.2vw, 6.4rem);
  line-height: 1.05;
  letter-spacing: -0.036em;
  max-width: none;
  margin-inline: auto;
}

.glass-college .gc-hero-line {
  display: block;
}

.glass-college .gc-hero-line + .gc-hero-line {
  margin-top: 0.22em;
}

/* Soft logo-color accents on 1–2 short words — thin underline only. */
.glass-college .gc-mark {
  position: relative;
  display: inline-block;
  font-family: inherit;
  font-weight: 800;
  letter-spacing: -0.02em;
  transform: none;
  padding-inline: 0.02em;
  padding-bottom: 0.06em;
}

.glass-college .gc-mark--pink,
.glass-college .gc-mark--coral { color: var(--gc-magenta); }
.glass-college .gc-mark--blue { color: var(--gc-blue); margin-left: 0.12em; }

.glass-college .gc-mark svg {
  position: absolute;
  left: 50%;
  top: 1.08em;
  width: 104%;
  height: 0.28em;
  overflow: visible;
  pointer-events: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateX(-50%);
  opacity: 0.75;
}


.glass-college .gc-hero-body .gc-lead,
.glass-college .gc-hero-lead {
  max-width: 42rem;
  margin-top: 1.35rem;
  margin-inline: auto;
  font-size: clamp(1.12rem, 1.7vw, 1.32rem);
  line-height: 1.65;
}

/* Empty white box hero for upcoming video background */
.glass-college .gc-hero-empty-box {
  width: 100%;
  min-height: clamp(22rem, 52vh, 36rem);
  background: #ffffff;
  border-radius: var(--gc-r-panel, 28px);
  box-shadow: var(--gc-shadow-raised-sm);
  border: 1px solid rgba(255, 255, 255, 0.95);
  position: relative;
  overflow: hidden;
}

.glass-college .gc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.95rem;
  margin-top: 1.65rem;
}

.glass-college .gc-hero-body .gc-steps {
  display: inline-flex;
  margin-inline: auto;
  justify-content: center;
  width: max-content;
  max-width: 100%;
}

/* Single-column text hero spanning the glass panel */
.glass-college .gc-hero-layout,
.glass-college .gc-hero-layout--text {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(1.25rem, 3.4vw, 3rem) clamp(1.1rem, 2.2vw, 1.85rem);
  min-width: 0;
  min-height: 0;
}

.glass-college .gc-hero-layout .gc-hero-body {
  padding: clamp(1.1rem, 2.4vw, 2rem) 0.15rem clamp(0.55rem, 1.2vw, 0.9rem);
}

/* ============================================================
   Hero word rotator
   ============================================================ */

.glass-college .gc-word-rotate {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
}

.glass-college .gc-word-rotate__slot {
  position: relative;
  display: inline-block;
  min-width: var(--gc-rotate-min, 0px);
  min-height: 1.15em;
  vertical-align: baseline;
}

.glass-college .gc-word-rotate__word {
  display: inline-block;
  white-space: nowrap;
  transition: opacity 420ms ease, transform 420ms ease;
}

.glass-college .gc-word-rotate__word:not(.is-active):not(.is-measuring) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(0.35em);
  pointer-events: none;
}

.glass-college .gc-word-rotate__word.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.glass-college .gc-word-rotate__word.is-exit {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(-0.35em);
  pointer-events: none;
}

.glass-college .gc-word-rotate__word.is-enter {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(0.35em);
  pointer-events: none;
}

.glass-college .gc-word-rotate__word.is-measuring {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  white-space: nowrap;
}

.glass-college .gc-word-rotate svg {
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .glass-college .gc-word-rotate__word {
    transition: none;
  }
}


/* 01 / 02 / 03 strip */
.glass-college .gc-steps {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  max-width: 100%;
}

.glass-college .gc-step {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem clamp(0.7rem, 1.3vw, 1.15rem);
  font-family: var(--gc-font);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gc-ink);
  white-space: nowrap;
  border-right: 1px solid rgba(20, 24, 31, 0.14);
}
.glass-college .gc-step:last-child { border-right: none; }
.glass-college .gc-step em { font-style: normal; font-size: 1.02rem; letter-spacing: 0.02em; }
.glass-college .gc-step:nth-child(1) em { color: var(--gc-violet); }
.glass-college .gc-step:nth-child(2) em { color: #17233b; }
.glass-college .gc-step:nth-child(3) em { color: #17233b; }

/* ============================================================
   Section 2 — weekly guidance
   ============================================================ */

/* Height tracks the photograph's own 16:9-ish proportion, so the backpack,
   pen and pens stay in frame instead of being cropped away. */
.glass-college .gc-guidance {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 0;
  align-items: stretch;
  background: var(--gc-surface);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.glass-college .gc-guidance-copy {
  padding: clamp(1.6rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Held to the reference's narrow measure so the headline breaks across three
   lines rather than running the full width of the cream panel. */
.glass-college .gc-guidance-copy > * { max-width: 24rem; }
.glass-college .gc-guidance-title { font-size: clamp(1.9rem, 3.6vw, 3.1rem); }

.glass-college .gc-mini-list {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 27rem;
}

.glass-college .gc-mini-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1.5px solid;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.glass-college .gc-mini-list em {
  font-style: normal;
  font-family: var(--gc-font);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding-right: 1rem;
  border-right: 1px solid rgba(20, 24, 31, 0.16);
}

.glass-college .gc-mini-list li:nth-child(1) { border-color: var(--gc-magenta); }
.glass-college .gc-mini-list li:nth-child(1) em { color: var(--gc-magenta); }
.glass-college .gc-mini-list li:nth-child(2) { border-color: var(--gc-cobalt); }
.glass-college .gc-mini-list li:nth-child(2) em { color: var(--gc-cobalt); }
.glass-college .gc-mini-list li:nth-child(3) { border-color: var(--gc-teal); }
.glass-college .gc-mini-list li:nth-child(3) em { color: var(--gc-teal); }

.glass-college .gc-guidance-copy .gc-btn-dark { margin-top: 2rem; }

/* Contrast mosaic — fills the right column (replaces empty band-photo slot) */
.glass-college .gc-contrast-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.75rem, 1.4vw, 1.1rem);
  padding: clamp(1.4rem, 3.2vw, 2.6rem) clamp(1.2rem, 2.8vw, 2.4rem);
  align-content: center;
}

.glass-college .gc-contrast-card {
  border-radius: var(--gc-r-lg);
  background: var(--gc-surface);
  box-shadow: var(--gc-shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.72);
  padding: clamp(1rem, 1.8vw, 1.35rem) clamp(1.05rem, 1.9vw, 1.5rem);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.glass-college .gc-contrast-card:hover {
  transform: translateY(-3px);
  box-shadow: 10px 12px 22px #c3bdd8, -8px -8px 18px #ffffff;
}

.glass-college .gc-contrast-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gc-brand);
}

.glass-college .gc-contrast-was {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  color: var(--gc-muted);
  opacity: 0.92;
}

.glass-college .gc-contrast-now {
  margin: 0;
  font-family: var(--gc-font);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
  color: var(--gc-ink);
}

.glass-college .gc-contrast-card:nth-child(1) { --accent: var(--gc-magenta); }
.glass-college .gc-contrast-card:nth-child(2) { --accent: var(--gc-cobalt); }
.glass-college .gc-contrast-card:nth-child(3) { --accent: var(--gc-teal); }
.glass-college .gc-contrast-card:nth-child(1) .gc-contrast-kicker,
.glass-college .gc-contrast-card:nth-child(2) .gc-contrast-kicker,
.glass-college .gc-contrast-card:nth-child(3) .gc-contrast-kicker { color: var(--accent); }

/* About page layout */
.glass-college .gc-about {
  padding: clamp(1.6rem, 3.2vw, 2.8rem);
  background: var(--gc-surface);
}

.glass-college .gc-about-hero {
  max-width: 44rem;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.glass-college .gc-about-hero .gc-headline {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  margin-bottom: 0.9rem;
}

.glass-college .gc-about-why {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.6vw, 1.35rem);
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}

.glass-college .gc-about-card {
  border-radius: var(--gc-r-lg);
  background: var(--gc-surface);
  box-shadow: var(--gc-shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.72);
  padding: clamp(1.15rem, 2vw, 1.6rem);
}

.glass-college .gc-about-card h3 {
  font-family: var(--gc-font);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 0.55rem;
  letter-spacing: -0.015em;
}

.glass-college .gc-about-card p {
  margin: 0;
  color: var(--gc-body);
  font-size: 0.95rem;
  line-height: 1.55;
}

.glass-college .gc-about-how {
  border-radius: var(--gc-r-lg);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--gc-shadow-pressed);
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
  margin-bottom: clamp(1.8rem, 3.5vw, 2.6rem);
}

.glass-college .gc-about-how h2 {
  font-family: var(--gc-font);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  margin: 0 0 0.85rem;
}

.glass-college .gc-about-how-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.glass-college .gc-about-how-steps li {
  border-radius: 0.95rem;
  background: var(--gc-surface);
  box-shadow: var(--gc-shadow-raised-sm);
  padding: 0.95rem 1.05rem;
  font-size: 0.92rem;
  color: var(--gc-ink);
}

.glass-college .gc-about-how-steps em {
  display: block;
  font-style: normal;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gc-brand);
  margin-bottom: 0.35rem;
}

.glass-college .gc-about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
}

@media (max-width: 900px) {
  .glass-college .gc-about-why,
  .glass-college .gc-about-how-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   Section 3 — the weekly loop
   ============================================================ */

.glass-college .gc-loop {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.86) 0%, rgba(240, 246, 252, 0.82) 55%, rgba(255, 255, 255, 0.74) 100%);
  padding: clamp(1.2rem, 2vw, 1.9rem);
}

.glass-college .gc-loop-stage {
  position: relative;
  height: clamp(31rem, 52vw, 47rem);
}

/* Faceted cream panel holding the section heading */
.glass-college .gc-loop-head {
  position: absolute;
  top: 0;
  left: 0;
  width: 57%;
  height: 60%;
  padding: clamp(1.4rem, 2.6vw, 2.6rem);
  background: linear-gradient(150deg, #fbf6ec 0%, #f4ece0 100%);
  border-radius: var(--gc-r-lg);
  clip-path: polygon(0 0, 94% 0, 100% 17%, 88% 52%, 74% 100%, 0 100%);
  z-index: 1;
}

.glass-college .gc-loop-title { font-size: clamp(1.9rem, 3.6vw, 3.1rem); }

.glass-college .gc-loop-head-icon {
  position: absolute;
  top: clamp(1.4rem, 2.6vw, 2.6rem);
  left: 62%;
  width: clamp(2.6rem, 4vw, 3.6rem);
  color: rgba(20, 24, 31, 0.13);
}
.glass-college .gc-loop-head-icon svg { width: 100%; height: auto; display: block; }

.glass-college .gc-loop-card {
  position: absolute;
  border-radius: var(--gc-r-lg);
  padding: clamp(1.1rem, 1.8vw, 1.7rem);
  box-shadow: var(--gc-shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.28s var(--gc-ease), box-shadow 0.28s var(--gc-ease);
}

.glass-college .gc-loop-card:hover {
  box-shadow: 0 1.7rem 3.4rem rgba(20, 24, 31, 0.24);
}

.glass-college .gc-loop-num {
  font-family: var(--gc-font);
  font-weight: 900;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  line-height: 1;
}

.glass-college .gc-loop-rule {
  display: block;
  width: 2.2rem;
  height: 3px;
  border-radius: 3px;
  margin: 0.65rem 0 0.85rem;
}

.glass-college .gc-loop-card h3 {
  font-family: var(--gc-font);
  font-weight: 800;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  letter-spacing: 0.045em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.glass-college .gc-loop-card p {
  font-size: clamp(0.78rem, 0.95vw, 0.88rem);
  line-height: 1.5;
  margin: 0;
}

.glass-college .gc-loop-icon {
  position: absolute;
  width: clamp(1.5rem, 2.1vw, 2rem);
  opacity: 0.5;
}
.glass-college .gc-loop-icon svg { width: 100%; height: auto; display: block; }
.glass-college .gc-loop-icon--tr { top: 1.2rem; right: 1.2rem; }
.glass-college .gc-loop-icon--br { bottom: 1.2rem; right: 1.2rem; }

.glass-college .gc-loop-card--01 {
  left: 4.8%;
  top: 47.9%;
  width: 35.6%;
  height: 39.3%;
  background: linear-gradient(150deg, #fdfbf6 0%, #f3ece1 100%);
  color: var(--gc-ink);
  transform: rotate(-1.2deg);
  z-index: 2;
}
.glass-college .gc-loop-card--01 .gc-loop-rule { background: var(--gc-teal); }

.glass-college .gc-loop-card--02 {
  left: 35.9%;
  top: 36.6%;
  width: 31.7%;
  height: 49.5%;
  background: linear-gradient(155deg, #ffa06a 0%, #f4653c 100%);
  color: #fff;
  transform: rotate(0.8deg);
  z-index: 3;
}
.glass-college .gc-loop-card--02 .gc-loop-rule { background: rgba(255, 255, 255, 0.85); }

.glass-college .gc-loop-card--03 {
  left: 59.2%;
  top: 10.2%;
  width: 27.8%;
  height: 43.2%;
  background: linear-gradient(155deg, #2273ad 0%, #0e3a63 100%);
  color: #fff;
  transform: rotate(-1deg);
  z-index: 4;
}
.glass-college .gc-loop-card--03 .gc-loop-rule { background: rgba(255, 255, 255, 0.8); }

.glass-college .gc-loop-card--04 {
  left: 67.9%;
  top: 49.7%;
  width: 30.6%;
  height: 43.7%;
  background: linear-gradient(155deg, #ddeb9e 0%, #b6d75f 100%);
  color: #24400f;
  transform: rotate(1.4deg);
  z-index: 5;
}
.glass-college .gc-loop-card--04 .gc-loop-rule { background: #4c6b1f; }

/* ============================================================
   Section 4 — student reviews
   ============================================================ */

.glass-college .gc-reviews {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.34) 100%);
  padding: clamp(1.2rem, 2vw, 1.9rem);
}

.glass-college .gc-review-stage {
  position: relative;
  height: clamp(31rem, 52vw, 47rem);
}

.glass-college .gc-reviews-copy {
  position: absolute;
  left: 2.9%;
  top: 7.6%;
  width: 51%;
  padding: clamp(1.5rem, 2.6vw, 2.6rem);
  border-radius: var(--gc-r-lg);
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: var(--gc-shadow-card);
  transform: rotate(-1.5deg);
  z-index: 1;
}

/* The navy card lands on this card's right third, so the copy is held to a
   column that stays clear of it. */
.glass-college .gc-reviews-copy > * { max-width: 22rem; }

.glass-college .gc-reviews-title { font-size: clamp(1.8rem, 3.4vw, 3rem); }

.glass-college .gc-review-card {
  position: absolute;
  border-radius: var(--gc-r-lg);
  padding: clamp(1.2rem, 1.9vw, 1.9rem);
  box-shadow: var(--gc-shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.28s var(--gc-ease), box-shadow 0.28s var(--gc-ease);
}

.glass-college .gc-review-card:hover {
  box-shadow: 0 1.7rem 3.4rem rgba(20, 24, 31, 0.24);
}

.glass-college .gc-review-stars {
  color: #ff8a2b;
  letter-spacing: 0.22em;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  margin-bottom: 0.9rem;
}

.glass-college .gc-review-card blockquote {
  margin: 0 0 1.4rem;
  font-size: clamp(0.9rem, 1.25vw, 1.15rem);
  line-height: 1.42;
  font-weight: 600;
}

.glass-college .gc-review-person {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.glass-college .gc-review-avatar {
  width: 2.6rem;
  height: 2.6rem;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.78rem;
  color: #fff;
  letter-spacing: 0.02em;
}

.glass-college .gc-review-name {
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: block;
}

.glass-college .gc-review-meta {
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 0.72;
}

.glass-college .gc-review-card--navy {
  left: 37%;
  top: 20%;
  width: 39%;
  height: 62%;
  background: linear-gradient(155deg, #1d6ba4 0%, #0d3357 100%);
  color: #fff;
  transform: rotate(-5deg);
  z-index: 3;
}

.glass-college .gc-review-card--coral {
  left: 65%;
  top: 8.5%;
  width: 33%;
  height: 47%;
  background: linear-gradient(155deg, #ffbd93 0%, #ff8f66 100%);
  color: #3d1c0d;
  transform: rotate(-4deg);
  z-index: 2;
  /* the navy card overlaps this card's left edge, so its copy sits inboard */
  padding-left: clamp(1.2rem, 11.5vw, 10.5rem);
}

.glass-college .gc-review-card--green {
  left: 9%;
  top: 58%;
  width: 39%;
  height: 40%;
  background: linear-gradient(155deg, #eef4d6 0%, #dfeab4 100%);
  color: #24400f;
  transform: rotate(-4deg);
  z-index: 2;
  padding-right: clamp(1.2rem, 11.5vw, 10.5rem);
}

/* ============================================================
   Closing CTA + footer
   ============================================================ */

.glass-college .gc-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.8rem, 3vw, 2.8rem);
  background: rgba(20, 24, 31, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
}

.glass-college .gc-cta h2 { color: #fff; font-size: clamp(1.5rem, 2.8vw, 2.1rem); }
.glass-college .gc-cta p { color: #c7cad3; margin: 0.6rem 0 0; max-width: 32rem; }

.glass-college .gc-footer {
  padding: 3rem var(--gc-band-pad) 2.5rem;
  text-align: center;
  color: var(--gc-body);
  font-size: 0.85rem;
}
.glass-college .gc-footer a { color: var(--gc-body); }

/* ============================================================
   Study Tools
   ============================================================ */

/* Nav-only band on interior pages — must not inherit the hero's full height. */
.glass-college .gc-band--slim {
  min-height: 0;
  padding-bottom: 0;
  /* Interior chrome: match home surface — no band-photo strip */
  background: var(--gc-surface);
}
.glass-college .gc-band--slim .gc-glass--hero {
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.glass-college .gc-tools {
  padding: clamp(1.6rem, 3vw, 3rem);
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(20, 24, 31, 0) 0,
      rgba(20, 24, 31, 0) 2.35rem,
      rgba(20, 24, 31, 0.055) 2.35rem,
      rgba(20, 24, 31, 0.055) calc(2.35rem + 1px)
    ),
    linear-gradient(150deg, rgba(253, 250, 244, 0.95) 0%, rgba(250, 245, 236, 0.92) 100%);
}

.glass-college .gc-tools-layout {
  display: grid;
  grid-template-columns: minmax(16rem, 24rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

.glass-college .gc-pill-eyebrow {
  display: inline-block;
  background: rgba(20, 24, 31, 0.07);
  padding: 0.5rem 1.1rem;
  border-radius: var(--gc-r-pill);
  font-family: var(--gc-font);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.glass-college .gc-tools-title { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }

.glass-college .gc-filters {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 2rem;
}

.glass-college .gc-filter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.1rem;
  min-height: 44px;
  border-radius: var(--gc-r-pill);
  border: 1.5px solid var(--gc-line-color, rgba(20, 24, 31, 0.18));
  background: rgba(255, 255, 255, 0.5);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.83rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
  color: var(--gc-ink);
  transition: background 0.2s var(--gc-ease);
}

.glass-college .gc-filter svg { width: 1.05rem; height: 1.05rem; flex: none; color: var(--gc-line-color, currentColor); }
.glass-college .gc-filter:hover { background: rgba(255, 255, 255, 0.9); }

.glass-college .gc-filter[aria-pressed="true"] {
  background: #14181f;
  color: #fff;
  border-color: #14181f;
}
.glass-college .gc-filter[aria-pressed="true"] svg { color: #fff; }

.glass-college .gc-filter--all { --gc-line-color: #14181f; }
.glass-college .gc-filter--planning { --gc-line-color: var(--gc-coral); }
.glass-college .gc-filter--methods { --gc-line-color: var(--gc-magenta); }
.glass-college .gc-filter--writing { --gc-line-color: var(--gc-blue); }
.glass-college .gc-filter--exams { --gc-line-color: var(--gc-teal); }
.glass-college .gc-filter--online { --gc-line-color: var(--gc-lime); }

.glass-college .gc-notes-wrap { position: relative; }

/* dashed connector doodle behind the pinned notes */
.glass-college .gc-notes-thread {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.glass-college .gc-notes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 2.6vw, 2.4rem) clamp(1rem, 1.8vw, 1.6rem);
  padding-top: 0.9rem;
}

.glass-college .gc-note {
  position: relative;
  background: var(--gc-light, #ffffff);
  border-radius: 0.9rem;
  padding: 0.6rem;
  box-shadow: 0 0.9rem 1.9rem rgba(20, 24, 31, 0.16);
  transition: transform 0.25s var(--gc-ease), box-shadow 0.25s var(--gc-ease);
}

.glass-college .gc-note:nth-child(odd) { transform: rotate(-1deg); }
.glass-college .gc-note:nth-child(even) { transform: rotate(1deg); }
.glass-college .gc-note:hover {
  transform: rotate(0deg) translateY(-3px);
  box-shadow: 0 1.3rem 2.6rem rgba(20, 24, 31, 0.22);
}

.glass-college .gc-note[hidden] { display: none; }

.glass-college .gc-note-inner {
  border-radius: 0.55rem;
  padding: 1.2rem 1.1rem 1.3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* push pin */
.glass-college .gc-note-pin {
  position: absolute;
  top: -0.62rem;
  left: 30%;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0.28rem 0.45rem rgba(20, 24, 31, 0.35);
}
.glass-college .gc-note-pin::after {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 0.26rem;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
}

.glass-college .gc-note-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.glass-college .gc-note-num {
  font-family: var(--gc-font);
  font-weight: 900;
  font-size: 1.75rem;
  line-height: 1;
}

.glass-college .gc-note-icon { width: 1.35rem; color: rgba(20, 24, 31, 0.75); }
.glass-college .gc-note-icon svg { width: 100%; height: auto; display: block; }

.glass-college .gc-note h3 {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0.85rem 0 0.5rem;
}

.glass-college .gc-note p {
  font-size: 0.82rem;
  color: var(--gc-body);
  line-height: 1.5;
  margin: 0 0 1.1rem;
}

.glass-college .gc-note a {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gc-ink);
  text-decoration: none;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid var(--note-accent, var(--gc-ink));
}

.glass-college .gc-note--1 { --note-accent: var(--gc-coral); }
.glass-college .gc-note--1 .gc-note-inner { background: #fde5dc; }
.glass-college .gc-note--1 .gc-note-num { color: #e8623c; }
.glass-college .gc-note--1 .gc-note-pin { background: radial-gradient(circle at 32% 30%, #ff8a6d, #e33f18); }

.glass-college .gc-note--2 { --note-accent: var(--gc-magenta); }
.glass-college .gc-note--2 .gc-note-inner { background: #fbdde8; }
.glass-college .gc-note--2 .gc-note-num { color: #d63d7c; }
.glass-college .gc-note--2 .gc-note-pin { background: radial-gradient(circle at 32% 30%, #ff6fa8, #cc1d63); }

.glass-college .gc-note--3 { --note-accent: #6ba32c; }
.glass-college .gc-note--3 .gc-note-inner { background: #e3f0d7; }
.glass-college .gc-note--3 .gc-note-num { color: #5f9227; }
.glass-college .gc-note--3 .gc-note-pin { background: radial-gradient(circle at 32% 30%, #a8dd63, #5f9227); }

.glass-college .gc-note--4 { --note-accent: var(--gc-teal); }
.glass-college .gc-note--4 .gc-note-inner { background: #d8eef3; }
.glass-college .gc-note--4 .gc-note-num { color: #1e93a6; }
.glass-college .gc-note--4 .gc-note-pin { background: radial-gradient(circle at 32% 30%, #58d2e0, #17879a); }

.glass-college .gc-note--5 { --note-accent: #d9a11a; }
.glass-college .gc-note--5 .gc-note-inner { background: #fbecc6; }
.glass-college .gc-note--5 .gc-note-num { color: #d9a11a; }
.glass-college .gc-note--5 .gc-note-pin { background: radial-gradient(circle at 32% 30%, #ffd569, #d99b12); }

.glass-college .gc-note--6 { --note-accent: var(--gc-violet); }
.glass-college .gc-note--6 .gc-note-inner { background: #e7dcf7; }
.glass-college .gc-note--6 .gc-note-num { color: #7c46cf; }
.glass-college .gc-note--6 .gc-note-pin { background: radial-gradient(circle at 32% 30%, #b07fef, #6b32c4); }

/* ============================================================
   Pricing
   ============================================================ */

.glass-college .gc-pricing {
  padding: clamp(1.6rem, 3vw, 3rem) clamp(1.4rem, 3vw, 3.2rem) clamp(2rem, 3.5vw, 3.4rem);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.3) 100%);
}

.glass-college .gc-pricing-head {
  text-align: center;
  margin: 0 auto clamp(1.6rem, 2.6vw, 2.4rem);
  max-width: 54rem;
}

.glass-college .gc-pricing-head .gc-eyebrow { margin-bottom: 0.5rem; }
.glass-college .gc-pricing-title { font-size: clamp(1.9rem, 4vw, 3.3rem); }
.glass-college .gc-pricing-head .gc-lead { margin-inline: auto; max-width: 40rem; }

/* the wordmark sits top-left, over the centred heading block */
.glass-college .gc-pricing-mark {
  position: absolute;
  top: clamp(1.2rem, 2.4vw, 2.2rem);
  left: clamp(1.2rem, 2.4vw, 2.2rem);
  z-index: 3;
}

.glass-college .gc-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 1.6vw, 1.5rem);
  align-items: start;
}

.glass-college .gc-plan {
  position: relative;
  border-radius: var(--gc-r-lg);
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: clamp(1.3rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.7rem 1.8rem rgba(20, 24, 31, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.glass-college .gc-plan:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 1.15rem 2.4rem rgba(20, 24, 31, 0.14);
}

/* featured plan: spectrum ring, lifted and slightly taller */
.glass-college .gc-plan--featured {
  border-color: transparent;
  background: linear-gradient(170deg, rgba(255, 252, 240, 0.92) 0%, rgba(255, 255, 255, 0.82) 45%, rgba(252, 244, 252, 0.9) 100%);
  margin-top: -0.7rem;
  padding-bottom: calc(clamp(1.3rem, 2vw, 2rem) + 0.7rem);
  box-shadow: 0 1.2rem 2.6rem rgba(20, 24, 31, 0.14);
}

.glass-college .gc-plan--featured::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.6px;
  background: var(--gc-spectrum);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.glass-college .gc-plan-badge {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, #e8f6c9, #cfeaa4);
  color: #2c4a12;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--gc-r-pill);
  white-space: nowrap;
}

.glass-college .gc-plan-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gc-body);
  margin: 0 0 0.7rem;
}

.glass-college .gc-plan--featured .gc-plan-kicker { visibility: hidden; }

.glass-college .gc-plan h3 {
  font-family: var(--gc-font);
  font-weight: 800;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  letter-spacing: -0.01em;
  margin: 0 0 0.7rem;
}

.glass-college .gc-plan-from {
  font-size: 0.95rem;
  color: var(--gc-ink);
  margin: 0;
}

.glass-college .gc-plan-price {
  font-family: var(--gc-font);
  font-weight: 800;
  font-size: clamp(2.3rem, 3.6vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.1rem;
}
.glass-college .gc-plan-price sup {
  font-size: 0.44em;
  font-weight: 800;
  top: 0.35em;
  position: relative;
}

.glass-college .gc-plan-term {
  font-size: 0.95rem;
  color: var(--gc-body);
  margin: 0.7rem 0 0;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(20, 24, 31, 0.12);
}

.glass-college .gc-plan-features {
  list-style: none;
  margin: 1.1rem 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.glass-college .gc-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.87rem;
  line-height: 1.4;
}

.glass-college .gc-tick {
  flex: none;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.05rem;
  border-radius: 0;
  background: transparent;
  display: grid;
  place-items: center;
  color: var(--gc-brand);
}
.glass-college .gc-tick svg { width: 1rem; height: 1rem; }
.glass-college .gc-plan--featured .gc-tick { color: var(--gc-magenta); }
.glass-college .gc-feat-icon {
  flex: none;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.05rem;
  color: var(--gc-brand);
  display: grid;
  place-items: center;
}
.glass-college .gc-feat-icon svg { width: 1rem; height: 1rem; }
.glass-college .gc-plan--featured .gc-feat-icon { color: var(--gc-magenta); }

/* "Everything in X, plus:" carry-over row */
.glass-college .gc-plan-carry {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.8rem;
  border-radius: var(--gc-r-pill);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.glass-college .gc-plan--featured .gc-plan-carry {
  background: linear-gradient(100deg, #e4f5cf, #f3e2f5);
}
.glass-college .gc-plan--momentum .gc-plan-carry {
  background: linear-gradient(100deg, #e4f5cf, #dff0e6);
}

.glass-college .gc-plan .gc-btn-dark { width: 100%; margin-top: auto; }
.glass-college .gc-plan .gc-btn-dark .gc-btn {
  width: 100%;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.85rem;
}

/* included-in-every-plan strip */
.glass-college .gc-included {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem clamp(1rem, 2.6vw, 2.6rem);
  margin-top: clamp(1rem, 1.8vw, 1.6rem);
  padding: 0.9rem clamp(1rem, 2vw, 1.8rem);
  border-radius: var(--gc-r-pill);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.glass-college .gc-included dt {
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin: 0;
}

.glass-college .gc-included dd {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-size: 0.87rem;
}

.glass-college .gc-included dd::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--dot, var(--gc-ink));
}



/* Unique / custom request band under pricing cards */
.glass-college .gc-unique-band {
  margin-top: clamp(1.6rem, 3vw, 2.6rem);
  padding: clamp(1.35rem, 2.4vw, 2rem) clamp(1.4rem, 2.8vw, 2.4rem);
  border-radius: var(--gc-r-lg);
  background: var(--gc-surface);
  box-shadow: var(--gc-shadow-raised);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem 1.6rem;
}
.glass-college .gc-unique-band h2 {
  margin: 0 0 0.35rem;
  font-family: var(--gc-font);
  font-weight: 800;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: -0.02em;
  color: var(--gc-ink);
}
.glass-college .gc-unique-band p {
  margin: 0;
  max-width: 36rem;
  color: var(--gc-body);
  font-size: 0.95rem;
  line-height: 1.55;
}
.glass-college .gc-unique-band .gc-btn-dark { flex: none; }

/* FAQ */
.glass-college .gc-faq {
  margin-top: clamp(1.6rem, 2.8vw, 2.6rem);
  text-align: center;
}

.glass-college .gc-faq-title {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  margin-bottom: clamp(1rem, 1.8vw, 1.5rem);
}

.glass-college .gc-faq-list {
  max-width: 46rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
}

.glass-college .gc-faq-item {
  border-radius: var(--gc-r-md);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.glass-college .gc-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.2rem;
  min-height: 44px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  list-style: none;
}
.glass-college .gc-faq-item summary::-webkit-details-marker { display: none; }

.glass-college .gc-faq-item summary::after {
  content: "+";
  flex: none;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gc-body);
}
.glass-college .gc-faq-item[open] summary::after { content: "–"; }

.glass-college .gc-faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gc-body);
}

/* ============================================================
   Login
   ============================================================ */

.glass-college.gc-login-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gc-band-pad);
  background: var(--gc-sky);
}

.glass-college .gc-login-frame {
  position: relative;
  width: min(74rem, 100%);
  border-radius: var(--gc-r-glass);
  overflow: hidden;
  box-shadow: var(--gc-shadow-glass);
  isolation: isolate;
}

.glass-college .gc-login-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: var(--gc-spectrum);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 5;
}

.glass-college .gc-login-grid {
  display: grid;
  grid-template-columns: minmax(20rem, 27rem) minmax(0, 1fr);
  min-height: min(46rem, 92vh);
  background: var(--gc-paper);
}

.glass-college .gc-login-form-panel {
  padding: clamp(1.6rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3;
  background: #fdfbf7;
}

/* layered paper waves between the form and the photograph */
.glass-college .gc-login-waves {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: clamp(4.5rem, 10vw, 11rem);
  z-index: 2;
  pointer-events: none;
}
.glass-college .gc-login-waves svg { width: 100%; height: 100%; display: block; }

.glass-college .gc-login-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* LOG IN / SIGN UP segmented control */
.glass-college .gc-auth-tabs {
  --gc-auth-pad: 0.22rem;
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  width: max-content;
  max-width: 100%;
  padding: var(--gc-auth-pad);
  border-radius: 999px;
  background: rgba(20, 24, 31, 0.05);
  border: 1px solid rgba(20, 24, 31, 0.08);
  margin-bottom: 1.4rem;
  gap: 0;
}
.glass-college .gc-auth-tabs::before {
  content: "";
  position: absolute;
  top: var(--gc-auth-pad);
  left: var(--gc-auth-pad);
  width: calc(50% - var(--gc-auth-pad));
  height: calc(100% - (var(--gc-auth-pad) * 2));
  border-radius: 999px;
  background: var(--gc-light, #ffffff);
  box-shadow: 0 0.2rem 0.5rem rgba(20, 24, 31, 0.12);
  transition: transform 220ms ease;
  z-index: 0;
  pointer-events: none;
}
.glass-college .gc-auth-tabs[data-auth="signup"]::before,
.glass-college .gc-auth-tabs:has(.gc-auth-tab:last-child[aria-current="page"])::before {
  transform: translateX(100%);
}

.glass-college .gc-auth-tab {
  position: relative;
  z-index: 1;
  padding: 0.55rem 1.05rem;
  min-height: 40px;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: none;
  text-decoration: none;
  color: var(--gc-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 180ms ease;
  white-space: nowrap;
}

.glass-college .gc-auth-tab[aria-current="page"] {
  background: transparent;
  color: var(--gc-ink);
  box-shadow: none;
}

/* Frosted badge over the photograph */
.glass-college .gc-login-tag {
  position: absolute;
  right: clamp(1rem, 2vw, 1.8rem);
  bottom: clamp(1rem, 2vw, 1.8rem);
  max-width: 19rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.62);
  color: var(--gc-ink);
  border-radius: var(--gc-r-lg);
  padding: 1.1rem 1.3rem;
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  border: 1.5px solid transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.62)), var(--gc-spectrum);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.glass-college .gc-login-tag-icon {
  width: 3rem;
  height: 3rem;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid transparent;
  background-image: linear-gradient(#fdfcfa, #fdfcfa), var(--gc-spectrum);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.glass-college .gc-login-tag-icon svg { width: 1.4rem; height: 1.4rem; }

.glass-college .gc-login-tag strong {
  display: block;
  font-family: var(--gc-font);
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin-bottom: 0.4rem;
}
.glass-college .gc-login-tag span { font-size: 0.8rem; color: var(--gc-body); line-height: 1.45; }

.glass-college .gc-field { margin-bottom: 1.05rem; }
.glass-college .gc-field label { display: block; font-weight: 700; font-size: 0.84rem; margin-bottom: 0.4rem; }
.glass-college .gc-field-control { position: relative; }
.glass-college .gc-field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.7rem;
  border: 1.5px solid rgba(20, 24, 31, 0.12);
  background: var(--gc-light, #ffffff);
  font: inherit;
  font-size: 0.95rem;
  box-shadow: inset 0 1px 2px rgba(20, 24, 31, 0.05);
}
.glass-college .gc-field input:focus { outline: 2px solid var(--gc-cobalt); outline-offset: 1px; }

.glass-college .gc-pw-toggle {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gc-muted);
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
}
.glass-college .gc-pw-toggle svg { width: 1.15rem; height: 1.15rem; }

.glass-college .gc-login-form-panel .gc-btn-dark { width: 100%; }
.glass-college .gc-login-form-panel .gc-btn-dark .gc-btn {
  width: 100%;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.glass-college .gc-divider {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin: 1.4rem 0;
  color: var(--gc-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.glass-college .gc-divider::before,
.glass-college .gc-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(20, 24, 31, 0.14);
}

.glass-college .gc-oauth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.glass-college .gc-oauth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem;
  min-height: 44px;
  border-radius: 0.7rem;
  border: 1.5px solid transparent;
  background-image: linear-gradient(#fff, #fff), var(--gc-spectrum);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--gc-ink);
}
.glass-college .gc-oauth-btn svg { width: 1.05rem; height: 1.05rem; }

.glass-college .gc-auth-links { font-size: 0.85rem; margin: 0.45rem 0 0; }
.glass-college .gc-auth-links a {
  color: var(--gc-cobalt);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* ============================================================
   Responsive — 1024 tablet
   ============================================================ */

@media (max-width: 1024px) {
  .glass-college .gc-nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0.6rem;
    right: 0.6rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-inline: 0;
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: var(--gc-r-lg);
    box-shadow: var(--gc-shadow-glass);
    padding: 0.5rem;
    z-index: 30;
  }
  .glass-college .gc-nav-links.is-open { display: flex; }
  .glass-college .gc-nav-links a {
    padding: 0.9rem 0.9rem;
    border-radius: var(--gc-r-md);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .glass-college .gc-nav-links a:hover { background: rgba(20, 24, 31, 0.05); text-decoration: none; }
  .glass-college .gc-nav-mobile-login { display: flex; }
  .glass-college .gc-nav-mobile-cta {
    display: flex;
    justify-content: center;
    background: var(--gc-ink);
    color: #fff !important;
    font-weight: 800;
  }
  .glass-college .gc-nav-login { display: none; }
  .glass-college .gc-nav-toggle { display: block; }
  .glass-college .gc-nav-actions { margin-left: auto; }

  .glass-college .gc-guidance { grid-template-columns: 1fr; }
  /* Stacked: the copy carries its own solid cream so it never sits on the
     photograph, and the photo gets its own full-strength row underneath. */
  .glass-college .gc-guidance {
    background: none;
    min-height: 0;
  }
.glass-college .gc-guidance-copy { background: var(--gc-surface); }
  .glass-college .gc-contrast-stack { padding: 1.2rem 1.1rem 1.6rem; }
  .glass-college .gc-guidance-copy > * { max-width: none; }

  /* Overlapping stages become controlled horizontal scrollers, keeping the
     tilt and colour identity of each card. */
  .glass-college .gc-loop-stage,
  .glass-college .gc-review-stage { height: auto; }

  .glass-college .gc-loop-head,
  .glass-college .gc-reviews-copy {
    position: static;
    width: 100%;
    height: auto;
    clip-path: none;
    transform: none;
    margin-bottom: 1.4rem;
  }

  .glass-college .gc-loop-head-icon { display: none; }

  .glass-college .gc-loop-rail,
  .glass-college .gc-review-rail {
    display: flex;
    gap: 1.1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.6rem 0.2rem 1.4rem;
    -webkit-overflow-scrolling: touch;
  }

  .glass-college .gc-loop-card,
  .glass-college .gc-review-card {
    position: relative;
    left: auto;
    top: auto;
    flex: 0 0 clamp(15rem, 46vw, 21rem);
    width: auto;
    height: auto;
    min-height: 15rem;
    scroll-snap-align: start;
  }

  .glass-college .gc-plans { grid-template-columns: 1fr; max-width: 32rem; margin-inline: auto; }
  .glass-college .gc-plan--featured { margin-top: 0; }
  .glass-college .gc-plan--featured .gc-plan-kicker { visibility: visible; }
  .glass-college .gc-pricing-mark { position: static; margin-bottom: 1.2rem; display: flex; }
  .glass-college .gc-included { border-radius: var(--gc-r-lg); }

  .glass-college .gc-tools-layout { grid-template-columns: 1fr; }
  .glass-college .gc-notes { grid-template-columns: repeat(2, 1fr); }
  .glass-college .gc-notes-thread { display: none; }
  .glass-college .gc-filters { flex-direction: row; flex-wrap: wrap; }

  .glass-college .gc-login-grid { grid-template-columns: 1fr; min-height: 0; }
  .glass-college .gc-login-photo { min-height: 16rem; order: -1; }
  .glass-college .gc-login-waves { display: none; }
}

/* ============================================================
   Responsive — 640 mobile
   ============================================================ */

@media (max-width: 980px) {
  .glass-college .gc-hero-layout,
  .glass-college .gc-hero-layout--text {
    padding: 0 clamp(1.1rem, 3vw, 1.75rem) 1.35rem;
  }
  .glass-college .gc-hero-body {
    max-width: min(52rem, 94%);
  }
}

@media (max-width: 640px) {
  .glass-college {
    --gc-r-glass: 1.15rem;
  }

  /* Reduced blur and decorative depth on small screens. */
  .glass-college .gc-glass {
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    background: rgba(255, 255, 255, 0.42);
  }

  .glass-college .gc-band--hero {
    min-height: 78vh;
    min-height: 78svh;
  }
  .glass-college .gc-hero-title {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    line-height: 1.08;
    max-width: none;
  }
  .glass-college .gc-hero-body {
    text-align: center;
  }
  .glass-college .gc-hero-actions {
    justify-content: center;
  }
  .glass-college .gc-hero-layout,
  .glass-college .gc-hero-layout--text {
    padding: 0 1rem 1.25rem;
  }
  .glass-college .gc-hero-layout .gc-hero-body,
  .glass-college .gc-hero-body {
    padding: 1.15rem 0.1rem 0.35rem;
    max-width: 100%;
  }
  .glass-college .gc-hero-body .gc-lead,
  .glass-college .gc-hero-lead {
    max-width: 36rem;
  }

  .glass-college .gc-nav { padding: 0.75rem 0.8rem; gap: 0.6rem; }
  .glass-college .gc-wordmark img { width: 1.85rem; height: 1.85rem; }
  .glass-college .gc-wordmark span { font-size: 0.82rem; letter-spacing: 0.02em; }
  .glass-college .gc-wordmark--plain span { font-size: 1.05rem; letter-spacing: -0.015em; }
  .glass-college .gc-nav .gc-btn { padding: 0.6rem 0.9rem; font-size: 0.78rem; }
  .glass-college .gc-nav-actions { gap: 0.4rem; }
  /* Keep the wordmark and menu control readable; the CTA remains available
     as the first item in the opened navigation sheet. */
  .glass-college .gc-nav > .gc-nav-actions > .gc-btn-dark { display: none; }

  .glass-college .gc-steps {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 0.45rem;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
  .glass-college .gc-step {
    border-right: none;
    border-bottom: none;
    border-radius: 999px;
    padding: 0.55rem 0.85rem;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    background: var(--gc-surface);
    box-shadow: var(--gc-shadow-pressed);
  }
  .glass-college .gc-step:last-child { border-bottom: none; }

  .glass-college .gc-hero-actions > * { width: 100%; }
  .glass-college .gc-hero-actions .gc-btn { width: 100%; }

  .glass-college .gc-guidance-copy { padding: 1.6rem 1.2rem 1.2rem; }
  .glass-college .gc-contrast-stack { gap: 0.7rem; }
  .glass-college .gc-loop,
  .glass-college .gc-reviews,
  .glass-college .gc-tools { padding: 1.4rem 1.1rem; }

  .glass-college .gc-loop-card,
  .glass-college .gc-review-card { flex-basis: 78vw; transform: none; }

  .glass-college .gc-notes { grid-template-columns: 1fr; }
  .glass-college .gc-note:nth-child(odd),
  .glass-college .gc-note:nth-child(even) { transform: none; }

  .glass-college .gc-cta { flex-direction: column; align-items: flex-start; }
  .glass-college .gc-oauth-row { grid-template-columns: 1fr; }
  .glass-college .gc-login-form-panel { padding: 1.6rem 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .glass-college * { transition-duration: 0.01ms !important; }
}

/* ============================================================
   Study tools — value-first storefront
   ============================================================ */

.glass-college .gc-market-hero,
.glass-college .gc-market-section,
.glass-college .gc-market-help {
  max-width: 92rem;
  margin-inline: auto;
}

.glass-college .gc-market-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  padding: clamp(2.2rem, 6vw, 5.8rem);
  min-height: 34rem;
}

.glass-college .gc-market-title {
  max-width: 13ch;
  font-family: var(--gc-font);
  font-size: clamp(2.8rem, 7vw, 6.9rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.glass-college .gc-market-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.glass-college .gc-market-proof {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(20, 24, 31, 0.2);
}

.glass-college .gc-market-proof div {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(20, 24, 31, 0.2);
}

.glass-college .gc-market-proof dt {
  font-family: var(--gc-font);
  font-size: clamp(1.55rem, 3.4vw, 2rem);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.glass-college .gc-market-proof dd {
  margin: 0;
  color: var(--gc-body);
  font-size: 0.84rem;
  font-weight: 700;
}

.glass-college .gc-market-section { padding: clamp(2rem, 5vw, 4.8rem); }

.glass-college .gc-market-heading { max-width: 49rem; margin-bottom: 2rem; }
.glass-college .gc-market-heading h2 { font-size: clamp(2.15rem, 5vw, 4.5rem); }
.glass-college .gc-market-heading > p,
.glass-college .gc-market-heading--split > p { color: var(--gc-body); line-height: 1.65; }

.glass-college .gc-market-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(15rem, 0.8fr);
  gap: 2rem;
  align-items: end;
  max-width: none;
}

.glass-college .gc-quiz-sheets {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1rem;
}

.glass-college .gc-quiz-sheet {
  --sheet-accent: var(--gc-teal);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 21rem;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  overflow: hidden;
  border: 1px solid rgba(20, 24, 31, 0.12);
  border-left: 0.42rem solid var(--sheet-accent);
  border-radius: 0.25rem 1.2rem 1.2rem 0.25rem;
  background:
    repeating-linear-gradient(to bottom, transparent 0, transparent 2.55rem, rgba(52, 87, 213, 0.08) 2.6rem),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 1.25rem 2.5rem rgba(20, 24, 31, 0.13);
  transition: transform 0.24s var(--gc-ease), box-shadow 0.24s var(--gc-ease);
}

.glass-college .gc-quiz-sheet:nth-child(2) { --sheet-accent: var(--gc-cobalt); transform: rotate(0.8deg); }
.glass-college .gc-quiz-sheet:nth-child(3) { --sheet-accent: var(--gc-magenta); grid-column: 1 / -1; min-height: 16rem; }
.glass-college .gc-quiz-sheet:hover { transform: translateY(-3px) rotate(0); box-shadow: 0 1.6rem 3rem rgba(20, 24, 31, 0.17); }

.glass-college .gc-quiz-sheet__top,
.glass-college .gc-quiz-sheet__foot,
.glass-college .gc-pack-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.glass-college .gc-quiz-sheet__top {
  color: var(--gc-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.glass-college .gc-quiz-sheet__top strong { color: var(--sheet-accent); }
.glass-college .gc-quiz-sheet__course { margin: auto 0 0.55rem; color: var(--gc-muted); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.glass-college .gc-quiz-sheet h3 { max-width: 24ch; margin: 0; font-family: var(--gc-font); font-size: clamp(1.65rem, 3vw, 2.55rem); line-height: 1; letter-spacing: -0.035em; }
.glass-college .gc-quiz-sheet > p:not(.gc-quiz-sheet__course) { max-width: 44rem; color: var(--gc-body); line-height: 1.6; }
.glass-college .gc-quiz-sheet__foot { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(20, 24, 31, 0.14); font-size: 0.82rem; font-weight: 700; }
.glass-college .gc-quiz-sheet__foot a { color: var(--gc-ink); text-underline-offset: 0.3em; }

.glass-college .gc-market-filters { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 0.7rem; }
.glass-college .gc-market-filters button {
  min-height: 44px;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(20, 24, 31, 0.18);
  border-radius: var(--gc-r-btn);
  background: rgba(255, 255, 255, 0.5);
  color: var(--gc-ink);
  font: 700 0.84rem/1 "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
}
.glass-college .gc-market-filters button[aria-pressed="true"] { border-color: var(--gc-ink); background: var(--gc-ink); color: #fff; }
.glass-college .gc-market-filters button:focus-visible,
.glass-college .gc-pack-card a:focus-visible,
.glass-college .gc-quiz-sheet a:focus-visible { outline: 3px solid var(--gc-cobalt); outline-offset: 3px; }
.glass-college .gc-filter-status { min-height: 1.2em; margin: 0 0 1.2rem; color: var(--gc-muted); font-size: 0.78rem; }

.glass-college .gc-pack-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1rem; }
.glass-college .gc-pack-card {
  grid-column: span 4;
  display: grid;
  grid-template-rows: 13rem 1fr;
  overflow: hidden;
  border-radius: var(--gc-r-lg);
  background: rgba(255, 255, 255, 0.77);
  box-shadow: 0 1rem 2.2rem rgba(20, 24, 31, 0.12);
}
.glass-college .gc-pack-card:nth-child(-n + 2) { grid-column: span 6; grid-template-rows: 17rem 1fr; }
.glass-college .gc-pack-card[hidden] { display: none; }
.glass-college .gc-pack-card__cover { position: relative; display: block; overflow: hidden; background: rgba(20, 24, 31, 0.08); }
.glass-college .gc-pack-card__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s var(--gc-ease); }
.glass-college .gc-pack-card:hover .gc-pack-card__cover img { transform: scale(1.025); }
.glass-college .gc-pack-card__cover > span { position: absolute; right: 0.85rem; bottom: 0.85rem; display: grid; width: 2.8rem; height: 2.8rem; place-items: center; border-radius: 0.5rem; background: rgba(20, 24, 31, 0.9); color: #fff; font: 900 0.78rem/1 "Plus Jakarta Sans", sans-serif; }
.glass-college .gc-pack-card__body { display: flex; flex-direction: column; padding: 1.25rem; }
.glass-college .gc-pack-card__meta { margin: 0 0 0.9rem; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.glass-college .gc-pack-card__meta span { color: var(--gc-cobalt); }
.glass-college .gc-pack-card__meta strong { font-variant-numeric: tabular-nums; }
.glass-college .gc-pack-card h3 { margin: 0; font-family: var(--gc-font); font-size: 1.25rem; line-height: 1.08; letter-spacing: -0.025em; }
.glass-college .gc-pack-card__body > p:not(.gc-pack-card__meta) { color: var(--gc-body); font-size: 0.86rem; line-height: 1.55; }
.glass-college .gc-pack-card__link { margin-top: auto; color: var(--gc-ink); font-size: 0.83rem; font-weight: 800; text-underline-offset: 0.3em; }

.glass-college .gc-market-help { display: flex; justify-content: space-between; gap: 2rem; align-items: center; padding: clamp(2rem, 5vw, 4.2rem); }
.glass-college .gc-market-help h2 { max-width: 24ch; font-size: clamp(1.9rem, 4vw, 3.5rem); }

@media (max-width: 900px) {
  .glass-college .gc-market-hero,
  .glass-college .gc-market-heading--split { grid-template-columns: 1fr; }
  .glass-college .gc-market-hero { min-height: 0; align-items: start; }
  .glass-college .gc-quiz-sheets { grid-template-columns: 1fr; }
  .glass-college .gc-quiz-sheet:nth-child(3) { grid-column: auto; }
  .glass-college .gc-pack-card,
  .glass-college .gc-pack-card:nth-child(-n + 2) { grid-column: span 6; }
}

@media (max-width: 640px) {
  .glass-college .gc-market-hero,
  .glass-college .gc-market-section,
  .glass-college .gc-market-help { padding: 1.45rem 1.15rem; }
  .glass-college .gc-market-title { font-size: clamp(2.4rem, 13vw, 4rem); }
  .glass-college .gc-market-actions > span,
  .glass-college .gc-market-actions .gc-btn { width: 100%; }
  .glass-college .gc-market-proof div { grid-template-columns: max-content 1fr; }
  .glass-college .gc-quiz-sheet { min-height: 19rem; transform: none !important; }
  .glass-college .gc-quiz-sheet__top,
  .glass-college .gc-quiz-sheet__foot,
  .glass-college .gc-pack-card__meta { align-items: flex-start; flex-direction: column; gap: 0.35rem; }
  .glass-college .gc-pack-card,
  .glass-college .gc-pack-card:nth-child(-n + 2) { grid-column: 1 / -1; grid-template-rows: 13rem 1fr; }
  .glass-college .gc-market-help { align-items: flex-start; flex-direction: column; }
}

/* ===== modern neu overrides (2026-09-02) ===== */

.glass-college .gc-band { background: var(--gc-surface); }

.glass-college .gc-band::before {
  opacity: 0.12;
  filter: grayscale(0.35) saturate(0.55) contrast(0.95);
  pointer-events: none;
}

.glass-college .gc-band--hero::before {
  opacity: 0;
  background-image: none;
}

.glass-college .gc-band--soft::before {
  filter: grayscale(0.4) saturate(0.45) blur(18px);
  opacity: 0.08;
  transform: scale(1.08);
}

.glass-college .gc-glass,
.glass-college .gc-glass--hero {
  background: var(--gc-surface);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border: none;
  box-shadow: var(--gc-shadow-raised);
}

.glass-college .gc-glass--spectrum { border-color: transparent; }
.glass-college .gc-glass--spectrum::after { content: none; }

.glass-college .gc-eyebrow { color: var(--gc-brand); margin-bottom: 1.15rem; }
.glass-college .gc-display { font-weight: 800; letter-spacing: -0.028em; line-height: 1.02; }
.glass-college .gc-lead { font-size: 1.05rem; line-height: 1.7; color: var(--gc-body); margin-top: 1.25rem; }

.glass-college .gc-btn {
  border-radius: var(--gc-r-btn);
  background: var(--gc-surface);
  color: var(--gc-ink);
  box-shadow: var(--gc-shadow-raised-sm);
  padding: 0.9rem 1.8rem;
}
.glass-college .gc-btn:hover { transform: translateY(-2px); box-shadow: var(--gc-shadow-raised); color: var(--gc-brand); }
.glass-college .gc-btn:active { transform: translateY(0) scale(0.98); box-shadow: var(--gc-shadow-pressed); }

.glass-college .gc-btn-dark::after,
.glass-college .gc-btn-ghost::after,
.glass-college .gc-steps::after { content: none; }

.glass-college .gc-btn-dark { background: transparent; box-shadow: none; }
.glass-college .gc-btn-dark .gc-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--gc-brand), var(--gc-brand2));
  border: 2px solid #fff;
  box-shadow: var(--gc-shadow-cta);
}
.glass-college .gc-btn-dark .gc-btn:hover {
  color: #fff;
  box-shadow: 10px 10px 22px rgba(0, 159, 227, 0.34), -8px -8px 18px #ffffff, inset 0 1px 0 rgba(189, 170, 216, 0.55);
}
.glass-college .gc-btn-ghost { background: transparent; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
.glass-college .gc-btn-ghost .gc-btn {
  color: var(--gc-ink);
  background: var(--gc-surface);
  box-shadow: var(--gc-shadow-raised-sm);
}

.glass-college .gc-nav {
  background: var(--gc-surface);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: none;
  padding: 0.95rem clamp(1.1rem, 2.4vw, 2rem);
  box-shadow: inset 0 -1px 0 rgba(195, 189, 216, 0.45);
}
.glass-college .gc-nav-links a {
  color: var(--gc-muted);
  padding: 0.55rem 0.95rem;
  border-radius: 40px;
}
.glass-college .gc-nav-links a:hover { color: var(--gc-brand); text-decoration: none; }
.glass-college .gc-nav-links a[aria-current="page"] { color: var(--gc-brand); box-shadow: var(--gc-shadow-pressed); }
.glass-college .gc-nav-login:hover { color: var(--gc-brand); }

/* Hero body padding owned by the two-column layout rules above — do not
   reintroduce the old single-column 12–14vw left inset here. */
.glass-college .gc-mark--pink,
.glass-college .gc-mark--coral { color: var(--gc-magenta); }
.glass-college .gc-mark--blue { color: var(--gc-blue); }

.glass-college .gc-steps {
  margin-top: 1.35rem;
  border-radius: 999px;
  background: var(--gc-surface);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: var(--gc-shadow-pressed);
}
.glass-college .gc-step:nth-child(1) em { color: var(--gc-brand); }
.glass-college .gc-step:nth-child(2) em,
.glass-college .gc-step:nth-child(3) em { color: var(--gc-ink); }

.glass-college .gc-guidance {
  background: var(--gc-surface);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.glass-college .gc-mini-list li {
  border: none;
  border-radius: 999px;
  background: var(--gc-surface);
  box-shadow: var(--gc-shadow-raised-sm);
  padding: 0.9rem 1.25rem;
}
.glass-college .gc-mini-list li:nth-child(1),
.glass-college .gc-mini-list li:nth-child(2),
.glass-college .gc-mini-list li:nth-child(3) { border-color: transparent; }
.glass-college .gc-mini-list li:nth-child(1) em,
.glass-college .gc-mini-list li:nth-child(2) em,
.glass-college .gc-mini-list li:nth-child(3) em { color: var(--gc-brand); }

.glass-college .gc-loop,
.glass-college .gc-reviews,
.glass-college .gc-tools,
.glass-college .gc-pricing { background: var(--gc-surface); padding: clamp(1.6rem, 3vw, 2.6rem); }

.glass-college .gc-loop-head {
  background: var(--gc-surface);
  box-shadow: var(--gc-shadow-raised);
}
.glass-college .gc-loop-card,
.glass-college .gc-review-card { box-shadow: var(--gc-shadow-raised); }
.glass-college .gc-loop-card:hover,
.glass-college .gc-review-card:hover { box-shadow: var(--gc-shadow-raised-hover); }

.glass-college .gc-loop-card--01,
.glass-college .gc-loop-card--03,
.glass-college .gc-loop-card--04 {
  background: var(--gc-surface);
  color: var(--gc-ink);
}
.glass-college .gc-loop-card--02 {
  background: linear-gradient(155deg, var(--gc-brand2) 0%, var(--gc-brand) 100%);
  color: #fff;
  box-shadow: var(--gc-shadow-cta);
}
.glass-college .gc-loop-card--03 .gc-loop-rule,
.glass-college .gc-loop-card--04 .gc-loop-rule { background: var(--gc-brand); }

.glass-college .gc-reviews-copy {
  background: var(--gc-surface);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: var(--gc-shadow-raised);
}
.glass-college .gc-review-stars { color: var(--gc-brand); }
.glass-college .gc-review-card--navy {
  background: linear-gradient(155deg, var(--gc-brand2) 0%, var(--gc-brand-dark) 100%);
  color: #fff;
  box-shadow: var(--gc-shadow-cta);
}
.glass-college .gc-review-card--coral,
.glass-college .gc-review-card--green {
  background: var(--gc-surface);
  color: var(--gc-ink);
}

.glass-college .gc-cta {
  background: var(--gc-surface);
  border-color: transparent;
  box-shadow: var(--gc-shadow-raised);
  gap: 1.8rem;
  padding: clamp(2.2rem, 3.6vw, 3.4rem);
}
.glass-college .gc-cta h2 { color: var(--gc-ink); }
.glass-college .gc-cta p { color: var(--gc-body); }
.glass-college .gc-footer a:hover { color: var(--gc-brand); }

.glass-college .gc-pill-eyebrow {
  background: var(--gc-surface);
  color: var(--gc-brand);
  box-shadow: var(--gc-shadow-pressed);
}
.glass-college .gc-filter {
  border: none;
  background: var(--gc-surface);
  box-shadow: var(--gc-shadow-raised-sm);
}
.glass-college .gc-filter:hover { background: var(--gc-surface); color: var(--gc-brand); }
.glass-college .gc-filter[aria-pressed="true"] {
  background: var(--gc-surface);
  color: var(--gc-brand);
  border-color: transparent;
  box-shadow: var(--gc-shadow-pressed);
}
.glass-college .gc-filter[aria-pressed="true"] svg { color: var(--gc-brand); }

.glass-college .gc-note {
  background: var(--gc-surface);
  box-shadow: var(--gc-shadow-raised);
}
.glass-college .gc-note:hover { box-shadow: var(--gc-shadow-raised-hover); }
.glass-college .gc-note--1,
.glass-college .gc-note--2,
.glass-college .gc-note--3,
.glass-college .gc-note--4,
.glass-college .gc-note--5,
.glass-college .gc-note--6 { --note-accent: var(--gc-brand); }
.glass-college .gc-note-inner { background: var(--gc-surface) !important; }
.glass-college .gc-note-num { color: var(--gc-brand) !important; }
.glass-college .gc-note-pin { background: radial-gradient(circle at 32% 30%, var(--gc-brand2), var(--gc-brand-dark)) !important; }

.glass-college .gc-plan {
  background: var(--gc-surface);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border: none;
  box-shadow: var(--gc-shadow-raised);
  padding: clamp(1.5rem, 2.2vw, 2.2rem);
}
.glass-college .gc-plan--featured {
  background: var(--gc-surface);
  box-shadow: var(--gc-shadow-raised-hover);
}
.glass-college .gc-plan--featured::after { content: none; }
.glass-college .gc-plan-badge {
  background: linear-gradient(135deg, var(--gc-brand), var(--gc-brand2));
  color: #fff;
  box-shadow: var(--gc-shadow-cta);
}
.glass-college .gc-tick { background: transparent; color: var(--gc-brand); box-shadow: none; }
.glass-college .gc-feat-icon { color: var(--gc-brand); }
.glass-college .gc-plan--featured .gc-tick,
.glass-college .gc-plan--featured .gc-feat-icon { color: var(--gc-magenta); }
.glass-college .gc-plan:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--gc-shadow-raised-hover);
}
.glass-college .gc-unique-band {
  background: var(--gc-surface);
  box-shadow: var(--gc-shadow-raised);
}
html[data-theme="dark"] .glass-college .gc-auth-tabs::before {
  background: color-mix(in srgb, var(--gc-surface) 70%, var(--gc-light) 30%);
}
.glass-college .gc-plan--featured .gc-plan-carry,
.glass-college .gc-plan--momentum .gc-plan-carry {
  background: var(--gc-surface);
  box-shadow: var(--gc-shadow-pressed);
}
.glass-college .gc-included {
  background: var(--gc-surface);
  border: none;
  box-shadow: var(--gc-shadow-pressed);
}
.glass-college .gc-faq-item {
  background: var(--gc-surface);
  border: none;
  box-shadow: var(--gc-shadow-raised-sm);
}

.glass-college.gc-login-body { background: var(--gc-surface); }
.glass-college .gc-login-frame { box-shadow: var(--gc-shadow-raised); background: var(--gc-surface); }
.glass-college .gc-login-frame::after { content: none; }
.glass-college .gc-login-grid { background: var(--gc-surface); }
.glass-college .gc-login-form-panel { background: var(--gc-surface); }
.glass-college .gc-auth-tabs {
  background: var(--gc-surface);
  border: none;
  border-radius: 999px;
  box-shadow: var(--gc-shadow-pressed);
}
.glass-college .gc-auth-tabs::before {
  background: var(--gc-surface);
  box-shadow: var(--gc-shadow-raised-sm);
}
.glass-college .gc-auth-tab[aria-current="page"] {
  background: transparent;
  color: var(--gc-brand);
  box-shadow: none;
}
.glass-college .gc-login-tag {
  background: var(--gc-surface);
  background-image: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border: none;
  box-shadow: var(--gc-shadow-raised);
}
.glass-college .gc-login-tag-icon {
  background: var(--gc-surface);
  background-image: none;
  border: none;
  color: var(--gc-brand);
  box-shadow: var(--gc-shadow-pressed);
}
.glass-college .gc-field input {
  border: none;
  background: var(--gc-surface);
  color: var(--gc-ink);
  border-radius: 1rem;
  box-shadow: var(--gc-shadow-pressed);
}
.glass-college .gc-field input:focus {
  outline: none;
  box-shadow: var(--gc-shadow-pressed), 0 0 0 2px rgba(0, 159, 227, 0.28);
}
.glass-college .gc-oauth-btn {
  border: none;
  border-radius: 999px;
  background: var(--gc-surface);
  background-image: none;
  box-shadow: var(--gc-shadow-raised-sm);
}
.glass-college .gc-auth-links a { color: var(--gc-brand); }

.glass-college .gc-quiz-sheet {
  background: var(--gc-surface);
  border-color: transparent;
  border-left: 0.42rem solid var(--gc-brand);
  box-shadow: var(--gc-shadow-raised);
}
.glass-college .gc-quiz-sheet:hover { box-shadow: var(--gc-shadow-raised-hover); }
.glass-college .gc-market-filters button {
  border: none;
  background: var(--gc-surface);
  box-shadow: var(--gc-shadow-raised-sm);
}
.glass-college .gc-market-filters button[aria-pressed="true"] {
  background: var(--gc-surface);
  color: var(--gc-brand);
  box-shadow: var(--gc-shadow-pressed);
}
.glass-college .gc-pack-card {
  background: var(--gc-surface);
  box-shadow: var(--gc-shadow-raised);
}
.glass-college .gc-pack-card__cover > span {
  background: linear-gradient(135deg, var(--gc-brand), var(--gc-brand2));
}
.glass-college .gc-pack-card__meta span { color: var(--gc-brand); }

@media (max-width: 1024px) {
  .glass-college .gc-nav-links {
    background: var(--gc-surface);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: var(--gc-shadow-raised);
  }
  .glass-college .gc-nav-mobile-cta {
    background: linear-gradient(135deg, var(--gc-brand), var(--gc-brand2));
    color: #fff !important;
    box-shadow: var(--gc-shadow-cta);
  }
  .glass-college .gc-guidance-copy { background: var(--gc-surface); }
}

@media (max-width: 640px) {
  .glass-college .gc-glass {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: var(--gc-surface);
  }
}

@media (prefers-reduced-motion: reduce) {
  .glass-college *,
  .glass-college *::before,
  .glass-college *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .glass-college .gc-btn:hover,
  .glass-college .gc-loop-card:hover,
  .glass-college .gc-review-card:hover,
  .glass-college .gc-note:hover,
  .glass-college .gc-quiz-sheet:hover,
  .glass-college .gc-pack-card:hover .gc-pack-card__cover img {
    transform: none;
  }
}


/* ===== modern neu motion (2026-09-02) ===== */

.glass-college {
  scroll-behavior: smooth;
}

.glass-college .gc-glass,
.glass-college .gc-loop-card,
.glass-college .gc-review-card,
.glass-college .gc-note,
.glass-college .gc-mini-list li,
.glass-college .gc-plan,
.glass-college .gc-faq-item,
.glass-college .gc-filter {
  transition:
    transform 420ms var(--gc-ease),
    box-shadow 420ms var(--gc-ease),
    color 280ms var(--gc-ease),
    background-color 280ms var(--gc-ease);
}

.glass-college .gc-btn {
  transition:
    transform 280ms var(--gc-ease),
    box-shadow 280ms var(--gc-ease),
    color 220ms var(--gc-ease),
    background 220ms var(--gc-ease);
}

.glass-college .gc-loop-card:hover,
.glass-college .gc-review-card:hover,
.glass-college .gc-note:hover {
  transform: translateY(-6px);
}

.glass-college .gc-mini-list li:hover {
  transform: translateY(-2px);
  box-shadow: var(--gc-shadow-raised);
}

.glass-college [data-reveal] {
  opacity: 0;
  transform: translateY(1.15rem);
  transition:
    opacity 720ms var(--gc-ease),
    transform 720ms var(--gc-ease),
    box-shadow 420ms var(--gc-ease);
}

.glass-college [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.glass-college .gc-loop-card[data-reveal].is-visible:hover,
.glass-college .gc-review-card[data-reveal].is-visible:hover,
.glass-college .gc-note[data-reveal].is-visible:hover {
  transform: translateY(-6px);
}

.glass-college .gc-nav[data-reveal] { transition-delay: 40ms; }
.glass-college .gc-hero-body[data-reveal] { transition-delay: 80ms; }

/* Keep hero copy readable if JS/reveal never runs */
html.no-js .glass-college .gc-hero-line,
html.no-js .glass-college .gc-hero-lead,
html.no-js .glass-college .gc-hero-actions,
html.no-js .glass-college .gc-steps {
  opacity: 1;
  transform: none;
}

.glass-college .gc-loop-card--01[data-reveal] { transition-delay: 40ms; }
.glass-college .gc-loop-card--02[data-reveal] { transition-delay: 120ms; }
.glass-college .gc-loop-card--03[data-reveal] { transition-delay: 200ms; }
.glass-college .gc-loop-card--04[data-reveal] { transition-delay: 280ms; }
.glass-college .gc-review-card--navy[data-reveal] { transition-delay: 60ms; }
.glass-college .gc-review-card--coral[data-reveal] { transition-delay: 140ms; }
.glass-college .gc-review-card--green[data-reveal] { transition-delay: 220ms; }

@media (prefers-reduced-motion: no-preference) {
  .glass-college .gc-hero-body.is-visible .gc-hero-line,
  .glass-college .gc-hero-body.is-visible .gc-hero-lead,
  .glass-college .gc-hero-body.is-visible .gc-hero-actions,
  .glass-college .gc-hero-body.is-visible .gc-steps {
    animation: gc-hero-rise 780ms var(--gc-ease) both;
  }
  .glass-college .gc-hero-body.is-visible .gc-hero-line:nth-child(1) { animation-delay: 80ms; }
  .glass-college .gc-hero-body.is-visible .gc-hero-line:nth-child(2) { animation-delay: 200ms; }
  .glass-college .gc-hero-body.is-visible .gc-hero-lead { animation-delay: 320ms; }
  .glass-college .gc-hero-body.is-visible .gc-hero-actions { animation-delay: 440ms; }
  .glass-college .gc-hero-body.is-visible .gc-steps { animation-delay: 560ms; }

  .glass-college .gc-hero-line,
  .glass-college .gc-hero-lead,
  .glass-college .gc-hero-actions,
  .glass-college .gc-steps {
    opacity: 0;
  }

  .glass-college .gc-mark svg path {
    stroke-dasharray: 520;
    stroke-dashoffset: 520;
    animation: gc-draw 1.15s var(--gc-ease) 0.55s forwards;
  }
}

@keyframes gc-hero-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@keyframes gc-draw {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .glass-college [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .glass-college .gc-hero-line,
  .glass-college .gc-hero-lead,
  .glass-college .gc-hero-actions,
  .glass-college .gc-steps {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
  .glass-college .gc-mark svg path {
    stroke-dashoffset: 0;
    animation: none !important;
  }
}

/* ===== public dark neumorphism (2026-09-02) ===== */

html { background-color: #e7e4f1; }
html[data-theme="dark"] {
  background-color: #221f2e;
  color-scheme: dark;
}
html[data-theme="light"] { color-scheme: light; }

html[data-theme="dark"] .glass-college {
  --gc-ink: #f3f1f8;
  --gc-body: #cfc9de;
  --gc-muted: #a49db8;
  --gc-sky: #221f2e;
  --gc-cream: #221f2e;
  --gc-blush: #221f2e;
  --gc-paper: #221f2e;
  --gc-surface: #221f2e;
  --gc-dark: #14121c;
  --gc-light: #322e42;
  --gc-brand: #4cc4f0;
  --gc-brand2: #4cc4f0;
  --gc-brand-dark: #009fe3;
  --gc-coral: #ff7a6e;
  --gc-orange: #ffb06a;
  --gc-yellow: #ffe066;
  --gc-lime: #b8e86a;
  --gc-teal: #4ed4c2;
  --gc-blue: #5eb6ff;
  --gc-cobalt: #7a9bff;
  --gc-violet: #b48cff;
  --gc-magenta: #ff6bb5;
  --gc-spectrum: linear-gradient(
    115deg,
    var(--gc-coral),
    var(--gc-orange),
    var(--gc-yellow),
    var(--gc-lime),
    var(--gc-teal),
    var(--gc-blue),
    var(--gc-violet),
    var(--gc-magenta)
  );
  --gc-shadow-card: 8px 8px 18px #14121c, -8px -8px 18px #322e42;
  --gc-shadow-glass: 8px 8px 18px #14121c, -8px -8px 18px #322e42;
  --gc-shadow-raised: 8px 8px 18px #14121c, -8px -8px 18px #322e42;
  --gc-shadow-raised-sm: 5px 5px 12px #14121c, -5px -5px 12px #322e42;
  --gc-shadow-raised-hover: 10px 10px 22px #14121c, -10px -10px 22px #322e42;
  --gc-shadow-pressed: inset 6px 6px 12px #14121c, inset -6px -6px 12px #322e42;
  --gc-shadow-cta: 8px 8px 18px rgba(0, 159, 227, 0.38), -8px -8px 18px #322e42, inset 0 1px 0 rgba(255, 255, 255, 0.16);
  color: var(--gc-ink);
  background: var(--gc-surface);
}

html[data-theme="dark"] .glass-college .gc-band::before {
  opacity: 0.055;
  filter: grayscale(0.5) saturate(0.38) contrast(0.9) brightness(0.48);
}

html[data-theme="dark"] .glass-college .gc-band--soft::before {
  opacity: 0.035;
  filter: grayscale(0.55) saturate(0.3) blur(18px) brightness(0.42);
}

html[data-theme="dark"] .glass-college .gc-btn-dark .gc-btn {
  color: #fff;
  background: linear-gradient(135deg, #009fe3, #4cc4f0);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--gc-shadow-cta);
}

html[data-theme="dark"] .glass-college .gc-btn-dark .gc-btn:hover {
  color: #fff;
  box-shadow: 10px 10px 22px rgba(0, 159, 227, 0.4), -8px -8px 18px #322e42, inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

html[data-theme="dark"] .glass-college .gc-nav-mobile-cta {
  background: linear-gradient(135deg, #009fe3, #4cc4f0);
}

html[data-theme="dark"] .glass-college .gc-review-card--navy {
  background: linear-gradient(155deg, color-mix(in srgb, #4cc4f0 58%, #221f2e), color-mix(in srgb, #007ab8 68%, #14121c));
  color: #f3f1f8;
}

html[data-theme="dark"] .glass-college .gc-review-card--coral,
html[data-theme="dark"] .glass-college .gc-review-card--green {
  background: color-mix(in srgb, var(--gc-surface) 88%, #4cc4f0 12%);
  color: var(--gc-ink);
}

html[data-theme="dark"] .glass-college .gc-loop-card--02 {
  background: linear-gradient(155deg, color-mix(in srgb, #4cc4f0 70%, #221f2e), color-mix(in srgb, #009fe3 78%, #14121c));
}

html[data-theme="dark"] .glass-college .gc-wordmark img {
  filter: brightness(1.18) saturate(1.06);
}

html[data-theme="dark"] .glass-college .gc-mark--pink,
html[data-theme="dark"] .glass-college .gc-mark--coral { color: #ff6bb5; }
html[data-theme="dark"] .glass-college .gc-mark--blue { color: #4aa8f7; }
html[data-theme="dark"] .glass-college .gc-login-waves path { fill: #322e42; }
html[data-theme="dark"] .glass-college .gc-login-photo {
  background-color: #221f2e;
  background-blend-mode: multiply;
}

html[data-theme="dark"] .glass-college :focus-visible {
  outline-color: #4cc4f0;
}

.glass-college .theme-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.glass-college .theme-switch__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gc-muted);
}

.glass-college .theme-switch__control {
  position: relative;
  width: 2.85rem;
  height: 1.55rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: var(--gc-surface);
  box-shadow: var(--gc-shadow-pressed);
  flex: none;
  transition: background 220ms var(--gc-ease), box-shadow 220ms var(--gc-ease);
}

.glass-college .theme-switch__control::after {
  content: "";
  position: absolute;
  top: 0.18rem;
  left: 0.18rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: var(--gc-surface);
  box-shadow: var(--gc-shadow-raised-sm);
  transition: transform 220ms var(--gc-ease), background 220ms var(--gc-ease);
}

.glass-college .theme-switch__control:hover::after {
  box-shadow: var(--gc-shadow-raised);
}

.glass-college .theme-switch__control:focus-visible {
  outline: 2px solid var(--gc-brand);
  outline-offset: 3px;
}

.glass-college .theme-switch__control[aria-checked="true"],
html[data-theme="dark"] .glass-college .theme-switch__control {
  background: color-mix(in srgb, var(--gc-brand) 28%, var(--gc-surface));
}

.glass-college .theme-switch__control[aria-checked="true"]::after,
html[data-theme="dark"] .glass-college .theme-switch__control::after {
  transform: translateX(1.25rem);
  background: var(--gc-brand);
  box-shadow: 4px 4px 10px rgba(0, 122, 184, 0.28), -3px -3px 8px var(--gc-light);
}

.glass-college .theme-switch--nav {
  margin-top: 0;
  margin-left: 0.15rem;
}

.glass-college .theme-switch--footer {
  display: flex;
  justify-content: center;
  margin: 0.5rem 0 0;
  padding: 0 1.5rem 0.25rem;
}

.glass-college .gc-footer + .theme-switch--footer,
.glass-college .theme-switch--footer {
  margin-top: 0;
}


html[data-theme="dark"] body {
  background-color: #221f2e;
}

html[data-theme="dark"] .glass-college .gc-market-proof,
html[data-theme="dark"] .glass-college .gc-market-proof div {
  border-color: rgba(243, 241, 248, 0.12);
}

/* Blog showcase cards */
.glass-college .gc-blog-preview-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.glass-college .gc-blog-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}
.glass-college .gc-blog-preview-card:hover img {
  transform: scale(1.04);
}
html[data-theme="dark"] .glass-college .gc-blog-preview-card {
  background: rgba(26, 31, 40, 0.88);
  border-color: rgba(255, 255, 255, 0.12);
}
html[data-theme="dark"] .glass-college .gc-blog-preview-card h3 a {
  color: #f1f5f9 !important;
}
html[data-theme="dark"] .glass-college .gc-blog-preview-card p {
  color: #94a3b8 !important;
}



/* ============================================================
   404
   ============================================================ */
.glass-college .gc-404 {
  padding: clamp(2.4rem, 6vw, 4.5rem) clamp(1.4rem, 4vw, 3rem);
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}
.glass-college .gc-404 .gc-eyebrow { margin-bottom: 0.7rem; }
.glass-college .gc-404 .gc-headline { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 0.8rem; }
.glass-college .gc-404 .gc-lead { margin: 0 auto 1.6rem; max-width: 28rem; }
.glass-college .gc-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}


/* Hero “Say less.” — fill/stroke hover; final fill = CTA button blue */
.glass-college .gc-say-less {
  --gc-say-accent: var(--gc-brand, #009fe3);
  --gc-say-fill: var(--gc-brand2, #4cc4f0);
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.08em 0.28em 0.14em;
  border: 2px solid var(--gc-say-accent);
  border-radius: 0.18em;
  cursor: default;
  vertical-align: baseline;
  z-index: 0;
  overflow: hidden;
  isolation: isolate;
}

.glass-college .gc-say-less::before,
.glass-college .gc-say-less::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  pointer-events: none;
}

.glass-college .gc-say-less::before {
  background-color: var(--gc-say-accent);
  z-index: -1;
  transition: height 1s 0.55s ease-in-out;
}

.glass-college .gc-say-less::after {
  background-color: var(--gc-say-fill);
  z-index: -2;
  transition: height 1s 0.35s ease-in-out;
}

.glass-college .gc-say-less__text {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--gc-say-fill);
  background-image: linear-gradient(transparent 50%, #fff 50%);
  background-size: 100% 200%;
  background-position: top;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.8s ease-in-out, -webkit-text-stroke-color 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .glass-college .gc-say-less:hover::before,
  .glass-college .gc-say-less:hover::after {
    height: 100%;
  }
  .glass-college .gc-say-less:hover .gc-say-less__text {
    background-position: bottom;
    -webkit-text-stroke-color: #fff;
  }
}

@media (prefers-reduced-motion: reduce) {
  .glass-college .gc-say-less::before,
  .glass-college .gc-say-less::after,
  .glass-college .gc-say-less__text {
    transition: none;
  }
  .glass-college .gc-say-less:hover::before,
  .glass-college .gc-say-less:hover::after {
    height: 100%;
  }
  .glass-college .gc-say-less:hover .gc-say-less__text {
    background-position: bottom;
  }
}

html[data-theme="dark"] .glass-college .gc-say-less {
  --gc-say-accent: var(--gc-brand, #009fe3);
  --gc-say-fill: var(--gc-brand2, #4cc4f0);
  border-color: var(--gc-say-accent);
}
html[data-theme="dark"] .glass-college .gc-say-less::before {
  background-color: var(--gc-say-accent);
}
html[data-theme="dark"] .glass-college .gc-say-less__text {
  -webkit-text-stroke-color: var(--gc-say-accent);
}


/* Hero “Work life” — variable font width/weight swap on hover */
.glass-college .gc-hero-line--worklife {
  display: block;
  max-width: 100%;
  padding-inline: 0.15em;
}

.glass-college .gc-work-life {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.14em;
  min-width: 9.5ch; /* room for expanded wdth */
  padding-inline: 0.22em;
  margin-inline: 0.06em;
  font-family: "Inconsolata VF", "Inconsolata", ui-monospace, monospace;
  font-size: clamp(1.28em, 1.55em, 1.7em);
  line-height: 1.02;
  white-space: nowrap;
  vertical-align: baseline;
  cursor: default;
}

.glass-college .gc-work-life__work,
.glass-college .gc-work-life__life {
  display: inline-block;
  transition: font-variation-settings 0.55s cubic-bezier(0.17, 0.04, 0.04, 0.99);
  will-change: font-variation-settings;
}

/* Default: Work expanded, life condensed (opposing like the demo) */
.glass-college .gc-work-life__work {
  font-variation-settings: "wght" 900, "wdth" 200;
  color: var(--gc-lime, #42c83f);
}
.glass-college .gc-work-life__life {
  font-variation-settings: "wght" 275, "wdth" 50;
  color: var(--gc-blue, #078fec);
}

@media (hover: hover) and (pointer: fine) {
  .glass-college .gc-work-life:hover .gc-work-life__work,
  .glass-college .gc-work-life:focus-visible .gc-work-life__work {
    font-variation-settings: "wght" 275, "wdth" 50;
  }
  .glass-college .gc-work-life:hover .gc-work-life__life,
  .glass-college .gc-work-life:focus-visible .gc-work-life__life {
    font-variation-settings: "wght" 900, "wdth" 200;
  }
}

@media (prefers-reduced-motion: reduce) {
  .glass-college .gc-work-life__work,
  .glass-college .gc-work-life__life {
    transition: none;
    font-variation-settings: "wght" 700, "wdth" 100;
  }
}

.glass-college .gc-hero-rest {
  display: block;
  max-width: min(44rem, 100%);
  margin-inline: auto;
  font-family: inherit;
  font-size: clamp(0.34em, 0.4em, 0.44em);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  color: var(--gc-ink);
  opacity: 0.78;
  vertical-align: middle;
}

.glass-college .gc-hero-line--worklife {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  max-width: min(48rem, 100%);
  margin-inline: auto;
}

.glass-college .gc-hero-line--worklife .gc-work-life {
  display: inline-flex;
}





/* ===== Get class help — liquid fill (brand blue) ===== */
.glass-college .gc-btn-dark .gc-btn {
  --p: 0.2em;
  --t: 0s;
  position: relative;
  overflow: hidden;
  color: var(--gc-brand, #009fe3);
  border: 2px solid var(--gc-brand, #009fe3);
  background: linear-gradient(var(--gc-brand, #009fe3) 0 0) no-repeat
    calc(200% - var(--p)) 100% / 200% var(--p);
  box-shadow: var(--gc-shadow-raised-sm);
  transition:
    color 0.3s ease,
    transform 0.2s var(--gc-ease),
    box-shadow 0.2s var(--gc-ease),
    0.3s var(--t),
    background-position 0.3s calc(0.3s - var(--t));
}

.glass-college .gc-btn-dark .gc-btn:hover,
.glass-college .gc-btn-dark .gc-btn:focus-visible {
  --p: 100%;
  --t: 0.3s;
  color: #fff;
  box-shadow: 10px 10px 22px rgba(0, 159, 227, 0.34), -8px -8px 18px #ffffff,
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

html[data-theme="dark"] .glass-college .gc-btn-dark .gc-btn {
  color: var(--gc-brand2, #4cc4f0);
  border-color: var(--gc-brand2, #4cc4f0);
  background: linear-gradient(var(--gc-brand, #009fe3) 0 0) no-repeat
    calc(200% - var(--p)) 100% / 200% var(--p);
  box-shadow: var(--gc-shadow-raised-sm);
}
html[data-theme="dark"] .glass-college .gc-btn-dark .gc-btn:hover,
html[data-theme="dark"] .glass-college .gc-btn-dark .gc-btn:focus-visible {
  color: #fff;
}

html[data-theme="dark"] .glass-college .gc-btn-dark .gc-btn:hover,
html[data-theme="dark"] .glass-college .gc-btn-dark .gc-btn:focus-visible {
  box-shadow: 10px 10px 22px rgba(0, 159, 227, 0.4), -8px -8px 18px #322e42,
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

@media (prefers-reduced-motion: reduce) {
  .glass-college .gc-btn-dark .gc-btn {
    transition: color 0.15s ease, box-shadow 0.15s ease;
    background: linear-gradient(135deg, var(--gc-brand), var(--gc-brand2));
  }
  .glass-college .gc-btn-dark .gc-btn:hover,
  .glass-college .gc-btn-dark .gc-btn:focus-visible {
    --p: 100%;
    --t: 0s;
  }
}

/* ===== See how it works — liquid fill (lime green, matching "work") ===== */
.glass-college .gc-btn-lime {
  display: inline-flex;
  align-self: flex-start;
  border-radius: var(--gc-r-btn);
  background: transparent;
  box-shadow: none;
  position: relative;
}

.glass-college .gc-btn-lime::after {
  content: none;
}

.glass-college .gc-btn-lime .gc-btn {
  --p: 0.2em;
  --t: 0s;
  position: relative;
  overflow: hidden;
  color: var(--gc-lime, #42c83f);
  border: 2px solid var(--gc-lime, #42c83f);
  background: linear-gradient(var(--gc-lime, #42c83f) 0 0) no-repeat
    calc(200% - var(--p)) 100% / 200% var(--p);
  box-shadow: var(--gc-shadow-raised-sm);
  transition:
    color 0.3s ease,
    transform 0.2s var(--gc-ease),
    box-shadow 0.2s var(--gc-ease),
    0.3s var(--t),
    background-position 0.3s calc(0.3s - var(--t));
}

.glass-college .gc-btn-lime .gc-btn span[aria-hidden="true"] {
  display: inline-block;
  transition: transform 0.2s var(--gc-ease);
}

.glass-college .gc-btn-lime .gc-btn:hover,
.glass-college .gc-btn-lime .gc-btn:focus-visible {
  --p: 100%;
  --t: 0.3s;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 10px 10px 22px rgba(66, 200, 63, 0.36), -8px -8px 18px #ffffff,
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.glass-college .gc-btn-lime .gc-btn:hover span[aria-hidden="true"],
.glass-college .gc-btn-lime .gc-btn:focus-visible span[aria-hidden="true"] {
  transform: translateX(3px);
}

.glass-college .gc-btn-lime.gc-btn-block {
  width: 100%;
}

.glass-college .gc-btn-lime.gc-btn-block .gc-btn {
  width: 100%;
}

html[data-theme="dark"] .glass-college .gc-btn-lime .gc-btn {
  color: var(--gc-lime, #b8e86a);
  border-color: var(--gc-lime, #b8e86a);
  background: linear-gradient(var(--gc-lime, #b8e86a) 0 0) no-repeat
    calc(200% - var(--p)) 100% / 200% var(--p);
  box-shadow: var(--gc-shadow-raised-sm);
}

html[data-theme="dark"] .glass-college .gc-btn-lime .gc-btn:hover,
html[data-theme="dark"] .glass-college .gc-btn-lime .gc-btn:focus-visible {
  color: #14181f;
  text-shadow: none;
  box-shadow: 10px 10px 22px rgba(184, 232, 106, 0.4), -8px -8px 18px #322e42,
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

@media (prefers-reduced-motion: reduce) {
  .glass-college .gc-btn-lime .gc-btn {
    transition: color 0.15s ease, box-shadow 0.15s ease;
    background: var(--gc-lime, #42c83f);
    color: #fff;
  }
  .glass-college .gc-btn-lime .gc-btn:hover,
  .glass-college .gc-btn-lime .gc-btn:focus-visible {
    --p: 100%;
    --t: 0s;
  }
}

/* ===== Nav links — spectrum glow (site colors) ===== */
.glass-college .gc-nav-links a:not(.gc-nav-mobile-cta) {
  position: relative;
  z-index: 0;
  overflow: visible;
  isolation: isolate;
  background: transparent;
  transition: color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.glass-college .gc-nav-links a:not(.gc-nav-mobile-cta)::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: -1;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: inherit;
  background: linear-gradient(
    45deg,
    var(--gc-coral),
    var(--gc-orange),
    var(--gc-yellow),
    var(--gc-lime),
    var(--gc-teal),
    var(--gc-blue),
    var(--gc-brand),
    var(--gc-violet),
    var(--gc-magenta),
    var(--gc-coral)
  );
  background-size: 400%;
  filter: blur(5px);
  opacity: 0;
  animation: gc-nav-glowing 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}

.glass-college .gc-nav-links a:not(.gc-nav-mobile-cta)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--gc-surface, #e4e0ef);
  pointer-events: none;
}

.glass-college .gc-nav-links a:not(.gc-nav-mobile-cta):hover::before,
.glass-college .gc-nav-links a:not(.gc-nav-mobile-cta):focus-visible::before {
  opacity: 1;
}

.glass-college .gc-nav-links a:not(.gc-nav-mobile-cta):hover,
.glass-college .gc-nav-links a:not(.gc-nav-mobile-cta):focus-visible {
  color: var(--gc-ink);
  text-decoration: none;
  box-shadow: none;
}

.glass-college .gc-nav-links a:not(.gc-nav-mobile-cta)[aria-current="page"] {
  color: var(--gc-brand);
  box-shadow: none;
}

.glass-college .gc-nav-links a:not(.gc-nav-mobile-cta)[aria-current="page"]::after {
  box-shadow: var(--gc-shadow-pressed);
}

.glass-college .gc-nav-links a:not(.gc-nav-mobile-cta):active {
  color: var(--gc-brand-dark, #007ab8);
}

.glass-college .gc-nav-links a:not(.gc-nav-mobile-cta):active::after {
  background: transparent;
}

@keyframes gc-nav-glowing {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}

html[data-theme="dark"] .glass-college .gc-nav-links a:not(.gc-nav-mobile-cta)::after {
  background: var(--gc-surface, #221f2e);
}

html[data-theme="dark"] .glass-college .gc-nav-links a:not(.gc-nav-mobile-cta):hover,
html[data-theme="dark"] .glass-college .gc-nav-links a:not(.gc-nav-mobile-cta):focus-visible {
  color: #f3f1f8;
}

@media (prefers-reduced-motion: reduce) {
  .glass-college .gc-nav-links a:not(.gc-nav-mobile-cta)::before {
    animation: none;
    background-position: 0 0;
  }
}

@media (max-width: 900px) {
  /* Mobile drawer links: keep glow but don't fight full-width tap rows */
  .glass-college .gc-nav-links a:not(.gc-nav-mobile-cta)::before {
    filter: blur(4px);
  }
}


/* About intro — full-width spread (not one cramped glass square) */
.glass-college .gc-about-spread {
  background: var(--gc-surface);
  padding: clamp(2.4rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3.5rem);
}
.glass-college .gc-about-spread__inner {
  max-width: min(72rem, 100%);
  margin-inline: auto;
}
.glass-college .gc-about-spread__title {
  max-width: 18ch;
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0.35rem 0 0;
}
.glass-college .gc-about-spread--lead {
  padding-top: 0;
  padding-bottom: clamp(2.8rem, 6vw, 4.5rem);
}
.glass-college .gc-about-spread__grid {
  max-width: min(72rem, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.6rem) clamp(1.6rem, 4vw, 3.5rem);
}
.glass-college .gc-about-spread__p {
  margin: 0;
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  line-height: 1.55;
  color: var(--gc-body);
  max-width: 34rem;
}
.glass-college .gc-about-spread__p--wide {
  grid-column: 1 / -1;
  max-width: 52rem;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  color: var(--gc-ink);
  font-weight: 600;
}
@media (max-width: 760px) {
  .glass-college .gc-about-spread__grid { grid-template-columns: 1fr; }
  .glass-college .gc-about-spread__title { max-width: none; }
}

/* Auth pages — stable frame so Sign up does not jump aspect ratio */
.glass-college.gc-login-body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: clamp(1rem, 2.5vw, 2rem);
  background: var(--gc-surface);
}
.glass-college .gc-login-frame {
  width: min(74rem, 100%);
  min-height: min(46rem, calc(100dvh - 2rem));
  display: flex;
  flex-direction: column;
}
.glass-college .gc-login-grid {
  flex: 1;
  min-height: min(46rem, calc(100dvh - 2rem));
  grid-template-columns: minmax(22rem, 28rem) minmax(0, 1fr);
  align-items: stretch;
}
.glass-college .gc-login-form-panel {
  min-height: 100%;
  justify-content: flex-start;
  padding-top: clamp(1.8rem, 3.5vw, 3.2rem);
  padding-bottom: clamp(1.8rem, 3.5vw, 3.2rem);
  background: var(--gc-surface);
}
.glass-college .gc-login-photo {
  min-height: 100%;
}
.glass-college .clerk-frame,
.glass-college #clerk-sign-up,
.glass-college #clerk-sign-in {
  min-height: 18rem;
  width: 100%;
}
.glass-college .gc-auth-fallback {
  margin-top: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: var(--gc-r-md);
  background: var(--gc-surface);
  box-shadow: var(--gc-shadow-pressed);
  color: var(--gc-body);
  font-size: 0.95rem;
  line-height: 1.55;
}
.glass-college .gc-auth-fallback a {
  color: var(--gc-brand);
  font-weight: 700;
}
.glass-college .gc-plan-badge { display: none !important; }
@media (max-width: 900px) {
  .glass-college .gc-login-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .glass-college .gc-login-photo {
    min-height: 14rem;
    order: -1;
  }
  .glass-college .gc-login-waves { display: none; }
}


/* ===== Floating fixed nav card (matches hero/card neu language) ===== */
.glass-college {
  --gc-nav-inset: clamp(0.75rem, 2.2vw, 1.5rem);
  --gc-nav-card-h: 4.35rem;
  --gc-nav-offset: calc(var(--gc-nav-inset) + var(--gc-nav-card-h) + 0.65rem);
  padding-top: var(--gc-nav-offset);
}
.glass-college .gc-nav--fixed {
  position: fixed;
  top: var(--gc-nav-inset);
  left: var(--gc-nav-inset);
  right: var(--gc-nav-inset);
  z-index: 200;
  width: auto;
  max-width: none;
  box-sizing: border-box;
  border-radius: var(--gc-r-glass, 1.75rem);
  /* frosted card so scrolling content softens underneath */
  background: color-mix(in srgb, var(--gc-surface, #e4e0ef) 82%, #9b8fc4 6%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow:
    var(--gc-shadow-raised, 8px 8px 18px #c3bdd8, -8px -8px 18px #ffffff),
    0 0 0 1px rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  padding: 0.7rem clamp(0.95rem, 2vw, 1.55rem);
  isolation: isolate;
  transition: box-shadow 0.25s ease, transform 0.25s ease, padding 0.25s ease, background 0.25s ease;
}
.glass-college .gc-nav--fixed > * {
  position: relative;
  z-index: 1;
}

/* Soft bokeh halo — expanded veil + floating orbs around the nav */
.glass-college .gc-nav--fixed::before {
  content: "";
  position: absolute;
  inset: -3.25rem -4rem;
  z-index: -2;
  border-radius: calc(var(--gc-r-glass, 1.75rem) + 2.5rem);
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 90% at 50% 50%, rgba(228, 224, 239, 0.82) 0%, rgba(228, 224, 239, 0.48) 38%, rgba(228, 224, 239, 0.22) 58%, transparent 78%),
    radial-gradient(circle at 12% 28%, rgba(0, 159, 227, 0.28), transparent 34%),
    radial-gradient(circle at 88% 35%, rgba(148, 87, 224, 0.24), transparent 36%),
    radial-gradient(circle at 50% 95%, rgba(66, 200, 63, 0.16), transparent 40%),
    radial-gradient(circle at 30% 80%, rgba(237, 52, 137, 0.14), transparent 32%),
    radial-gradient(circle at 70% 12%, rgba(255, 213, 26, 0.14), transparent 30%);
  -webkit-backdrop-filter: blur(36px) saturate(1.25);
  backdrop-filter: blur(36px) saturate(1.25);
  -webkit-mask-image: radial-gradient(ellipse 82% 78% at 50% 50%, #000 28%, rgba(0,0,0,0.55) 55%, transparent 82%);
  mask-image: radial-gradient(ellipse 82% 78% at 50% 50%, #000 28%, rgba(0,0,0,0.55) 55%, transparent 82%);
}
/* Extra bokeh orbs layer */
.glass-college .gc-nav--fixed::after {
  content: "";
  position: absolute;
  inset: -4.5rem -5.25rem;
  z-index: -3;
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle 2.4rem at 8% 40%, rgba(0, 159, 227, 0.35), transparent 70%),
    radial-gradient(circle 1.7rem at 18% 70%, rgba(76, 196, 240, 0.28), transparent 70%),
    radial-gradient(circle 2.1rem at 92% 30%, rgba(148, 87, 224, 0.32), transparent 70%),
    radial-gradient(circle 1.4rem at 84% 75%, rgba(237, 52, 137, 0.26), transparent 70%),
    radial-gradient(circle 1.9rem at 42% 8%, rgba(255, 213, 26, 0.22), transparent 70%),
    radial-gradient(circle 2.6rem at 58% 92%, rgba(66, 200, 63, 0.22), transparent 70%),
    radial-gradient(circle 1.2rem at 28% 18%, rgba(18, 200, 174, 0.2), transparent 70%),
    radial-gradient(circle 1.5rem at 72% 55%, rgba(0, 159, 227, 0.18), transparent 70%);
  filter: blur(10px);
  opacity: 0.95;
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 50%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 75% 70% at 50% 50%, #000 20%, transparent 75%);
  animation: gc-nav-bokeh 14s ease-in-out infinite alternate;
}
@keyframes gc-nav-bokeh {
  from { transform: scale(1) translate(0, 0); opacity: 0.85; }
  to { transform: scale(1.06) translate(0.4%, -0.6%); opacity: 1; }
}
.glass-college .gc-nav--fixed.gc-nav--scrolled {
  background: color-mix(in srgb, var(--gc-surface, #e4e0ef) 86%, transparent);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  backdrop-filter: blur(22px) saturate(1.25);
  box-shadow:
    var(--gc-shadow-raised-hover, 10px 10px 22px #c3bdd8, -10px -10px 22px #ffffff),
    0 0 0 1px rgba(255, 255, 255, 0.65);
  padding-block: 0.58rem;
}
.glass-college .gc-nav--fixed.gc-nav--scrolled::before {
  inset: -3.75rem -4.5rem;
  -webkit-backdrop-filter: blur(44px) saturate(1.3);
  backdrop-filter: blur(44px) saturate(1.3);
}
.glass-college .gc-nav--fixed.gc-nav--scrolled::after {
  inset: -5rem -5.75rem;
  filter: blur(12px);
  opacity: 1;
}
/* Hero glass is a standalone card — full radius, no nav attached */
.glass-college .gc-band--hero > .gc-glass--hero {
  border-radius: var(--gc-r-glass);
  overflow: hidden;
}
.glass-college .gc-band--hero {
  margin-top: 0;
}
html[data-theme="dark"] .glass-college .gc-nav--fixed {
  background: color-mix(in srgb, var(--gc-surface, #221f2e) 78%, transparent);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    var(--gc-shadow-raised, 8px 8px 18px #14121c, -8px -8px 18px #322e42),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}
html[data-theme="dark"] .glass-college .gc-nav--fixed::before {
  background:
    radial-gradient(ellipse 85% 90% at 50% 50%, rgba(34, 31, 46, 0.75) 0%, rgba(34, 31, 46, 0.35) 40%, transparent 78%),
    radial-gradient(circle at 12% 28%, rgba(0, 159, 227, 0.28), transparent 34%),
    radial-gradient(circle at 88% 35%, rgba(148, 87, 224, 0.26), transparent 36%),
    radial-gradient(circle at 50% 95%, rgba(66, 200, 63, 0.14), transparent 40%),
    radial-gradient(circle at 30% 80%, rgba(237, 52, 137, 0.16), transparent 32%);
}
html[data-theme="dark"] .glass-college .gc-nav--fixed::after {
  background:
    radial-gradient(circle 2.4rem at 8% 40%, rgba(0, 159, 227, 0.4), transparent 70%),
    radial-gradient(circle 1.7rem at 18% 70%, rgba(76, 196, 240, 0.3), transparent 70%),
    radial-gradient(circle 2.1rem at 92% 30%, rgba(148, 87, 224, 0.36), transparent 70%),
    radial-gradient(circle 1.4rem at 84% 75%, rgba(237, 52, 137, 0.3), transparent 70%),
    radial-gradient(circle 1.9rem at 42% 8%, rgba(255, 213, 26, 0.18), transparent 70%),
    radial-gradient(circle 2.6rem at 58% 92%, rgba(66, 200, 63, 0.2), transparent 70%);
}
html[data-theme="dark"] .glass-college .gc-nav--fixed.gc-nav--scrolled {
  background: color-mix(in srgb, var(--gc-surface, #221f2e) 88%, transparent);
  box-shadow:
    var(--gc-shadow-raised-hover, 10px 10px 22px #14121c, -10px -10px 22px #322e42),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}
@media (max-width: 1024px) {
  .glass-college {
    --gc-nav-card-h: 4.1rem;
  }
  .glass-college .gc-nav--fixed .gc-nav-links {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    width: 100%;
    border-radius: var(--gc-r-lg, 1.3rem);
  }
}
@media (max-width: 640px) {
  .glass-college {
    --gc-nav-inset: 0.65rem;
    --gc-nav-card-h: 3.95rem;
  }
  .glass-college .gc-nav--fixed {
    border-radius: calc(var(--gc-r-glass, 1.75rem) - 0.25rem);
    padding-inline: 0.8rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .glass-college .gc-nav--fixed {
    transition: none;
  }
  .glass-college .gc-nav--fixed::before {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    opacity: 0.75;
  }
  .glass-college .gc-nav--fixed::after {
    animation: none;
    opacity: 0.7;
  }
}

.glass-college #how-it-works,
.glass-college #testimonials,
.glass-college #before-after {
  scroll-margin-top: calc(var(--gc-nav-offset, 5.15rem) + 0.75rem);
}


/* Continuous page surface — no white body strip between footer and social */
html:has(.glass-college),
body:has(.glass-college) {
  background: var(--gc-surface, #e4e0ef) !important;
}
.glass-college {
  background: var(--gc-surface, #e4e0ef);
}
.glass-college .gc-footer {
  background: transparent;
  border-top: none;
}

html[data-theme="dark"]:has(.glass-college),
html[data-theme="dark"] body:has(.glass-college) {
  background: var(--gc-surface, #221f2e) !important;
}

/* Softened logo-tint faces on section boxes (aurora removed) */
.glass-college .gc-glass,
.glass-college .gc-glass--hero,
.glass-college .gc-guidance,
.glass-college .gc-loop,
.glass-college .gc-reviews {
  background: var(--gc-surface) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

/* ============================================================
   Student Review Pagination & Mobile Rail
   ============================================================ */
.glass-college .gc-review-card[data-review-group] {
  transition: opacity 0.35s ease, transform 0.35s var(--gc-ease), box-shadow 0.35s var(--gc-ease);
}

@media (max-width: 1023px) {
  .glass-college .gc-review-card[data-review-group] {
    display: flex !important;
  }
  .glass-college .gc-reviews-switcher {
    display: none !important;
  }
}
