/* DNN Skin CSS – Tailwind-like responsive feel, reduced motion */
:root{
  --bg-top:#f8fafc; --bg-mid:#ffffff; --bg-bot:#eef2ff;
  --text:#0f172a; --muted:#475569; --muted-2:#64748b;
  --border:#e2e8f0; --border-2:#cbd5e1;
  --indigo-50:  #eef2ff;
  --indigo-100: #e0e7ff;
  --indigo-200: #c7d2fe;
  --indigo-300: #a5b4fc;
  --indigo-400: #818cf8;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;
  --indigo-800: #3730a3;
  --indigo-900: #312e81;
  --indigo-950: #1e1b4b;
  --radius-xl:1rem; --radius-2xl:1.25rem; --radius-3xl:1.75rem;
  --shadow-sm:0 1px 2px rgba(0,0,0,.06);
  --shadow-md:0 8px 24px rgba(2,6,23,.08);
  --text-xs: 0.75rem;
    --text-xs--line-height: calc(1 / 0.75);
    --text-sm: 0.875rem;
    --text-sm--line-height: calc(1.25 / 0.875);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --text-3xl: 1.875rem;
    --text-3xl--line-height: calc(2.25 / 1.875);
    --text-4xl: 2.25rem;
    --text-4xl--line-height: calc(2.5 / 2.25);
    --text-5xl: 3rem;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-extrabold: 800;
    /* line heights (common Tailwind pairings) */
  --leading-none: 1;
  --leading-tight: 1.25;      /* leading-tight */
  --leading-snug: 1.375;      /* leading-snug */
  --leading-normal: 1.5;      /* leading-normal */
  --leading-relaxed: 1.625;   /* leading-relaxed */
  --leading-loose: 2;         /* leading-loose */

  /* explicit rem line-heights used in headings */
  --leading-7: 1.75rem;  /* 28px */
  --leading-8: 2rem;     /* 32px */
  --leading-9: 2.25rem;  /* 36px */
  --leading-10: 2.5rem;  /* 40px */

  /* letter-spacing examples */
  --tracking-wide: 0.05em;


--input-radius: 0.5rem;           /* rounded-lg */
  --input-border: 1px solid #d1d5dc;/* border-gray-200 */
  --input-bg: #ffffff;
  --input-bg-muted: #f9fafb;        /* gray-50 */
  --input-text: #111827;            /* gray-900 */
  --input-placeholder: #9ca3af;     /* gray-400 */

  --input-border-hover: #d1d5db;    /* gray-300 */
  --input-border-focus: #6366f1;    /* indigo-500 */
  --input-ring: rgba(129, 140, 248, 0.35); /* indigo-400/35 */
  --input-border-error: #ef4444;    /* red-500 */
  --input-border-success: #10b981;  /* emerald-500 */

  --input-disabled-bg: #f3f4f6;     /* gray-100 */
  --input-disabled-text: #9ca3af;   /* gray-400 */


}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; 
  font-family: "Segoe UI", "Segoe UI Variable", SegoeUI,
               -apple-system, system-ui, Roboto, "Helvetica Neue", Arial,
               "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 16px;
  color:var(--text);
  background: #FCFCFD;
}

body > form {
  min-height: 100dvh;        /* fill viewport, mobile-safe */
  display: flex;
  flex-direction: column;    /* header, main, footer stacked */
}

/* Ensure the middle fills, footer pushes to bottom */
.app-header { flex: 0 0 auto; }
main        { flex: 1 0 auto; }
.app-footer { flex: 0 0 auto; margin-top: 0; }  /* no auto margin needed now */

.ui-widget {
  font-family: "Segoe UI", "Segoe UI Variable", SegoeUI,
               -apple-system, system-ui, Roboto, "Helvetica Neue", Arial,
               "Apple Color Emoji", "Segoe UI Emoji";
}

/* Background for the main content area */
#main {
  /* use your actual image path here */
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("/Portals/0/Skins/CT-2025-purple/images/ct-bg-blur.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;     /* stretch nicely */
  background-attachment: scroll; /* or fixed if you want a parallax feel */
}

/* Optional: make sure main is tall enough to show the gradient */
#main {
  min-height: 100vh;          /* at least full viewport height */
}



/* ---------- Headings mapped to the scale ---------- */
h1 {
  font-size: var(--text-5xl);     /* 3rem */
  line-height: var(--leading-none);
  font-weight: 800;               /* bold */
}

h2 {
  font-size: var(--text-4xl);     /* 2.25rem */
  line-height: var(--leading-10); /* 2.5rem */
  font-weight: 700;               /* semibold */
}

h3 {
  font-size: var(--text-3xl);     /* 1.875rem */
  line-height: var(--leading-9);  /* 2.25rem */
  font-weight: 700;               /* medium */
}

h4 {
  font-size: var(--text-2xl);     /* 1.5rem */
  line-height: var(--leading-8);  /* 2rem */
  font-weight: 500;
}

h5 {
  font-size: var(--text-xl);      /* 1.25rem */
  line-height: var(--leading-7);  /* 1.75rem */
  font-weight: 500;
}

h6 {
  font-size: var(--text-lg);      /* 1.125rem */
  line-height: var(--leading-7);  /* 1.75rem */
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  font-weight: 600;
}

.content-header-center {
  text-align: center;
  max-width: 800px;
margin: 0 auto;       /* centers the div itself in its parent */
  display: block;       /* usually default, but explicit is safe */
}

.content-header-center #hero-title {
  color: #222;
  margin-bottom: 25px;
}



a{color:var(--indigo-700); text-decoration:none}
a:hover{text-decoration:underline}

.Normal {font-size: 16px;}

/* Containers (Tailwind-like) */
.container{width:100%;margin-inline:auto;padding-inline:1rem;color:var(--text);}
@media(min-width:640px){.container{max-width:640px;padding-inline:1.5rem}}
@media(min-width:768px){.container{max-width:768px}}
@media(min-width:1024px){.container{max-width:1024px;padding-inline:2rem}}
@media(min-width:1280px){.container{max-width:1280px}}
@media(min-width:1536px){.container{max-width:1536px}}

.center{display:flex;align-items:center;justify-content:center}

/* Sections */

.white-bg {background:#fff;border-top:1px solid var(--border);padding:2.75rem 0}
.clear-bg {border-top:1px solid var(--border);padding:2.75rem 0}


.muted{color:var(--muted)}

/* Header */
.app-header{position:sticky;top:0;z-index:40;border-bottom:1px solid var(--border);background:rgba(255,255,255,.7);backdrop-filter:saturate(180%) blur(8px)}
.app-header__bar{height:4rem;display:flex;align-items:center;justify-content:space-between;gap:1rem}
.brand{display:flex;align-items:center;gap:.6rem}
.brand__logo{width:15rem;height:3.25rem;display:grid;place-items:center;border-radius:.75rem;}
.brand__name{font-weight:800;letter-spacing:.2px}
.nav{display:none;gap:1.25rem}
.nav a{color:#334155;font-size:.95rem}
.nav a:hover{color:#0f172a}
.header-cta{display:flex;gap:.5rem}
@media(min-width:768px){.nav{display:flex}}

/* Header bar layout */
.app-header__bar{
  display:flex; align-items:center; gap:1rem; min-height:4rem;
}

/* Left side holds brand + nav; it expands */
.header-left{
  display:flex; align-items:center; gap:1rem; flex:1 1 auto; min-width:0;
}

/* Right side is just the user area; it hugs the right edge */
.header-right{
  display:flex; align-items:center; gap:.5rem; flex:0 0 auto;
}

/* Brand spacing so the nav tucks right after it on large screens */
.brand{display:flex; align-items:center; gap:.6rem; white-space:nowrap}

/* Keep the desktop nav from crowding the brand */
@media (min-width:768px){
  .site-navjq{ margin-left:.75rem; }
}

/* Mobile: the hamburger stays next to the brand; the panel logic you already have continues to work */
@media (max-width:767.98px){
  .site-navjq{ display:flex; align-items:center; gap:.5rem; }
}

/* =========================
   NAV: Tailwind-y jQuery Menu
   ========================= */

/* Vars + layering */
:root { --header-h: 64px; }                 /* JS will update to your .app-header height */
.site-navjq { position: relative; z-index: 90; }

/* Hamburger toggle — hidden by default (desktop), shown on mobile */
.nav-mobile-toggle { display: none; }
@media (max-width: 767.98px) {
  .nav-mobile-toggle {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 2.25rem; height: 2.25rem;
    border-radius: .75rem;
    border: 1px solid var(--border, #e2e8f0);
    background: #fff;
  }
}

/* Toggle icons: burger ↔ X, driven by aria-expanded on the button */
.nav-mobile-toggle .icon-burger,
.nav-mobile-toggle .icon-close { width: 1.25rem; height: 1.25rem; }
.nav-mobile-toggle .icon-close { display: none; }
.nav-mobile-toggle[aria-expanded="true"] .icon-burger { display: none; }
.nav-mobile-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Menubar base */
.menujq {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: row; gap: 1rem; /* desktop */
}

/* MOBILE: slide-down panel UNDER the sticky header */
@media (max-width: 767.98px) {
  .menujq { display: none; }                 /* hidden until opened */
  .menujq.is-open {
    display: flex;
    flex-direction: column;
    gap: .25rem;

    position: fixed;
    top: var(--header-h, 64px);
    left: 0; right: 0;

    background: #fff;
    border-top: 1px solid var(--border, #e2e8f0);
    box-shadow: 0 16px 40px rgba(2,6,23,.18);
    padding: .75rem 1rem 1rem;

    /* grows to content; only scroll if content would overflow */
    max-height: calc(100dvh - var(--header-h, 64px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;

    z-index: 80;
  }
}

/* Top-level items + chevron */
.menu-itemjq { position: relative; }
.nav-linkjq {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; font-size: .95rem;
  color: #334155; text-decoration: none !important;
  padding: .5rem .75rem; border-radius: .75rem;
  border: 1px solid transparent; background: transparent;
}
.nav-linkjq:hover { color: #0f172a; background: #f8fafc; border-color: #e2e8f0; }
.nav-linkjq:focus-visible { outline: 2px solid #6366f1; outline-offset: 2px; }
.chevjq { width: 1rem; height: 1rem; transition: transform .18s ease; }
.has-subjq[aria-expanded="true"] .chevjq { transform: rotate(180deg); }

/* Desktop dropdown (popover) */
.dropdownjq {
  position: absolute; left: 0; top: calc(100% + .5rem);
  min-width: 14rem; padding: .5rem; margin: 0; list-style: none;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(2,6,23,.08);
  display: none; z-index: 60;
}
.dropdownjq.is-open { display: block; }

/* Dropdown links */
.dropdown-linkjq {
  display: flex; align-items: center; gap: .5rem;
  padding: .5rem .625rem; border-radius: .5rem;
  font-size: .925rem; color: #4338ca; text-decoration: none !important;
  font-weight: 500;
}
.dropdown-linkjq:hover, .dropdown-linkjq:focus {
  background: #f1f5f9; color: #0f172a; outline: none;
}

/* MOBILE: dropdowns behave like accordions inside the panel */
@media (max-width: 767.98px) {
  .dropdownjq {
    position: static !important;
    display: none;
    margin-top: .25rem;
    border: 1px solid var(--border, #e2e8f0);
    border-radius: .75rem;
    background: #fff;
    box-shadow: none;
  }
  .dropdownjq.is-open { display: block; }

  /* Make parent buttons full-width touch targets on mobile */
  .nav-linkjq {
    width: 100%;
    justify-content: space-between;
    background: #fff;
    border: 1px solid transparent;
  }
  .nav-linkjq:hover {
    background: #f8fafc;
    border-color: var(--border, #e2e8f0);
  }
}


/* Panes */
.dnnPane{margin:1rem 0}

.dnnPane.DNNEmptyPane,
.dnnPane:empty {
  display: none !important;
}

/* Lucide icons */
.icon { width: 1.125rem; height: 1.125rem; vertical-align: middle; display:inline-block }
.icon > svg,
.lucide {
  display: block;          /* removes inline whitespace baseline quirks */
  width: 1em;              /* scales with font size */
  height: 1em;
  stroke: currentColor;
  stroke-width: 2;
}
.btn .icon > svg.lucide {
  height: 20px;
}


/* Buttons */
.btn1{text-decoration: none !important;display:inline-flex;align-items:center;gap:.5rem;font-weight:700;border-radius:1.25rem;padding:.65rem 1rem;border:1px solid transparent;background:#fff;color:#0f172a;box-shadow:var(--shadow-sm);cursor:pointer;transition:box-shadow .2s ease, background .2s ease}
.btn1:hover{box-shadow:var(--shadow-md)}
.btn1--primary, .btn1--primary:visited {background:var(--indigo-600);color:#fff}
.btn1--primary:hover, .btn1--primary:focus {background:var(--indigo-700);color:#fff}
.btn1--outline{border-color:var(--border-2)}
.btn1--block{display:block;width:100%}


/* ==========================
   jQuery UI → Your .btn style
   ========================== */

/* Base button: map to .btn */
.ui-button,
.ui-widget button.ui-button,
.ui-dialog .ui-dialog-buttonpane .ui-button,
.ui-datepicker .ui-state-default {
  text-decoration: none !important;
  font-weight: 700;
  border-radius: 1.25rem;
  padding: .65rem 1rem;
  border: 1px solid transparent;
  background: var(--indigo-600);
  color: #FFF !important;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition:
    box-shadow .2s ease,
    background .2s ease;
    font-size: 16px;
}

.ui-widget input.ui-button, .ui-widget button.ui-button {
  font-size: 16px;
}

/* Remove jQuery UI’s gradient / border leftovers */
.ui-button,
.ui-state-default {
  background-image: none !important;
  border-width: 1px !important;
}

/* Hover: map to .btn:hover */
.ui-button:hover,
.ui-widget button.ui-button:hover,
.ui-state-hover.ui-button,
.ui-button.ui-state-focus {
  box-shadow: var(--shadow-md);
  background:var(--indigo-700);
  font-weight: 700;
  border: 1px solid transparent;
}

/* ==========================
   Primary buttons
   (jQuery UI uses .ui-priority-primary)
   ========================== */

.ui-button.ui-priority-primary,
.ui-dialog .ui-dialog-buttonpane .ui-button.ui-priority-primary {
  background: var(--indigo-600) !important;  /* .btn--primary */
  color: #fff !important;
  border-color: transparent !important;
}

.ui-button.ui-priority-primary:hover,
.ui-dialog .ui-dialog-buttonpane .ui-button.ui-priority-primary:hover,
.ui-button.ui-priority-primary.ui-state-hover,
.ui-button.ui-priority-primary.ui-state-focus {
  background: var(--indigo-700) !important;  /* .btn--primary:hover */
  color: #fff !important;
}

/* ==========================
   Disabled state
   ========================== */

.ui-button.ui-state-disabled,
.ui-button:disabled,
.ui-state-disabled.ui-button {
  opacity: .6;
  cursor: default;
  box-shadow: none;
  
}

/* Optional: make dialog buttons full-width if desired */
.ui-dialog .ui-dialog-buttonpane .ui-button.btn--block {
  display: block;
  width: 100%;
}

/* jquery-ui overrides */

.ui-button.ui-corner-right, .ui-widget.ui-corner-right, button.ui-widget.ui-corner-right {
  border-radius: 0px;
      border-top-right-radius: 4px;
          border-bottom-right-radius: 4px;

}

.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
      font-family: "Segoe UI", "Segoe UI Variable", SegoeUI,
               -apple-system, system-ui, Roboto, "Helvetica Neue", Arial,
               "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 1em;
}


/* ==== A1 / Tailwind-style jQuery UI Tabs ==== */

/* Tabs container */
.ui-tabs, .ui-tabs.ui-widget-content {
  border: none;
  padding: 0;
  
  font-size: 0.875rem; /* text-sm */
}

/* Nav bar (the strip holding the tabs) */
.ui-tabs .ui-tabs-nav {
  margin: 0 0 0.75rem;
  padding: 0;
  border: none;
  background: transparent;
  display: flex;
  gap: 0.25rem;
  border-bottom: 1px solid #e5e7eb; /* slate-200 */
}

/* Each tab list item */
.ui-tabs .ui-tabs-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  position: relative;
  top: 0;
}

/* The clickable tab link */
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.9rem;
  border-radius: 0.75rem 0.75rem 0 0; /* round top corners only */
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  color: #4b5563; /* slate-600 */
  background-color: transparent;
  transition:
    background-color 150ms ease,
    color 150ms ease,
    border-color 150ms ease,
    box-shadow 150ms ease;
}

/* Hover / focus state for inactive tabs */
.ui-tabs .ui-tabs-nav .ui-tabs-anchor:hover,
.ui-tabs .ui-tabs-nav .ui-tabs-anchor:focus {
  background-color: var(--indigo-50);
  border-color: #e5e7eb; /* subtle outline */
  color: #111827;        /* slate-900 */
  outline: none;
}

/* Active tab (jQuery UI adds .ui-tabs-active + .ui-state-active) */
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-active .ui-tabs-anchor {
  background-color: #ffffff;
  color: #111827;
  border-color: transparent;
  border-bottom-color: #ffffff; /* visually merges with panel */
  
}

/* Optional:show an indigo underline for active tab */
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor::after,
.ui-tabs .ui-tabs-nav li.ui-state-active .ui-tabs-anchor::after {
  content: "";
  position: absolute;
  left: 0rem;
  right: 0rem;
  bottom: -1px;
  height: 3px;
  border-radius: 999px;
  background: var(--indigo-500);
}

/* Disabled tabs */
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Tab panels */
.ui-tabs .ui-tabs-panel {
  margin: 0;
  padding: 1rem 1.25rem;
  border-radius: 0 0.75rem 0.75rem 0.75rem;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  color: #111827;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

/* Remove old jQuery UI focus/outline junk */
.ui-tabs .ui-tabs-nav .ui-tabs-anchor:focus-visible {
  outline: 2px solid var(--indigo-500);
  outline-offset: 2px;
}

/* === Responsive tweaks === */





/* text formatting */
.text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
}
.font-semibold {
  font-weight: var(--font-weight-semibold);
 }

/* Cards */
.card{background:rgba(255,255,255,.95);border:1px solid var(--border);border-radius:var(--radius-3xl);padding:1.25rem;box-shadow:var(--shadow-sm);}

/* Grids */
.grid{display:grid;gap:1rem}
.grid--3{grid-template-columns:1fr}
@media(min-width:768px){.grid--3{grid-template-columns:repeat(3,1fr)}}
.grid--2{grid-template-columns:1fr}
@media(min-width:768px){.grid--2{grid-template-columns:repeat(2,1fr)}}
.grid--content{grid-template-columns:1fr}
@media(min-width:1024px){.grid--content{grid-template-columns:3fr 1fr}}




/* Hero */
.hero{position:relative;overflow:hidden;padding-block:3rem}
.hero__bg{position:absolute;inset:0;pointer-events:none}
.hero__grid{display:grid;gap:2rem;align-items:center}
@media(min-width:768px){.hero__grid{grid-template-columns:1fr 1fr;padding-block:2rem}}
.hero h1{font-size:2.2rem;line-height:1.15;margin:1rem 0; font-weight: 800;}
@media(min-width:640px){.hero h1{font-size:3rem}}
.hero .accent{color:var(--indigo-600)}
.lead{font-size:1.1rem;color:var(--muted);max-width:36rem}
.pill{display:inline-flex;gap:.5rem;align-items:center;border:1px solid var(--indigo-200);background:var(--indigo-50);color:#3730a3;padding:.35rem .6rem;border-radius:999px;font-weight:600;font-size:.8rem}
.hero__actions{display:flex;gap:.6rem;flex-wrap:wrap;margin-top:.75rem}
.trust-points{display:flex;gap:1rem;flex-wrap:wrap;margin:1rem 0 0;padding:0;list-style:none;color:var(--muted)}
.trust-points .icon{font-size:1rem}

/* Upload card */
.card__header{display:flex;align-items:center;gap:.75rem;margin-bottom:.75rem}
.card__icon{width:2.2rem;height:2.2rem;border-radius:.75rem;display:grid;place-items:center;background:color-mix(in oklab, var(--indigo-600) 90%, white);color:#fff}
.card__title{font-weight:700}
.card__subtitle{font-size:.82rem;color:var(--muted)}
.upload .label{font-size:.78rem;color:#64748b;font-weight:600}
.upload__grid{margin-top:.35rem;display:grid;gap:.5rem;grid-template-columns:1fr}
@media(min-width:520px){.upload__grid{grid-template-columns:1fr 1fr}}
.upload__item{border:1px dashed var(--border-2);border-radius:1rem;padding:1rem;text-align:center}
.file{font-weight:600}

/* Partners */
.partners{padding:2.5rem 0}
.eyebrow{font-size:.7rem;text-transform:uppercase;letter-spacing:.18em;color:#64748b;margin-bottom:.75rem}
.partners__grid{display:grid;gap:.75rem;grid-template-columns:1fr 1fr}
@media(min-width:640px){.partners__grid{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1024px){.partners__grid{grid-template-columns:repeat(6,1fr)}}
.partners__item{border:1px solid var(--border);background:#fff;border-radius:1rem;padding:.65rem;text-align:center;font-size:.8rem;color:#64748b;font-weight:700}

/* Section head */
.section-head{text-align:center;max-width:40rem;margin:0 auto 1.25rem}
.section-head h2{font-size:2rem;margin:0}
.section-head p{color:var(--muted);margin:.5rem 0 0}

/* How it works */
.how{background:#fff;border-top:1px solid var(--border);padding:2.75rem 0}
.step{height:100%}
.step__icon{width:3rem;height:3rem;border-radius:1rem;background:#eef2ff;display:grid;place-items:center;color:#4f46e5;font-weight:800;margin-bottom:.25rem}
.step__eyebrow{text-transform:uppercase;font-size:.7rem;letter-spacing:.12em;color:#64748b;margin:.25rem 0}

/* Stories */
.stories{padding:2.75rem 0}
.quote .avatar{width:2.5rem;height:2.5rem;border-radius:50%;background:#e0e7ff;display:grid;place-items:center;color:#4f46e5;margin-bottom:.5rem}
.quote__text{color:#1e293b}
.name{font-weight:600}

/* FAQ */
.faq{background:#fff;border-top:1px solid var(--border);padding:2.75rem 0}
.faq__item{display:flex;gap:.75rem}
.faq__icon{width:1.8rem;height:1.8rem;border-radius:.5rem;background:#eef2ff;display:grid;place-items:center;color:#4f46e5;font-weight:800}

/* CTA */
.cta{padding:2.5rem 0}
.cta__bar{display:flex;flex-direction:column;gap:1rem;align-items:center;justify-content:space-between;background:linear-gradient(to bottom right,#eef2ff,#fff)}
@media(min-width:768px){.cta__bar{flex-direction:row}}
.cta__bar h3{margin:.2rem 0 0}
.cta__actions{display:flex;gap:.6rem}

/* Footer */
.app-footer{background:#fff;border-top:1px solid var(--border);padding:2.5rem 0}
.footer__grid{display:grid;gap:1.25rem}
@media(min-width:768px){.footer__grid{grid-template-columns:repeat(4,1fr)}}
.footer__title{font-weight:700;margin-bottom:.35rem}
.brand--footer .brand__logo{width:15rem;height:3.25rem}
.copyright{text-align:center;font-size:.78rem;color:#64748b;margin-top:1.5rem}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important}
}



/* input */


.input,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="url"],
textarea,
select {
  width: 100%;
  border-radius: var(--input-radius);
  border: var(--input-border);
  background-color: var(--input-bg);
  color: var(--input-text);

  font-size: 1rem;   
  line-height: 1.25rem;
  padding: .75rem 1rem; 

  outline: none;
  box-shadow: 0 1px 2px rgb(15 23 42 / 0.04); /* subtle shadow */
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    background-color 150ms ease,
    color 150ms ease;
}

.input::placeholder,
input::placeholder,
textarea::placeholder {
  color: var(--input-placeholder);
}


/* Hover */
.input:hover,
input:hover,
textarea:hover,
select:hover {
  border-color: var(--input-border-hover);
}

/* Focus (Tailwind-like ring) */
.input:focus,
input:focus,
textarea:focus,
select:focus,
input[type="text"]:focus, input[type="url"]:focus, input[type="tel"]:focus, input[type="password"]:focus, input[type="number"]:focus, input[type="email"]:focus, .radiogroup input[type="radio"]:focus, .radiogroup input[type="radio"]:focus + label, textarea:focus, select:focus
 {
  border-color: var(--input-border-focus);
  box-shadow:
    0 0 0 1px var(--input-ring),
    0 0 0 2px var(--input-ring);
}

/* Disabled */
.input:disabled,
input:disabled,
textarea:disabled,
select:disabled {
  background-color: var(--input-disabled-bg);
  color: var(--input-disabled-text);
  border-color: #e5e7eb;
  cursor: not-allowed;
  box-shadow: none;
}

/* Error */
.input-error,
.input-error:focus,
input.input-error,
textarea.input-error,
select.input-error {
  border-color: var(--input-border-error);
  box-shadow:
    0 0 0 1px var(--input-border-error),
    0 0 0 4px rgba(239, 68, 68, 0.2); /* red-500/20 */
}

/* Success */
.input-success,
.input-success:focus,
input.input-success,
textarea.input-success,
select.input-success {
  border-color: var(--input-border-success);
  box-shadow:
    0 0 0 1px var(--input-border-success),
    0 0 0 4px rgba(16, 185, 129, 0.2); /* emerald-500/20 */
}


label,
.form-label {
  /*display: block;               put label on its own line above input */
  margin-bottom: 0.25rem;      /* small gap between label and input */
  font-size: 1rem;         
  line-height: 1.5rem;
  font-weight: 500;            
  color: #374151;             
}

.field-hint {
  margin-top: 0.25rem;
  font-size: 0.75rem;       /* text-xs */
  color: #6b7280;           /* gray-500 */
}

.field-error {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--input-border-error);
}


/* Overall aside spacing so it doesn't hug the edges */
.aside-quick {
  margin-top: 0rem;
}

/* Card container */
.aside-quick__card {
  border-radius: 1rem;
  background: #ffffff; /* solid white for predictable contrast */
  border: 1px solid rgba(148, 163, 184, 0.35); /* subtle border */
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06); /* soft shadow */
  padding: 1.25rem 1.5rem;
}

/* Title & intro text – high contrast against white */
.aside-quick__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155; /* dark slate, strong contrast on white */
  margin: 0;
}

.aside-quick__intro {
  margin: 0.4rem 0 0.9rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #64748b; /* muted but still passes contrast on white */
}

/* List styling */
.aside-quick__list {
  list-style: none;   /* no bullets */
  padding: 0;
  margin: 0;
}

.aside-quick__list li + li {
  margin-top: 0.35rem;
}

/* Links: use your skin’s default anchor color */
.aside-quick__list a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  text-decoration: none;      /* remove if you want default underline */
  
}

/* No custom dot */
.aside-quick__list a::before {
  content: none;
}

/* Simple hover state: keep color, just add underline */
.aside-quick__list a:hover,
.aside-quick__list a:focus {
  text-decoration: underline;
}



/* Layout wrapper */
.passport-aside {
  width: 100%;
  
}

/* Card container */
.passport-card {
      background: rgba(255, 255, 255, .95);
    border: 1px solid var(--border);
    border-radius: var(--radius-3xl);
    
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(6px);
}

/* Header */
.passport-card__header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--slate-100);
}

.passport-card__title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-900);
}

.passport-card__subtitle {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: var(--slate-500);
}

/* List */
.passport-list {
  padding: 0.75rem 0.75rem 0.75rem 0.75rem;
}

/* Each item */
.passport-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0.5rem;
  border-radius: 0.85rem;
  text-decoration: none;
  color: inherit;
  transition:
    background-color 150ms ease,
    box-shadow 150ms ease,
    transform 120ms ease;
}

.passport-item + .passport-item {
  margin-top: 0.25rem;
}

/* Icon container */
.passport-item__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 0.75rem;
  background: var(--indigo-50);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Lucide icon itself */
.passport-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--indigo-600);
}

/* Text */
.passport-item__body {
  min-width: 0;
}

.passport-item__title {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--slate-900);
}

.passport-item__step {
  margin-right: 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--slate-500);
}

.passport-item__desc {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  color: var(--slate-500);
}

/* Hover & focus state */
.passport-item:hover,
.passport-item:focus {
  background-color: var(--indigo-50);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
  outline: none;
}

.passport-item:focus-visible {
  outline: 2px solid var(--indigo-500);
  outline-offset: 2px;
}

/* Mobile: full width under main card if stacked */
@media (max-width: 1024px) {
  .passport-aside {
    max-width: 100%;
    margin-top: 1.5rem;
  }
}





/* overrides of current platform */

a, a:visited {
    color:var(--indigo-700);
    text-decoration: underline;
    outline: 0;
}

a:visited.btn--primary {color: #fff;}

select:not([size]):not([multiple]) {height: auto}

.tp-results__links {
  list-style: none;
}



.a1-distance-selector-control select, .a1-distance-selector-control input {
  width: 5em;
}

/* === A1 Tailwind-style Data Grid === */

.a1-data-grid {
  display: grid;
}

/* Outer container: card look, rounded, scrollable on overflow */
.a1-data-grid__container, .programSearchGrid {
  overflow: auto;
  background: #ffffff;
  border-radius: 0.75rem;          /* rounded-xl */
  border: 1px solid #e5e7eb;       /* slate-200 */
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06); /* soft shadow */
}

.programSearchGrid thead .textLeft {
  border-top-left-radius: 0.75rem;
 
}

.programSearchGrid thead .textRight {
  
  border-top-right-radius: 0.75rem;
}

/* Base table */
.DataGrid {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;               /* no gaps between cells */
  font-size: 0.875rem;             /* text-sm */
}

/* Header */
.DataGrid thead tr th,
.resultSmallHeader,
.resultHeader {
  background-color: var(--indigo-100);
  color: #111827;                  /* slate-900 */
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  
}

/* Cells */
.DataGrid td,
.DataGrid tfoot td,
.ui-jqgrid .jqgrid-value {
  padding: 0.75rem 1rem;
  vertical-align: top;
  color: #111827;                  /* slate-900 */
  border-bottom: 1px solid #f1f5f9;/* slate-100-ish divider */
}

/* Remove the old big row striping and use subtle hover instead */
.DataGrid tr:nth-of-type(even) {
  background-color: transparent;
}

.DataGrid tbody tr:hover {
  background-color: #f9fafb;       /* slate-50 */
}

/* Caption (summary above the table) */
.DataGrid.captionable caption,
.a1-data-grid__caption,
.a1-data-grid__summary {
  text-align: left;
  line-height: 1.5;
  font-size: 0.875rem;
  color: #4b5563;                  /* slate-600 */
  margin-bottom: 0.5rem;
}

/* Pagination / header actions wrapper */
.a1-data-grid__pagination__header {
  margin-bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Actions container (summary + controls) */
.a1-data-grid__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media screen and (min-width: 1280px) {
  .a1-data-grid__actions {
    align-items: center;
    flex-direction: row;
    gap: 1rem;
  }
}

/* "Results per page" group */
.a1-data-grid__records-per-page {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #4b5563;
}

@media screen and (min-width: 800px) {
  .a1-data-grid__records-per-page {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
}

/* "Go to page" group */
.a1-data-grid__go-to-page {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #4b5563;
  margin-top: 0.25rem;
}

@media screen and (min-width: 800px) {
  .a1-data-grid__go-to-page {
    flex-direction: row;
    align-items: center;
    margin-top: 0;
  }
}

/* Footer pagination row */
.a1-data-grid__pagination__footer, .pager-rainbow {
  margin-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #4b5563;
}

/* Keep row headers aligned */
th[scope="row"] {
  text-align: left;
  font-weight: 500;
  border-bottom: 1px solid #f1f5f9;
}


/* Nested grids: lighter shadow inside a row */
.nestedDataGridContainer {
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: #f9fafb;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

.nestedDataGridContainer .DataGrid {
  border: 0;
}

/* Utility bits you already had, kept as-is but modernized slightly */
.gridResultTotal {
  float: left;
  font-size: 0.875rem;
  color: #4b5563;
}

/* Make the data-grid container control horizontal scrolling */
.a1-data-grid__container {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;   /* horizontal scroll inside the container */
  overflow-y: visible;
  -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
}

/* Table should not force page width bigger than its container */
.DataGrid {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: auto;  /* or fixed, if you prefer equal columns */
}


/* --- Mobile / small-screen tweaks --- */
@media screen and (max-width: 1225px) {
  .a1-data-grid__container {
    max-width: 1225px;
  }
}


@media screen and (max-width: 768px) {
  .a1-data-grid__container {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0.75rem;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
  }
}

  /* Make the table a bit denser */
  .DataGrid {
    font-size: 0.8rem;             /* smaller text */
  }

  .DataGrid th,
  .DataGrid td {
    padding: 0.5rem 0.75rem;       /* tighter padding */
    
  }

  /* Horizontal scrolling already allowed, but make it smoother */
  .a1-data-grid__container {
    -webkit-overflow-scrolling: touch;
  }

  /* Sticky header so column names stay visible while you scroll */
  .DataGrid thead th {
    position: sticky;
    top: 0;
    z-index: 1;
  }

  /* Pagination / header controls: stack nicely */
  .a1-data-grid__pagination__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .a1-data-grid__records-per-page,
  .a1-data-grid__go-to-page {
    margin-left: 0;
    width: 100%;
    
  }

  .a1-data-grid__pagination__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}





/* Slightly larger “touch targets” on very small phones */
@media screen and (max-width: 480px) {
  .DataGrid th,
  .DataGrid td {
    padding: 0.45rem 0.6rem;
  }
}


.a1-data-grid__container::-webkit-scrollbar {
  height: 8px;
}

.a1-data-grid__container::-webkit-scrollbar-track {
  background: #f3f4f6; /* slate-100 */
}

.a1-data-grid__container::-webkit-scrollbar-thumb {
  background: var(--indigo-400); /* soft indigo */
  border-radius: 999px;
}

.a1-data-grid__container::-webkit-scrollbar-thumb:hover {
  background: var(--indigo-500); /* soft indigo */

}












@media(max-width: 650px) {

  .brand__logo{width:10rem;height:3.25rem;display:grid;place-items:center;border-radius:.75rem;}
}



/* ============================
   Overlay
   (jQuery UI injects .ui-widget-overlay for modals)
   ============================ */
.ui-widget-overlay {
  background: rgba(15, 23, 42, 0.40) !important; /* slate-900/40 */
  backdrop-filter: blur(2px);
}

/* ============================
   Dialog Shell
   ============================ */
.ui-dialog.ui-widget.ui-widget-content.ui-front {
  border: none !important;
  border-radius: 1rem;                 /* ~rounded-2xl */
  background: #fff !important;
  box-shadow:
    0 20px 45px rgba(2, 6, 23, 0.20),
    0 6px 18px rgba(2, 6, 23, 0.12);   /* soft, deep shadow */
  overflow: hidden;                    /* clip header radius */
  padding: 0 !important;               /* jQuery UI adds padding; remove */
}

/* optional: a subtle ring like Tailwind's */
.ui-dialog.ui-widget.ui-widget-content.ui-front::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
}

/* ============================
   Titlebar
   ============================ */
.ui-dialog .ui-dialog-titlebar.ui-widget-header {
  position: relative;
  border: 0 !important;
  padding: 0 !important;
  height: 3rem;                        /* 48px header */
  background:
    linear-gradient(90deg,
      #3730a3,                         /* indigo-800 */
      var(--indigo-600, #4f46e5)       /* fallback to #4f46e5 */
    ) !important;
  color: #fff !important;
}

/* Title text (h2 inside titlebar) */
.ui-dialog .ui-dialog-titlebar .ui-dialog-title {
  margin: 0;
  position: absolute;
  left: 1.25rem;
  right: 3.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25rem;
  color: #fff;
}

/* Close button (jQuery UI injects .ui-dialog-titlebar-close) */
.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: .5rem;
  top: 1.1rem;
  width: 2rem;
  height: 2rem;
  border: 0 !important;
  border-radius: 9999px;
  background: rgba(255,255,255,.12) !important;
  color: #fff !important;
  box-shadow: none !important;
}

.ui-dialog .ui-dialog-titlebar-close:hover,
.ui-dialog .ui-dialog-titlebar-close:focus {
  background: rgba(255,255,255,.20) !important;
  outline: none;
}

/* Hide the default close “text” but keep it accessible */
.ui-dialog .ui-dialog-titlebar-close .ui-button-icon-space {
  display: none !important;
}
/* Make the default jQuery UI icon white */
.ui-dialog .ui-dialog-titlebar-close .ui-icon {
  filter: brightness(0) invert(1);
}

/* ============================
   Content Area
   ============================ */
.ui-dialog .ui-dialog-content.ui-widget-content {
  background: #fff !important;
  color: #0f172a;                      /* slate-900 */
  padding: 1.5rem 2rem !important;     /* md:p-6/8 */
  border: 0 !important;
}

/* Headings inside the content */
#wmctTranscriptWizard .wmctTranscriptWizardTitle {
  margin: 0 0 .5rem 0;
  font-size: 1.25rem;                  /* text-xl */
  line-height: 1.75rem;
  font-weight: 700;
  color: #0f172a;
}

/* Directions / helper text */
#wmctTranscriptWizard .directions {
  color: #475569;                      /* slate-600 */
  margin-bottom: 1rem;
}

/* Dashed divider feel (optional: if you keep those lines) */
#wmctTranscriptWizard .pageSection,
#wmctTranscriptWizard .contentPanel {
  border: 1px dashed #e2e8f0;          /* slate-200 */
  border-radius: .75rem;
  padding: 1rem;
  background: #fff;
}

/* ============================
   Typeahead field look (inputs)
   ============================ */
#wmctTranscriptWizard input[type="text"],
#wmctTranscriptWizard input[type="number"],
#wmctTranscriptWizard input[type="password"],
#wmctTranscriptWizard select,
#wmctTranscriptWizard textarea {
  width: 100%;
  
  border: 1px solid #e5e7eb;           /* slate-200 */
  background: #fff;
  color: #0f172a;
  padding: .75rem 1rem;                /* py-3 px-4 */
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

#wmctTranscriptWizard input::placeholder {
  color: #94a3b8;                      /* slate-400 */
}

#wmctTranscriptWizard input:focus,
#wmctTranscriptWizard select:focus,
#wmctTranscriptWizard textarea:focus {
  border-color: var(--indigo-600, #4f46e5);
  box-shadow:
    0 0 0 1px var(--indigo-600, #4f46e5),
    0 0 0 4px rgba(79,70,229,.25);     /* indigo-600/25 */
}

/* Labels */
#wmctTranscriptWizard label,
#wmctTranscriptWizard .LabelText {
  
  margin-bottom: .25rem;
  font-size: .875rem;                  /* text-sm */
  line-height: 1.25rem;
  font-weight: 500;
  color: #334155;                      /* slate-700 */
}



/* ============================
   Alerts / States
   ============================ */
#wmctTranscriptWizard .ui-state-highlight {
  background: #eef2ff;                 /* indigo-50 */
  color: #3730a3;                      /* indigo-800 */
  border: 1px solid #c7d2fe;           /* indigo-200 */
}
#wmctTranscriptWizard .ui-state-error,
#wmctTranscriptWizard .ui-state-error-text {
  background: #fee2e2;                 /* red-100 */
  color: #b91c1c;                       /* red-700 */
  border-color: #fecaca !important;     /* red-200 */
}
#wmctTranscriptWizard .ui-state-warning {
  background: #fef9c3;                  /* yellow-100 */
  color: #854d0e;                        /* amber-800 */
  border-color: #fde68a !important;      /* amber-300 */
}

/* Give UI icons a little spacing */
#wmctTranscriptWizard .ui-icon.alignLeft { margin-right: .4rem; }

/* ============================
   Misc spacing niceties
   ============================ */
#wmctTranscriptWizard .wizard-step .inputLine { margin-top: .75rem; }
#wmctTranscriptWizard fieldset { border: 0; padding: 0; margin: 0; }
#wmctTranscriptWizard legend { padding: 0; margin: 0 0 .5rem 0; }


#coursesByInstitutionList .learning-items-list > li:nth-of-type(even),
#assessmentsByInstitutionList .learning-items-list > li:nth-of-type(even) {
  background-color: transparent;
}


/* --- Base layout for the transfer map area --- */

#wmctMapData {
  
  color: #0f172a; /* slate-900 */
  font-size: 14px;
}

/* Container table card */
#transferMapContainer .wmctTable:not(.totals) {
  width: 100%;
  overflow: hidden;                 /* <-- important: clip the thead bg */
  border-collapse: separate !important;
  border-spacing: 0;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e2e8f0; /* slate-200 */
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  margin: 0 0 1.5rem;
}

/* Totals table under the main card */
#transferMapContainer .wmctTable.totals {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

/* --- Caption / heading row --- */

.wmctTable caption {
  caption-side: top;
}

.wmctCaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem 0.75rem;
}

.wmctCaption__title {
  margin: 0;
  font-size: 1.25rem; /* ~text-lg */
  font-weight: 600;
  color: #0f172a;
}

.wmctCaption__edit-link {
  
}

.wmctCaption {
  margin-top: 0px;
}

.wmctCaption__edit-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #4f46e5; /* indigo-600 */
  text-decoration: underline;
  text-underline-offset: 2px;
}

.wmctCaption__edit-link a:hover {
  color: #4338ca; /* indigo-700 */
}

/* --- Table header --- */

#transferMapContainer .wmctTable thead {
  background-color: #f8fafc; /* slate-50 */
  border-bottom: 1px solid #e2e8f0;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}

#transferMapContainer .wmctTable thead th {
  padding: 0.75rem 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: #64748b; /* slate-500 */
  text-align: left;
}

#transferMapContainer .wmctTable thead th:nth-child(1) {
  width: 3rem;
}

#transferMapContainer .wmctTable thead th:nth-child(3) {
  text-align: left;
}

/* --- Body rows --- */

#transferMapContainer .wmctTable tbody tr {
  background-color: #ffffff;
}

#transferMapContainer .wmctTable tbody tr:nth-child(even) {
  background-color: #fdfdfd;
}

#transferMapContainer .wmctTable tbody td {
  padding: 0.75rem 1rem;
  vertical-align: middle;
  border-top: 1px solid #e5e7eb; /* slate-200-ish */
  font-size: 0.875rem;
}

/* Status column */

#transferMapContainer .wmctTable td.status {
  width: 3rem;
  text-align: center;
}

/* Green check pill */
#transferMapContainer .wmctTable td.status .ui-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background-color: #22c55e; /* emerald-500 */
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.25);
}

#transferMapContainer .wmctTable td.status .ui-icon.ui-icon-check::before {
  content: "✓";
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
  text-indent: 0;
}

.ui-state-highlight .ui-icon, .ui-button .ui-state-highlight.ui-icon { background-image: url("/Portals/0/images/ui-icons_FFFFFF_256x240.png");}

/* Source / target course layout */

#transferMapContainer .wmctTable td.sources > div,
#transferMapContainer .wmctTable td.targets .wmctTarget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

/* Override legacy floats when inside the styled table */
#transferMapContainer .wmctTable .alignLeft,
#transferMapContainer .wmctTable .alignRight,
#transferMapContainer .wmctTable .clear {
  
}

#transferMapContainer .wmctTable .clear {
  display: none;
}

#transferMapContainer .wmctTable .wmctCourseTitle {
  font-weight: 500;
  color: #0f172a;
}

#transferMapContainer .wmctTable .alignRight {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  
  
}

/* --- Subtotal row in tfoot --- */

#transferMapContainer .wmctTable tfoot tr {
  background-color: #f8fafc;
}

#transferMapContainer .wmctTable.totals tfoot tr {
  background-color: green;
  color: #fff;
  background: linear-gradient(90deg,
      #3730a3,                         /* indigo-800 */
      var(--indigo-600, #4f46e5)       /* fallback to #4f46e5 */
    ) !important;
}

#transferMapContainer .wmctTable tfoot td {
  padding: 0.75rem 1rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155; /* slate-700 */
  border-top: 1px solid #e2e8f0;
}

#transferMapContainer .wmctTable tfoot td.sources,
#transferMapContainer .wmctTable tfoot td.targets {
  
  align-items: center;
  justify-content: space-between;
}

/* --- Bottom “totals” table under main table --- */

#transferMapContainer .wmctTable.totals tfoot td {
  border-top: 1px solid #e2e8f0;
  
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

#transferMapContainer .wmctTable.totals .sources,
#transferMapContainer .wmctTable.totals .targets {
  
  align-items: center;
  justify-content: space-between;
}

#transferMapContainer .wmctTable.totals .clear {
  display: none;
}

/* --- Transcript & comparable tables reuse the same visual system --- */

#transcriptContainer .wmctTable,
#comparableChoicesContainer .wmctTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0 0 1rem;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
}

#transcriptContainer .wmctTable thead,
#comparableChoicesContainer .wmctTable thead {
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

#transcriptContainer .wmctTable th,
#comparableChoicesContainer .wmctTable th {
  padding: 0.65rem 0.9rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  font-weight: 600;
  text-align: left;
}

#transcriptContainer .wmctTable td,
#comparableChoicesContainer .wmctTable td {
  padding: 0.65rem 0.9rem;
  font-size: 0.875rem;
  border-top: 1px solid #e5e7eb;
}

/* Numeric column alignment */
.numericColumn {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Grade column subtle style */
.gradeColumn {
  text-align: center;
  white-space: nowrap;
}

/* Transcript totals */
#transcriptContainer .wmctTable.totals tfoot td {
  font-weight: 600;
  color: #334155;
  background-color: #f8fafc;
}

/* Comparable choices – keep it clean and readable */
#wmctAlternateTableWrapper {
  margin-top: 1.5rem;
}

#wmctAlternateTable tr:nth-child(even) {
  background-color: #f9fafb;
}

#wmctAlternateTable tfoot td {
  font-weight: 600;
}

/* Blur styling that already exists, just refine a bit */
.wmct-blur[inert="true"] {
  filter: blur(3px);
  opacity: 0.7;
}

/* Screen-reader-only helper that is already there */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Keep header bg, but now it will be clipped by the table radius */
#transferMapContainer .wmctTable:not(.totals) thead {
  background-color: #f8fafc;
}

/* Extra polish: round the header cells themselves so edges look smooth */
#transferMapContainer .wmctTable:not(.totals) thead tr:first-child th:first-child {
  border-top-left-radius: 16px;
}

#transferMapContainer .wmctTable:not(.totals) thead tr:first-child th:last-child {
  border-top-right-radius: 16px;
}

/* Container */
#wmctTranscriptSwitcher fieldset {
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #e2e8f0; /* slate-200 */
  padding: 4px;
  border-radius: 9999px; /* full pill */
}

/* Hide radio inputs */
#wmctTranscriptSwitcher input[type="radio"] {
  display: none !important;
}

/* Labels behave as buttons */
#wmctTranscriptSwitcher label.ui-checkboxradio-label {
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: #475569 !important;       /* slate-600 */
  transition: all 0.2s ease;
}

/* Selected state */
#wmctTranscriptSwitcher label.ui-state-active {
  background: #4f46e5;  /* indigo-600 */
  color: #fff !important;
}

/* Better hover feedback on inactive item */
#wmctTranscriptSwitcher label.ui-checkboxradio-label:not(.ui-state-active):hover {
  background: #f1f5f9; /* slate-100 */
}

/* WMCT Ribbon */

/* still kill the sprite ribbon */
#wmctCompetitiveCheck #bestSchool.isBestSchool {
  background-image: none !important;
  background-repeat: no-repeat !important;
}
#wmctCompetitiveCheck #bestSchool.isBestSchool::after {
  content: none !important;
  display: none !important;
  background-image: none !important;
}

/* wrapper: aligns with card padding */
#wmctCompetitiveCheck {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.875rem;
  padding-inline: 2rem; /* matches px-8 */
}

/* compact pill-style alert */
#wmctCompetitiveCheck #bestSchool {
  display: inline-flex !important;
  align-items: center;
  justify-content: space-between;

  max-width: 640px;
  width: 100%;

  margin: 1.25rem auto 1rem;        /* less vertical space, centered */
  padding: 0.5rem 1.25rem;

  background-color: #e0e7ff;        /* indigo-100 */
  color: #1e293b;                   /* slate-800 */
  font-weight: 500;
  line-height: 1.3;

  border-radius: 9999px;            /* pill */
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  border: 1px solid #c7d2fe;        /* indigo-200 */
}

/* little info dot on the left of the text */
#wmctCompetitiveCheck #bestSchoolResults {
 position: relative;
  margin-right: 1rem;
  white-space: nowrap;

  display: inline-flex;        /* key change */
  align-items: center;         /* vertically center dot + text */
}

/* Dot */
#wmctCompetitiveCheck #bestSchoolResults::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-right: 0.5rem;
  border-radius: 9999px;
  background: #4f46e5;
  box-shadow: 0 0 0 3px #e0e7ff;
}

/* “View them” as a small indigo chip */
#wmctCompetitiveCheck #bestSchoolAction {
  color: #4338ca;                   /* indigo-700 */
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  border: 1px solid #c7d2fe;
  background-color: #eef2ff;        /* indigo-50 */
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease,
    box-shadow 0.15s ease, transform 0.15s ease;
}

#wmctCompetitiveCheck #bestSchoolAction:hover,
#wmctCompetitiveCheck #bestSchoolAction:focus-visible {
  background-color: #e0e7ff;
  color: #312e81;                   /* indigo-900 */
  box-shadow: 0 0 0 1px #c7d2fe;
  outline: none;
  transform: translateY(-0.5px);
}

/* mobile: let it wrap nicely */
@media (max-width: 640px) {
  #wmctCompetitiveCheck {
    padding-inline: 1rem;
  }

  #wmctCompetitiveCheck #bestSchool {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  #wmctCompetitiveCheck #bestSchoolResults {
    white-space: normal;
    margin-right: 0;
  }

  #wmctCompetitiveCheck #bestSchoolAction {
    align-self: flex-start;
  }
}

/* ================================
   Student Courses – Group Criteria Switcher
   ================================ */

/* Switcher container (pill background) */
.studentCoursesGroupCriteriaContainer fieldset {
  border: none;
  margin: 0;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #e2e8f0;          /* slate-200 */
  border-radius: 9999px;        /* full pill */
}

/* Hide the jQuery UI radio inputs but keep them accessible */
.studentCoursesGroupCriteriaContainer input.ui-checkboxradio {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none;
}

/* Reset jQuery UI button defaults inside this control */
.studentCoursesGroupCriteriaContainer .ui-button {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  margin: 0;
}

/* Labels behave like pill buttons */
.studentCoursesGroupCriteriaContainer label.ui-checkboxradio-label {
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: #475569 !important;    /* slate-600 */
  border: none !important;
  box-shadow: none;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

/* Selected / active state (indigo pill) */
.studentCoursesGroupCriteriaContainer
  label.ui-checkboxradio-label.ui-state-active,
.studentCoursesGroupCriteriaContainer
  label.ui-checkboxradio-label.ui-checkboxradio-checked {
  background: #4f46e5 !important;          /* indigo-600 */
  color: #ffffff !important;
}

/* Hover for inactive options */
.studentCoursesGroupCriteriaContainer
  label.ui-checkboxradio-label:not(.ui-state-active):not(.ui-checkboxradio-checked):hover {
  background: #f1f5f9;          /* slate-100 */
}

/* Optional: align the whole control to the right (since container has alignRight) */
.studentCoursesGroupCriteriaContainer {
  text-align: right;
}
.studentCoursesGroupCriteriaContainer fieldset {
  margin-left: auto;
}


.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: none !important; /* kill sprite */
}

 .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:focus {
    
    background: var(--indigo-600);
    font-weight: 700;
    
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover
{
  background: var(--indigo-600);
    font-weight: 700;
}

.ui-state-active .ui-icon, .ui-button:active .ui-icon {
    background-image: url("/Portals/0/images/ui-icons_FFFFFF_256x240.png")
}

/* =====================================
   Base menu theme tokens (indigo-based)
   ===================================== */
:root {
  --fg-menu-bg: #ffffff;
  --fg-menu-border: #e5e7eb;          /* gray-200 */
  --fg-menu-shadow: 0 18px 30px rgba(15, 23, 42, 0.18);
  --fg-menu-text: #111827;            /* gray-900 */
  --fg-menu-muted: #6b7280;           /* gray-500 */
  --fg-menu-divider: #e5e7eb;         /* gray-200 */

  --fg-menu-accent: #4f46e5;          /* indigo-600 */
  --fg-menu-accent-dark: #312e81;     /* indigo-900 */
  --fg-menu-accent-soft: #e0e7ff;     /* indigo-100-ish */

  --fg-menu-breadcrumb: #4b5563;      /* gray-600 */
}

/* ================================
   REQUIRED STRUCTURAL RULES
   (kept as in original, with theming tweaks)
   ================================ */

.fg-menu-container {
  position: absolute;
  top: 0;
  left: -999px;
  padding: 0.4em;
  overflow: hidden;
  z-index: 9999;
}

.fg-menu-container.fg-menu-flyout {
  overflow: visible;
}

.fg-menu,
.fg-menu ul,
ul.fg-menu li {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.fg-menu {
  position: relative;
  background: var(--fg-menu-bg);
  border: 1px solid var(--fg-menu-border);
  border-radius: 0.75rem;
  box-shadow: var(--fg-menu-shadow);
  color: var(--fg-menu-text);
  font-size: 0.875rem;
}

.fg-menu-flyout .fg-menu {
  position: static;
}

.fg-menu ul {
  position: absolute;
  top: 0;
}

.fg-menu ul ul {
  top: -1px;
}

.fg-menu-container.fg-menu-ipod .fg-menu-content,
.fg-menu-container.fg-menu-ipod .fg-menu-content ul {
  background: none !important;
}

.fg-menu.fg-menu-scroll,
.fg-menu ul.fg-menu-scroll {
  overflow: scroll;
  overflow-x: hidden;
}

.fg-menu li {
  clear: both;
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}

.fg-menu li li {
  font-size: 1em;
}

.fg-menu-flyout ul ul {
  padding: 0.4em;
}

.fg-menu-flyout li {
  position: relative;
}

.fg-menu-scroll {
  overflow: scroll;
  overflow-x: hidden;
}

/* ================================
   Header / footer / breadcrumb
   ================================ */

.fg-menu-header {
  margin-bottom: 0.4em;
  padding: 0.4em 0.6em;
  font-weight: 600;
  color: var(--fg-menu-text);
}

.fg-menu-footer {
  margin-top: 0.4em;
  padding: 0.4em 0.6em;
  border-top: 1px solid var(--fg-menu-divider);
}

.fg-menu-breadcrumb {
  margin: 0;
  padding: 0.25em 0.6em;
  border-bottom: 1px solid var(--fg-menu-divider);
}

.fg-menu-breadcrumb li {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0 0.2em;
  font-size: 0.9em;
  color: var(--fg-menu-breadcrumb);
  opacity: 0.8;
}

.fg-menu-breadcrumb li.fg-menu-prev-list,
.fg-menu-breadcrumb li.fg-menu-current-crumb {
  clear: left;
  float: none;
  opacity: 1;
}

.fg-menu-breadcrumb li.fg-menu-current-crumb {
  padding-top: 0.2em;
  font-weight: 600;
  color: var(--fg-menu-text);
}

.fg-menu-breadcrumb a,
.fg-menu-breadcrumb span {
  float: left;
  color: inherit;
  text-decoration: none;
}

/* footer links */
.fg-menu-footer a:link,
.fg-menu-footer a:visited {
  float: left;
  width: 100%;
  color: var(--fg-menu-accent-dark);
  text-decoration: none;
}

.fg-menu-footer a:hover,
.fg-menu-footer a:active {
  text-decoration: underline;
}

/* previous breadcrumb link */
.fg-menu-breadcrumb .fg-menu-prev-list a:link,
.fg-menu-breadcrumb .fg-menu-prev-list a:visited,
.fg-menu-breadcrumb .fg-menu-prev-list a:hover,
.fg-menu-breadcrumb .fg-menu-prev-list a:active {
  background-image: none;
  text-decoration: none;
  color: var(--fg-menu-accent-dark);
}

.fg-menu-breadcrumb .fg-menu-prev-list a {
  float: left;
  padding-right: 0.4em;
}

.fg-menu-breadcrumb .fg-menu-prev-list a .ui-icon {
  float: left;
}

/* current crumb */
.fg-menu-breadcrumb .fg-menu-current-crumb a:link,
.fg-menu-breadcrumb .fg-menu-current-crumb a:visited,
.fg-menu-breadcrumb .fg-menu-current-crumb a:hover,
.fg-menu-breadcrumb .fg-menu-current-crumb a:active {
  display: block;
  background-image: none;
  font-size: 1.05em;
  text-decoration: none;
  color: var(--fg-menu-text);
}

/* ================================
   LINK / ITEM APPEARANCE
   ================================ */

.fg-menu a:link,
.fg-menu a:visited,
.fg-menu a:hover,
.fg-menu a:active {
  float: left;
  width: 92%;
  padding: 0.35em 3%;
  text-decoration: none;
  outline: 0 !important;
  color: var(--fg-menu-text);
  border-radius: 0.5rem;
  border: 1px solid transparent;
  background-color: transparent;
  line-height: 1.3;
}

/* base border */
.fg-menu a {
  border-style: solid;
  border-width: 1px;
}

/* default/normal state */
.fg-menu a.ui-state-default:link,
.fg-menu a.ui-state-default:visited,
.fg-menu a.ui-state-default:hover,
.fg-menu a.ui-state-default:active {
  background-color: #ffffff;
  border-color: transparent;
  font-weight: 400;
}

/* hover state – indigo outline + soft indigo bg
   #1e3a8a on #e0e7ff passes WCAG AA */
.fg-menu a.ui-state-hover:link,
.fg-menu a.ui-state-hover:visited,
.fg-menu a.ui-state-hover:hover,
.fg-menu a.ui-state-hover:active {
  background-color: var(--fg-menu-accent-soft);
  border-color: var(--fg-menu-accent);
  color: #1e3a8a; /* indigo-800 */
}

/* active/selected – white text on indigo-600 (AA compliant) */
.fg-menu a.ui-state-active:link,
.fg-menu a.ui-state-active:visited,
.fg-menu a.ui-state-active:hover,
.fg-menu a.ui-state-active:active {
  background-color: var(--fg-menu-accent);
  border-color: var(--fg-menu-accent-dark);
  color: #ffffff;
}

/* keyboard focus ring (even if JS doesn't add ui-state-hover) */
.fg-menu a:focus {
  box-shadow: 0 0 0 2px #e0e7ff, 0 0 0 4px var(--fg-menu-accent);
}

/* inner span */
.fg-menu a span {
  display: block;
  cursor: pointer;
}

/* ================================
   Indicators / icons / dividers
   ================================ */

.fg-menu-indicator span {
  float: left;
}
.fg-menu-indicator span.ui-icon {
  float: right;
}

/* when menu has icons, shift text */
.fg-menu.fg-menu-has-icons a:link,
.fg-menu.fg-menu-has-icons a:visited,
.fg-menu.fg-menu-has-icons a:hover,
.fg-menu.fg-menu-has-icons a:active {
  padding-left: 1.75rem; /* ~20px */
}

/* horizontal dividers */
.fg-menu .horizontal-divider hr,
.fg-menu .horizontal-divider span {
  padding: 0;
  margin: 5px 0.6em;
}

.fg-menu .horizontal-divider hr {
  border: 0;
  height: 1px;
  background-color: var(--fg-menu-divider);
}

.fg-menu .horizontal-divider span {
  font-size: 0.9em;
  text-transform: uppercase;
  padding-left: 0.2em;
  color: var(--fg-menu-muted);
}

/* disabled items (keeps contrast for readability but signals disabled via opacity) */
.fg-menu .ui-state-disabled > a,
.fg-menu a.ui-state-disabled {
  color: #9ca3af; /* gray-400 */
  cursor: default;
  opacity: 0.7;
  background-color: #f9fafb;
  border-color: transparent;
}

/* ================================
   Student Courses Table Shell
   ================================ */

table.DataGrid.studentCoursesTable {
  display: inline-block;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 0.75rem;                 /* rounded-xl */
  border: 1px solid #e5e7eb;              /* slate-200 */
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;                       /* clip rounded corners in modern browsers */
  margin-top: 15px;
}

/* ================================
   Header Row
   ================================ */

.DataGrid.studentCoursesTable th.resultHeader {
  padding: 0.75rem 0.75rem;
  background: #e0e7ff;                    /* indigo-100 */
  color: #1e293b;                         /* slate-800 */
  font-size: 0.75rem;                     /* text-xs */
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  white-space: nowrap;
}

/* Numeric / right-aligned header */
.DataGrid.studentCoursesTable th.numericColumn {
  text-align: right;
}

/* Actions header stays narrow */
.DataGrid.studentCoursesTable th.ActionsHeader {
  width: 3rem;
}

/* ================================
   Body Rows
   ================================ */

/* Base cell styling */
.DataGrid.studentCoursesTable td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid #e5e7eb;       /* slate-200 */
  font-size: 0.875rem;                    /* text-sm */
  color: #111827;                         /* slate-900 */
  vertical-align: middle;
}

/* Alternating row backgrounds */
.DataGrid.studentCoursesTable tr.resultField {
  background: #ffffff;
}

.DataGrid.studentCoursesTable tr.alterresultField {
  background: #f9fafb;                    /* slate-50 */
}


/* Numeric columns */
.DataGrid.studentCoursesTable td.numericColumn {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Text helpers from markup */
.DataGrid.studentCoursesTable .NormalText {
  color: inherit;
}

.DataGrid.studentCoursesTable .LabelText {
  font-weight: 600;
  color: #111827;
}

/* ================================
   Actions Column (Delete / Edit)
   ================================ */

.studentCoursesItemActionsContaier {
  width: 3rem;
}








/* Screenreader-only text already uses .sr-only; leave as-is */

/* ================================
   Grade cell
   ================================ */

.DataGrid.studentCoursesTable .grade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  font-weight: 600;
  color: #3730a3;                         /* indigo-800 */
}

/* ================================
   Footer / Totals
   ================================ */

.DataGrid.studentCoursesTable tfoot tr {
  background: #f1f5f9;                    /* slate-100 */
  border-top: 1px solid #e5e7eb;
}

.DataGrid.studentCoursesTable tfoot td {
  padding: 0.6rem 0.75rem;
  font-size: 0.875rem;
  color: #111827;
}

/* First totals row label */
.summaryLabel,
.totalSummaryLabel {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.coursesSummary,
.coursesTotalSummary,
.creditSummary,
.creditTotalSummary {
  font-weight: 500;
  color: #0f172a;
}

/* Numeric totals aligned right */
.DataGrid.studentCoursesTable tfoot td.numericColumn {
  text-align: right;
}

/* Make “Courses / Exams” label slightly muted */
.coursesSummary span span,
.coursesTotalSummary span span {
  margin-left: 0.25rem;
  color: #6b7280;                          /* slate-500 */
  font-weight: 400;
}

/* ================================
   Profile Table Card
   ================================ */

table.table.student-profile-table {
  width: 100%;
  max-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
  background: #ffffff;
  border-radius: 0.75rem;                    /* rounded-xl */
  border: 1px solid #e5e7eb;                 /* slate-200 */

  overflow: hidden;
}

/* Rows */

.table.student-profile-table tr {
  border-bottom: 1px solid #e5e7eb;
}

.table.student-profile-table tr:last-child {
  border-bottom: none;
}

/* Label column */

.table.student-profile-table th[scope="row"] {
  width: 30%;
  padding: 0.75rem 1rem;
  background: #f8fafc;                       /* slate-50 */
  border-right: 1px solid #e5e7eb;
  text-align: right;
  vertical-align: top;
}

/* Value column */

.table.student-profile-table td {
  padding: 0.75rem 1rem;
  vertical-align: top;
  background: #ffffff;
}

/* First row (Name) a bit stronger */

.table.student-profile-table tr:first-child th[scope="row"] {
  background: #eef2ff;                       /* indigo-50 */
}

.table.student-profile-table tr:first-child td {
  background: #f9fafb;                       /* slate-50 */
}

/* Typography helpers */

.table.student-profile-table .LabelText {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #475569;                            /* slate-600 */
}

.table.student-profile-table .SubHeaderText {
  display: inline-block;
  font-size: 1.125rem;                       /* text-lg */
  line-height: 1.5rem;
  font-weight: 700;
  color: #0f172a;                            /* slate-900 */
}

.table.student-profile-table .NormalText {
  font-size: 0.9rem;
  color: #111827;                            /* slate-900 */
}

/* Email link-style emphasis if you later convert it to <a> */

#ProfileEmail {
  font-weight: 500;
  color: #4f46e5;                            /* indigo-600 */
  word-break: break-all;
}

/* Address block */

.table.student-profile-table address {
  font-style: normal;
  margin: 0;
}

.table.student-profile-table address .NormalText {
  display: inline;
}

/* ================================
   Responsive / small screens
   ================================ */

@media (max-width: 640px) {
  table.table.student-profile-table {
    box-shadow: 0 10px 20px rgba(15, 23, 42, .08);
  }

  .table.student-profile-table th[scope="row"],
  .table.student-profile-table td {
    display: block;
    width: 100%;
    text-align: left;
    border-right: none;
  }

  .table.student-profile-table th[scope="row"] {
    padding-bottom: 0.25rem;
    border-bottom: none;
  }

  .table.student-profile-table td {
    padding-top: 0;
    padding-bottom: 0.75rem;
  }

  .table.student-profile-table tr {
    border-bottom: 1px solid #e5e7eb;
  }
}


/* ================================
   Student Account – Card Shell
   ================================ */

#StudentAccount .pageSectionBig.accountDetail {
  max-width: 640px;
  background: #ffffff;
  border-radius: 0.75rem;                    /* rounded-xl */
  border: 1px solid #e5e7eb;                 /* slate-200 */
  
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

/* ================================
   Definition List Layout
   ================================ */

#StudentAccount .dl-horizontal-flex {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

/* Label (dt) */
#StudentAccount .dl-horizontal-flex dt {
  flex: 0 0 40%;
  max-width: 40%;
  padding: 0.4rem 0.5rem 0.2rem 0;
  text-align: right;
}

/* Value (dd) */
#StudentAccount .dl-horizontal-flex dd {
  flex: 0 0 60%;
  max-width: 60%;
  padding: 0.4rem 0 0.2rem 0.5rem;
  margin: 0;
}

/* Rows divider */
#StudentAccount .dl-horizontal-flex dt,
#StudentAccount .dl-horizontal-flex dd {
  border-bottom: 1px solid #e5e7eb;
}

#StudentAccount .dl-horizontal-flex dt:last-of-type,
#StudentAccount .dl-horizontal-flex dd:last-of-type {
  border-bottom: none;
}

/* Labels (reuse LabelText theme) */
#StudentAccount .LabelText {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #475569;                            /* slate-600 */
}

/* Values */
#StudentAccount #AccountCreatedOnValue,
#StudentAccount #EmailValue,
#StudentAccount #UsernameValue,
#StudentAccount #LastPasswordChangeValue {
  font-size: 0.9rem;
  color: #111827;                            /* slate-900 */
}

/* Email accent */
#StudentAccount #EmailValue {
  font-weight: 500;
  color: #4f46e5;                            /* indigo-600 */
  word-break: break-word;
}

/* Wrap long values */
#StudentAccount .wrap-word {
  word-break: break-word;
}

/* ================================
   Call-to-Action Buttons
   ================================ */

#StudentAccount .inputLine {
  margin-top: 0.75rem;
}

/* Base button look overriding jQuery UI within this section only */
#StudentAccount .ui-button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1rem;
  border-radius: 9999px;                     /* pill */
  border: 1px solid transparent;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  background: #4f46e5 !important;           /* indigo-600 */
  color: #ffffff !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
  transition: background 0.15s ease,
              box-shadow 0.15s ease,
              transform 0.05s ease;
}

/* Hover / active */
#StudentAccount .ui-button:hover {
  background: #4338ca !important;           /* indigo-700 */
  box-shadow: 0 4px 8px rgba(15, 23, 42, 0.18);
  text-decoration: none;
}

#StudentAccount .ui-button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.18);
}

/* Icon inside button */
#StudentAccount .ui-button-icon,
#StudentAccount .ui-button .ui-icon {
  margin-right: 0.25rem;
}

/* Remove extra icon spacing span */
#StudentAccount .ui-button-icon-space {
  display: none;
}

/* Privacy dashboard as secondary variant (outline) */
#StudentAccount #btnPrivacyDashboard {
  background: #ffffff !important;
  color: #111827 !important;
  border-color: #e5e7eb;
}

#StudentAccount #btnPrivacyDashboard:hover {
  background: #f9fafb !important;           /* slate-50 */
}

/* ================================
   Responsive tweaks
   ================================ */

@media (max-width: 640px) {
  #StudentAccount .pageSectionBig.accountDetail {
    padding: 1rem 1rem;
  }

  #StudentAccount .dl-horizontal-flex dt {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    text-align: left;
  }

  #StudentAccount .dl-horizontal-flex dd {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-bottom: 0.6rem;
  }

  #StudentAccount .dl-horizontal-flex dt,
  #StudentAccount .dl-horizontal-flex dd {
    border-bottom: none;
  }

  #StudentAccount .dl-horizontal-flex dd {
    border-bottom: 1px solid #e5e7eb;
  }
}




/* =====================================================
   Centered Hero — Indigo / Purple / White
   Scoped to .heroCenter
   ===================================================== */

.heroCenter {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(3.5rem, 7vw, 6rem);
  text-align: center;
}

/* Soft gradient glow background */
.heroCenter__bg {
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 50% 10%, rgba(99,102,241,.22), transparent 60%),
    radial-gradient(900px 520px at 85% 35%, rgba(168,85,247,.18), transparent 60%),
    linear-gradient(to bottom, rgba(248,250,252,.9), #ffffff 55%);
}

.heroCenter__inner {
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Headline */
.heroCenter__title {
  max-width: 22ch;
  margin: 0 auto;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.02;
  font-size: clamp(2.75rem, 6.5vw, 4.75rem);
  color: #0f172a;
}

/* Marker-style underline behind the highlighted phrase */
.heroCenter__mark {
  position: relative;
  display: inline-block;
  color: var(--indigo-600);
  padding: 0 .06em;
  z-index: 0; /* creates stacking context */
}

.heroCenter__markSvg {
  position: absolute;
  left: -2%;
  right: -2%;
  width: 104%;
  height: 0.62em;           /* marker thickness */
  top: 62%;                 /* places it behind the lower half of letters */
  z-index: -1;              /* behind text */
  fill: rgba(147, 197, 253, 0.65); /* “marker” blue w/ opacity */
  transform: rotate(-1.2deg);
  pointer-events: none;
}

/* Optional: slightly different color on very dark screens */
@media (prefers-contrast: more) {
  .heroCenter__markSvg { fill: rgba(147, 197, 253, 0.8); }
}

/* Subtitle */
.heroCenter__subtitle {
  margin: 1.35rem auto 0;
  max-width: 64ch;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.65;
  color: rgba(15,23,42,.72);
}

.heroCenter__subtitle strong {
  color: rgba(15,23,42,.92);
  font-weight: 800;
}

/* CTA buttons */
.heroCenter__actions {
  margin-top: 1.9rem;
  display: inline-flex;
  gap: .9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.heroCenter__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none !important;
  border: 1px solid rgba(15,23,42,.12);
  box-shadow: 0 8px 18px rgba(15,23,42,.08);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.heroCenter__btn:hover, {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(15,23,42,.12);
  filter: brightness(1.03);
}

.heroCenter__btn--primary {
  color: #ffffff;
  background: linear-gradient(180deg, #6366f1, #4f46e5);
  border-color: rgba(99,102,241,.45);
}

.heroCenter__btn--primary:hover, .heroCenter__btn--primary:focus {
  color: #ffffff;}

.heroCenter__btn--secondary {
  background: rgba(255,255,255,.9);
  color: #0f172a;
}

/* Supporting copy */
.heroCenter__fineprint {
  margin: 1.6rem auto 0;
  max-width: 90ch;
  font-size: .98rem;
  line-height: 1.7;
  color: rgba(15,23,42,.6);
}

.heroCenter__dot {
  margin: 0 .5rem;
  opacity: .6;
}

/* Partner logos */
.heroCenter__partners {
  margin-top: clamp(2.75rem, 6vw, 4.75rem);
}

.heroCenter__partnersLabel {
  font-size: .95rem;
  font-weight: 700;
  color: rgba(15,23,42,.65);
}

.heroCenter__logos {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem 2.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(15,23,42,.6);
}

/* Mobile tweaks */
@media (max-width: 520px) {
  .heroCenter__btn {
    width: 100%;
  }
  .heroCenter__actions {
    width: 100%;
  }
}


/* Trust pill (Tailwind Plus–style) */
.heroCenter__trustPill {
  margin: 1.35rem auto 0;

  display: flex;              /* NOT inline-flex */
  align-items: center;
  justify-content: center;
  gap: .45rem;

  width: fit-content;         /* shrink to content */
  
  padding: .4rem .8rem;
  border-radius: 999px;

  font-weight: 700;
  font-size: .92rem;
  letter-spacing: -0.01em;

  color: #4f46e5; /* indigo-600 */
  background: rgba(99,102,241,.08);
  border: 1px solid rgba(99,102,241,.28);


}

/* Icon sizing */
.heroCenter__trustPill .icon {
  width: 16px;
  height: 16px;
}

.heroCenter__supportInline {
  margin: 1.6rem auto 0;
  max-width: 76ch;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .35rem .7rem;

  font-size: 1.02rem;
  line-height: 1.6;
  text-align: center;

  color: rgba(15, 23, 42, 0.68);
}

.heroCenter__supportInline strong {
  color: rgba(15, 23, 42, 0.9);
  font-weight: 800;
}



/* =====================================================
   Hero partner carousel (override-safe, 6 logos per slide)
   ===================================================== */

.heroCenter__partners {
  margin-top: clamp(2.75rem, 6vw, 4.75rem);
}

.heroCenter__partnersTop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  flex-wrap: wrap;
}

.heroCenter__partnersLabel {
  font-size: .95rem;
  font-weight: 700;
  color: rgba(15,23,42,.65);
}

.heroCenter__partnersControls {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.heroCenter__partnerBtn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.8);
  box-shadow: 0 8px 18px rgba(15,23,42,.08);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.heroCenter__partnerBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(15,23,42,.12);
  border-color: rgba(99,102,241,.25);
}

.heroCenter__partnerBtn:focus-visible {
  outline: 3px solid rgba(99,102,241,.45);
  outline-offset: 3px;
}

.heroCenter__partnerViewport {
  margin-top: 1.1rem;
  overflow: hidden;
  border-radius: 1rem;
}

/* track + slides */
.heroCenter__partnerTrack {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  transform: translateX(0%);
  transition: transform 500ms ease;
}

.heroCenter__partnerSlide {
  flex: 0 0 100%;
  width: 100%;
  padding: .25rem 0;
}

/* IMPORTANT: high specificity so this wins over earlier .heroCenter__logos rules */
.heroCenter__partners .heroCenter__logos {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 1rem 1.2rem !important;
  align-items: center !important;
  justify-items: center !important;

  padding: .8rem 0 .2rem !important;
  margin: 0 !important;
  list-style: none !important;
  opacity: .9;
}

/* logo item */
.heroCenter__partners .heroCenter__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
  padding: .35rem .6rem;
  border-radius: .9rem;

  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.65);
  

  transition: transform .14s ease, background .14s ease, border-color .14s ease;
  text-decoration: none;
}

.heroCenter__partners .heroCenter__logo:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.82);
  border-color: rgba(99,102,241,.20);
}

/* image sizing */
.heroCenter__logoImg{
  width: clamp(140px, 11vw, 150px);
  height: clamp(44px, 3.6vw, 48px);
  object-fit: contain;
  filter: saturate(.95);
}

/* Responsive: 3 per row tablet, 2 per row phone */
@media (max-width: 980px) {
  .heroCenter__partners .heroCenter__logos {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 520px) {
  .heroCenter__partnerBtn { width: 34px; height: 34px; }
  .heroCenter__partners .heroCenter__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* sr-only helper if you don't already have it */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}



.heroCenter__partnersControls--below {
  margin-top: .8rem;
  justify-content: center;
}





/* =====================================================
   Journey Section (purple background vibe)
   Scoped to .journeySection
   ===================================================== */

.journeySection {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  color: rgba(255,255,255,.94);
}

/* Background */
.journeySection__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 18% 15%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(900px 520px at 85% 25%, rgba(168,85,247,.22), transparent 60%),
    radial-gradient(900px 520px at 50% 110%, rgba(56,189,248,.18), transparent 65%),
    linear-gradient(180deg, #4f46e5 0%, #4338ca 50%, #3730a3 100%);
}

.journeySection__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;

  background:
    radial-gradient(circle at 18% 30%, rgba(255,255,255,.75) 0 2px, transparent 3px),
    radial-gradient(circle at 32% 22%, rgba(255,255,255,.55) 0 2px, transparent 3px),
    radial-gradient(circle at 45% 35%, rgba(255,255,255,.65) 0 2px, transparent 3px),
    radial-gradient(circle at 60% 20%, rgba(255,255,255,.55) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 32%, rgba(255,255,255,.65) 0 2px, transparent 3px),
    radial-gradient(circle at 84% 22%, rgba(255,255,255,.55) 0 2px, transparent 3px),

    linear-gradient(120deg, transparent 40%, rgba(255,255,255,.18) 41%, rgba(255,255,255,.18) 42%, transparent 43%),
    linear-gradient(160deg, transparent 55%, rgba(255,255,255,.16) 56%, rgba(255,255,255,.16) 57%, transparent 58%),
    linear-gradient(200deg, transparent 48%, rgba(255,255,255,.14) 49%, rgba(255,255,255,.14) 50%, transparent 51%);

  mask-image: radial-gradient(70% 55% at 50% 30%, #000 55%, transparent 100%);
}

@media (prefers-reduced-motion: no-preference) {
  .journeySection__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;

    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255,255,255,.12) 50%,
      transparent 100%
    );

    opacity: .95;
    transform: translateX(-80%);
    animation: journeySweep 9s ease-in-out infinite;
    mix-blend-mode: overlay;
  }

  @keyframes journeySweep {
    0% { transform: translateX(-80%); }
    50% { transform: translateX(80%); }
    100% { transform: translateX(-80%); }
  }
}

/* Layout container */
.journeySection__inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.journeySection__header {
  text-align: center;
  margin-bottom: clamp(1.8rem, 3vw, 2.6rem);
}

.journeySection__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
}

.journeySection__subtitle {
  margin-top: .6rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,.92);
}

/* Grid */
.journeySection__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

/* Persona cards */

a.journeyCard {
  text-decoration: none;
}
.journeyCard {
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  gap: .9rem;
  align-items: start;

  padding: 1.05rem;
  border-radius: 1.15rem;
  text-decoration: none;

  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 44px rgba(0,0,0,.25);

  transition:
    transform .16s ease,
    background .16s ease,
    border-color .16s ease,
    box-shadow .16s ease;
}

.journeyCard:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 24px 60px rgba(0,0,0,.32);
}

.journeyCard:focus-visible {
  outline: 3px solid rgba(255,255,255,.6);
  outline-offset: 3px;
}

/* Icon container */
.journeyCard__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;

  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
}

/* Icon color */
.journeyCard__icon .icon {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,.96);
}

/* Card content */
.journeyCard__content {
  display: grid;
  gap: .25rem;
}

.journeyCard__title {
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #ffffff;
}

.journeyCard__text {
  font-size: .98rem;
  line-height: 1.45;
  color: rgba(255,255,255,.92);
}

/* Persona arrow icons */
.journeyCard__arrow .icon {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,.8);
  transition: color .16s ease, transform .16s ease;
}

.journeyCard:hover .journeyCard__arrow .icon {
  color: rgba(255,255,255,1);
  transform: translateX(2px);
}

/* Icon hover glow */
.journeyCard:hover .journeyCard__icon {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.32);
  box-shadow: 0 0 0 4px rgba(255,255,255,.06);
}

/* Responsive */
@media (max-width: 980px) {
  .journeySection__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .journeySection__grid {
    grid-template-columns: 1fr;
  }

  .journeyCard {
    grid-template-columns: 44px 1fr;
  }

  .journeyCard__arrow {
    display: none;
  }
}


/* =====================================================
   Section: Clean Flow (single-goal, whitespace-first)
   Namespace: .ctFlow
   ===================================================== */

.ctFlow {
  background: #ffffff;
  padding: clamp(3.25rem, 6vw, 5.25rem) 0;
}

.ctFlow__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1rem;
}

.ctFlow__header {
  text-align: center;
  margin-bottom: clamp(1.75rem, 3vw, 2.4rem);
}

.ctFlow__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: rgba(15,23,42,.95);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.ctFlow__subtitle {
  margin: .7rem auto 0;
  max-width: 70ch;
  color: rgba(15,23,42,.68);
  font-size: 1.05rem;
  line-height: 1.6;
}

.ctFlow__body {
  margin-top: 1.25rem;
}

/* Steps */
.ctFlow__steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 740px;

  display: grid;
  gap: 1.1rem;
}

.ctFlow__step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  align-items: start;

  padding: .15rem 0; /* whitespace, not cards */
}

.ctFlow__rail {
  position: relative;
  width: 40px;
  display: grid;
  justify-items: center;
}

.ctFlow__dot {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  font-weight: 900;
  font-size: .95rem;
  color: #4f46e5;

  background: rgba(79,70,229,.10);
  border: 1px solid rgba(79,70,229,.22);
}

.ctFlow__line {
  width: 2px;
  height: calc(100% - 32px);
  margin-top: .55rem;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(79,70,229,.28), rgba(79,70,229,.05));
}

.ctFlow__content {
  padding-top: .1rem;
}

.ctFlow__stepTitle {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(15,23,42,.95);
  font-size: 1.12rem;
  line-height: 1.25;
}

.ctFlow__text {
  margin: .35rem 0 0;
  color: rgba(15,23,42,.70);
  line-height: 1.6;
  font-size: 1rem;
}

/* Proof row (quiet, not card-y) */
.ctFlow__proof {
  margin: 1.6rem auto 0;
  max-width: 740px;

  display: flex;
  flex-wrap: wrap;
  gap: .6rem .9rem;
  justify-content: center;

  color: rgba(15,23,42,.68);
  font-weight: 800;
  font-size: .95rem;
}

.ctFlow__proofItem {
  display: inline-flex;
  align-items: center;
  gap: .45rem;

  padding: .35rem .7rem;
  border-radius: 999px;

  background: rgba(15,23,42,.03);
  border: 1px solid rgba(15,23,42,.06);
}

.ctFlow__proof .icon {
  width: 16px;
  height: 16px;
  color: rgba(79,70,229,.9);
}

/* CTA */
.ctFlow__cta {
  margin-top: 1.35rem;
  display: grid;
  justify-items: center;
  gap: .55rem;
}

.ctFlow__btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;

  padding: .95rem 1.25rem;
  border-radius: 999px;
  text-decoration: none !important;
  font-weight: 700;

  color: #ffffff;
  background: #4f46e5;
  box-shadow: 0 16px 34px rgba(79,70,229,.22);
  transition: transform .14s ease, box-shadow .14s ease;
}

.ctFlow__btn:hover, .ctFlow__btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(79,70,229,.28);
  color: #fff;
}

.ctFlow__btn .icon {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

.ctFlow__link {
  text-decoration: none;
  font-weight: 800;
  color: rgba(79,70,229,.95);
}

.ctFlow__link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 520px) {
  .ctFlow__step {
    grid-template-columns: 36px 1fr;
    gap: .85rem;
  }
  .ctFlow__dot {
    width: 30px;
    height: 30px;
  }
}


/* =====================================================
   Final CTA Band – Softer Indigo + Link CTA
   Namespace: .ctFinal
   ===================================================== */

.ctFinal {
  position: relative;
  padding: clamp(3.5rem, 6vw, 4.75rem) 0;
  background: linear-gradient(135deg,
    #4f46e5 0%,   /* start at indigo-600 (not 500) */
    #4338ca 55%,
    #3730a3 100%
  );
  overflow: hidden;
}

/* subtle light texture */
.ctFinal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 420px at 50% 0%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(900px 600px at 20% 100%, rgba(255,255,255,.08), transparent 60%);
  pointer-events: none;
}

.ctFinal__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.ctFinal__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.ctFinal__text {
  margin: 1rem auto 0;
  max-width: 72ch;
  color: #ffffff; /* avoid rgba on the lightest stop */
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Link CTA (editorial feel) */
.ctFinal__actions {
  margin-top: 1.6rem;
}

.ctFinal__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;

  font-weight: 900;
  font-size: 1rem;
  text-decoration: none;

  color: #ffffff;
  border-bottom: 2px solid rgba(255,255,255,.6);

  transition: border-color .15s ease, transform .15s ease;
}

.ctFinal__link:hover, .ctFinal__link:focus {
  color: #ffffff;
  transform: translateX(2px);
}

.ctFinal__link .icon {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

/* =====================================================
   Content Section – Calm, Modern, Accessible
   Namespace: .ctContent
   ===================================================== */

.ctContent {
  display: grid;
  gap: clamp(2.2rem, 4vw, 3.2rem);
  color: #0f172a;
}

/* ---------- Lead ---------- */

.ctContent__lead {
  display: grid;
  gap: .95rem;
}

.ctContent__kicker {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  width: fit-content;
  padding: .35rem .8rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: #4338ca;
  background: rgba(99,102,241,.10);
  border: 1px solid rgba(99,102,241,.22);
}

.ctContent__kicker .icon {
  width: 14px;
  height: 14px;
}

.ctContent__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  color: #0b1220;
}

.ctContent__desc {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(15,23,42,.84);
}

.ctContent__desc strong {
  color: rgba(15,23,42,.97);
  font-weight: 700;
}

/* ---------- Lead Band ---------- */

.ctLeadBand {
  margin-top: .5rem;
  border-radius: 22px;
  padding: clamp(1.1rem, 2.2vw, 1.5rem);
  border: 1px solid rgba(99,102,241,.18);
  background: linear-gradient(135deg, rgba(99,102,241,.08), rgba(255,255,255,.85));
  box-shadow: 0 14px 30px rgba(15,23,42,.06);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
  align-items: center;
}

.ctLeadBand__copy {
  display: grid;
  gap: .55rem;
}

.ctLeadBand__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(15,23,42,.96);
}

.ctLeadBand__text {
  margin: 0;
  color: rgba(15,23,42,.78);
  line-height: 1.65;
  font-size: .98rem;
}

.ctLeadBand__bullets {
  margin: .25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .45rem;
}

.ctLeadBand__bullet {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  color: rgba(15,23,42,.82);
  line-height: 1.5;
  font-size: .95rem;
}

.ctLeadBand__bullet strong {
  font-weight: 700;
}

.ctLeadBand__bullet .icon {
  width: 16px;
  height: 16px;
  color: #4f46e5;
  margin-top: .15rem;
}

/* CTA inside lead band */

.ctLeadBand__cta {
  margin-top: .6rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(15,23,42,.08);
  display: grid;
  gap: .75rem;
}

.ctLeadBand__ctaText {
  font-size: .95rem;
  color: rgba(15,23,42,.78);
  line-height: 1.6;
}

.ctLeadBand__ctaText strong {
  font-weight: 700;
}

.ctLeadBand__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

.ctLeadBand__btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .78rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .14s ease, box-shadow .14s ease;
}

.ctLeadBand__btn--primary {
  color: #ffffff;
  background: linear-gradient(180deg, #6366f1, #4f46e5);
  box-shadow: 0 12px 26px rgba(79,70,229,.22);
  border: 1px solid rgba(99,102,241,.30);
}

.ctLeadBand__btn--primary:hover,
.ctLeadBand__btn--primary:focus {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(79,70,229,.30);
  color: #ffffff;
}

.ctLeadBand__btn--secondary {
  color: rgba(15,23,42,.92);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.14);
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
}

/* Secondary CTA – subtle premium hover/focus treatment */
.ctLeadBand__btn--secondary:hover,
.ctLeadBand__btn--secondary:focus {
  transform: translateY(-1px);
  background: rgba(99, 102, 241, 0.06); /* faint indigo wash */
  border-color: rgba(99, 102, 241, 0.22);
  box-shadow: 0 14px 26px rgba(15,23,42,.10);
  color: rgba(15, 23, 42, 0.96);
}

/* Keyboard focus should feel deliberate */
.ctLeadBand__btn--secondary:focus-visible {
  outline: 3px solid rgba(79, 70, 229, 0.65);
  outline-offset: 3px;
  background: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.30);
}

.ctLeadBand__btn .icon {
  width: 18px;
  height: 18px;
}

/* ---------- FAQ ---------- */

.ctFaqBlock {
  display: grid;
  gap: 1.2rem;
}

.ctFaqBlock__top {
  display: grid;
  gap: .55rem;
}

.ctFaqBlock__chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  width: fit-content;
  padding: .35rem .75rem;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  color: #4338ca;
  background: rgba(99,102,241,.10);
  border: 1px solid rgba(99,102,241,.22);
}

.ctFaqBlock__chip .icon {
  width: 14px;
  height: 14px;
}

.ctFaqBlock__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.ctFaqBlock__sub {
  margin: 0;
  color: rgba(15,23,42,.74);
  font-size: .98rem;
  line-height: 1.65;
}

/* FAQ list */

.ctFaqList {
  display: grid;
  gap: .9rem;
}

/* FAQ items – softer, premium feel (single source of truth) */

.ctFaqItem {
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.06);
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15,23,42,.04);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.ctFaqItem:hover {
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  border-color: rgba(15,23,42,.08);
}

.ctFaqItem[open] {
  border-color: rgba(99,102,241,.18);
  box-shadow:
    0 14px 32px rgba(79,70,229,.08),
    0 0 0 1px rgba(99,102,241,.10);
  background: linear-gradient(to bottom, #ffffff, rgba(99,102,241,.02));
}

.ctFaqItem__summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: rgba(15,23,42,.96);
}

.ctFaqItem__summary::-webkit-details-marker { display: none; }

.ctFaqItem__summary:focus-visible {
  outline: 3px solid rgba(99,102,241,.45);
  outline-offset: -3px;
}

.ctFaqItem__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.22);
}

.ctFaqItem__icon .icon {
  width: 18px;
  height: 18px;
  color: #4f46e5;
}

.ctFaqItem__panel {
  padding: 0 1.15rem 1.1rem 4.1rem;
  color: rgba(15,23,42,.86);
  line-height: 1.75;
  font-size: .98rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .35s ease, opacity .25s ease;
}

.ctFaqListBullets {
  margin: .75rem 0 0;
  padding-left: 1.2rem;
  color: rgba(15,23,42,.82);
  line-height: 1.7;
  display: grid;
  gap: .35rem;
  font-size: .98rem;
}


.ctFaqItem[open] .ctFaqItem__panel {
  max-height: 520px;
  opacity: 1;
}

/* Chevron rotate on open/close */
.ctFaqItem__chev .icon {
  width: 18px;
  height: 18px;
  color: rgba(15,23,42,.60);
  transition: transform .2s ease, color .2s ease;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
}

.ctFaqItem[open] .ctFaqItem__chev .icon {
  transform: rotate(180deg);
  color: #4f46e5;
}

/* Inline FAQ CTA */

.ctFaqActions {
  margin-top: .85rem;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .6rem;
}

.ctFaqAction {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  color: #4338ca;
  background: rgba(99,102,241,.10);
  border: 1px solid rgba(99,102,241,.22);
  transition: transform .14s ease, background .14s ease;
}

.ctFaqAction:hover,
.ctFaqAction:focus {
  transform: translateY(-1px);
  background: rgba(99,102,241,.16);
}

.ctFaqAction:focus-visible {
  outline: 3px solid rgba(99,102,241,.45);
  outline-offset: 2px;
}

/* Responsive */

@media (max-width: 980px) {
  .ctLeadBand {
    grid-template-columns: 1fr;
  }
  .ctFaqItem__panel {
    padding-left: 1.15rem;
  }
}

@media (max-width: 520px) {
  .ctFaqAction {
    width: 100%;
    justify-content: space-between;
  }
}

/* =====================================================
   CTA buttons should NEVER underline (override globals)
   Applies to hero + lead band + FAQ + journey buttons
   ===================================================== */

.heroCenter__btn,
.ctLeadBand__btn,
.ctFaqAction,
.journeyCard,
.ctFlow__btn,
.ctFinal__link {
  text-decoration: none !important;
}

.heroCenter__btn:hover,
.heroCenter__btn:focus,
.heroCenter__btn:focus-visible,

.ctLeadBand__btn:hover,
.ctLeadBand__btn:focus,
.ctLeadBand__btn:focus-visible,

.ctFaqAction:hover,
.ctFaqAction:focus,
.ctFaqAction:focus-visible,

.ctFlow__btn:hover,
.ctFlow__btn:focus,
.ctFlow__btn:focus-visible {
  text-decoration: none !important;
}

/* =====================================================
   Accessible focus styles (high contrast, consistent)
   ===================================================== */

.heroCenter__btn:focus-visible,
.ctLeadBand__btn:focus-visible,
.ctFaqAction:focus-visible {
  outline: 3px solid rgba(79, 70, 229, 0.75);
  outline-offset: 3px;
}

.ctLeadBand__btn--secondary:focus-visible,
.ctFaqAction:focus-visible {
  background: #ffffff !important;
  color: rgba(15, 23, 42, 0.95) !important;
  border-color: rgba(79, 70, 229, 0.35) !important;
}

.ctLeadBand__art {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(99,102,241,.16);
  background: linear-gradient(135deg, rgba(99,102,241,.08), rgba(255,255,255,.85));
  box-shadow: 0 16px 34px rgba(15,23,42,.06);
}

.ctLeadBand__artImg{display:block;width:100%;height:auto;}



.ctGuide {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.6rem);
  color: #0f172a;
}

.ctGuide__lead {
  display: grid;
  gap: .85rem;
}

.ctGuide__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: #0b1220;
}

.ctGuide__desc {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(15,23,42,.84);
}

.ctGuide__intro {
  display: grid;
  gap: .65rem;
  max-width: 80ch;
}

.ctGuide__lede {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(15,23,42,.82);
}

.ctGuide__highlights {
  margin: .25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .45rem;
  color: rgba(15,23,42,.82);
  font-weight: 700;
}

.ctGuide__highlights li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
}

.ctGuide__highlights .icon {
  width: 16px;
  height: 16px;
  color: #4f46e5;
  margin-top: .2rem;
}

/* Option 1 TOC (inline + divider) */
.ctGuide__toc {
  margin-top: 1rem;
  padding: .85rem 0;
  background: transparent;
  border-radius: 0;
  border-top: 1px solid rgba(15,23,42,.08);
  border-bottom: 1px solid rgba(15,23,42,.08);
  box-shadow: none;
}

.ctGuide__tocTitle {
  font-weight: 700;
  color: rgba(15,23,42,.90);
  letter-spacing: -0.01em;
  margin-bottom: .6rem;
}

.ctGuide__tocList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.15rem;
}

.ctGuide__tocLink {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  color: rgba(67,56,202,.95);
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color .15s ease, color .15s ease;
}

.ctGuide__tocLink:hover {
  text-decoration: none;
  border-color: rgba(67,56,202,.40);
}

.ctGuide__tocLink:focus-visible {
  outline: 3px solid rgba(79,70,229,.75);
  outline-offset: 3px;
  border-radius: 10px;
  text-decoration: none;
}

/* Body */
.ctGuide__body {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.2rem);
}

.ctGuide__section {
  display: grid;
  gap: 1rem;
}

.ctGuide__h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  color: rgba(15,23,42,.96);
}

/* Callout */
.ctGuide__callout {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: .9rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(99,102,241,.10), rgba(255,255,255,.92));
  border: 1px solid rgba(99,102,241,.18);
  box-shadow: 0 12px 26px rgba(15,23,42,.05);
}

.ctGuide__calloutIcon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.20);
}

.ctGuide__calloutIcon .icon {
  width: 18px;
  height: 18px;
  color: #4f46e5;
}

.ctGuide__calloutTitle {
  font-weight: 700;
  color: rgba(15,23,42,.92);
}

.ctGuide__calloutText {
  margin: .25rem 0 0;
  color: rgba(15,23,42,.78);
  line-height: 1.65;
}

/* Resource Cards */
.ctResourceCard {
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 10px 22px rgba(15,23,42,.05);
  padding: 1.05rem 1.05rem .95rem;
}

.ctResourceCard__grid {
  display: grid;
  grid-template-columns: 80px 1fr; /* Option A: narrower media column */
  gap: 1rem;
  align-items: start;
}

.ctResourceCard__media {
  display: grid;
  align-content: start;
  justify-items: start; /* Option A: align icon tile to the left */
  padding-top: .15rem;  /* Option A: slightly tighter baseline alignment */
}

/* Icon media (replaces logos) */
.ctResourceCard__iconWrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(99,102,241,.10);
  border: 1px solid rgba(99,102,241,.18);
  box-shadow: 0 10px 20px rgba(15,23,42,.05);
}

.ctResourceCard__iconWrap .icon {
  width: 22px;
  height: 22px;
  color: #4f46e5;
}

.ctResourceCard__content {
  display: grid;
  gap: .85rem;
  min-width: 0;
}

.ctResourceCard__head {
  display: grid;
  gap: .35rem;
}

.ctResourceCard__title {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(15,23,42,.96);
  font-size: 1.05rem;
  line-height: 1.25;
}

.ctResourceCard__text {
  margin: 0;
  color: rgba(15,23,42,.80);
  line-height: 1.75;
}

.ctResourceCard__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: center;
}

/* Button underline hard overrides */
.ctResourceCard a.ctGuideBtn,
.ctResourceCard a.ctGuideBtn:hover,
.ctResourceCard a.ctGuideBtn:focus,
.ctResourceCard a.ctGuideBtn:active,
.ctResourceCard a.ctGuideBtn:visited {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.ctResourceCard a,
.ctResourceCard a:hover,
.ctResourceCard a:focus,
.ctResourceCard a:active {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

/* Buttons */
.ctGuideBtn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem .95rem;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.92);
  color: rgba(15,23,42,.92);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.ctGuideBtn .icon {
  width: 18px;
  height: 18px;
}

.ctGuideBtn:hover,
.ctGuideBtn:focus {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(15,23,42,.08);
}

.ctGuideBtn:focus-visible {
  outline: 3px solid rgba(79,70,229,.75);
  outline-offset: 3px;
}

.ctGuideBtn--primary {
  color: #ffffff;
  border-color: rgba(99,102,241,.30);
  background: linear-gradient(180deg, #6366f1, #4f46e5);
  box-shadow: 0 12px 26px rgba(79,70,229,.22);
}

.ctGuideBtn--primary:hover,
.ctGuideBtn--primary:focus {
  color: #ffffff;
}

.ctGuideBtn--ghost {
  background: rgba(99,102,241,.08);
  border-color: rgba(99,102,241,.18);
  color: rgba(67,56,202,.98);
}

/* Tools strip (Option B: balanced, actions under text) */
.ctGuide__tools {
  margin-top: .4rem;
  border-radius: 22px;
  padding: clamp(1.1rem, 2.2vw, 1.45rem);
  border: 1px solid rgba(99,102,241,.16);
  background: linear-gradient(135deg, rgba(99,102,241,.08), rgba(255,255,255,.92));
  box-shadow: 0 14px 30px rgba(15,23,42,.06);
}

.ctGuide__toolsTitle {
  margin-bottom: .35rem;
}

.ctGuide__toolsText {
  margin: 0;
  color: rgba(15,23,42,.78);
  line-height: 1.7;
}

.ctGuide__miniList {
  margin: .75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .4rem;
  color: rgba(15,23,42,.82);
  font-weight: 700;
}

.ctGuide__miniList li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
}

.ctGuide__miniList .icon {
  width: 16px;
  height: 16px;
  color: #4f46e5;
  margin-top: .2rem;
}

.ctGuide__toolsActions {
  margin-top: .9rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: flex-start;
}

/* Responsive */
@media (max-width: 980px) {
  .ctResourceCard__grid {
    grid-template-columns: 72px 1fr; /* Option A: keep proportions */
  }
}

@media (max-width: 680px) {
  .ctGuide__tocList {
    gap: .5rem .9rem;
  }

  .ctResourceCard__grid {
    grid-template-columns: 1fr;
  }

  .ctResourceCard__media {
    justify-items: start;
  }

  .ctResourceCard__iconWrap {
    width: 52px;
    height: 52px;
  }

  .ctGuideBtn {
    width: 100%;
    justify-content: space-between;
  }
}

:root {
  --ctAnchorOffset: 88px;
}

@media (max-width: 680px) {
  :root {
    --ctAnchorOffset: 104px;
  }
}

/* Component-scoped: only affects this guide */
.ctGuide__section {
  scroll-margin-top: var(--ctAnchorOffset);
}

/* Backup in case a browser aligns to the heading instead of the section */
.ctGuide__h2 {
  scroll-margin-top: var(--ctAnchorOffset);
}

/* =====================================================
   Career Guide Page (Scoped)
   Parent: .ctCareerGuide
   ===================================================== */

/* ---------------------------------------
   Hero Section (Option A: not a card)
--------------------------------------- */

.ctCareerGuide__hero {
  margin-top: .5rem;
}

/* No top padding, no background, no framing */
.ctCareerGuide__heroInner {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  
  background: transparent;
}

/* Subtle structural divider under hero */
.ctCareerGuide__heroInner::after {
  content: "";
  display: block;
  margin-top: 1.4rem;
  border-top: 1px solid rgba(15,23,42,.08);
}

.ctCareerGuide__heroTop {
  margin-bottom: .85rem;
}

.ctCareerGuide__h2 {
  margin: 0 0 .85rem 0;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: rgba(15,23,42,.96);
}

/* More balanced layout so it doesn't feel left-heavy */
.ctCareerGuide__heroGrid {
  display: grid;
  grid-template-columns: 4fr 1fr; /* ~80% / 20% */
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}

.ctCareerGuide__toc {
  max-width: 220px; /* prevents it from stretching awkwardly */
}

.ctCareerGuide__heroCopy {
  min-width: 0;
}

.ctCareerGuide__heroKicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  color: rgba(15,23,42,.92);
  letter-spacing: -0.01em;
}

.ctCareerGuide__heroKickerIcon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(99,102,241,.10);
  border: 1px solid rgba(99,102,241,.18);
}

.ctCareerGuide__heroKickerIcon .icon {
  width: 18px;
  height: 18px;
  color: #4f46e5;
}

.ctCareerGuide__heroText {
  margin: .7rem 0 0;
  color: rgba(15,23,42,.80);
  line-height: 1.75;
  max-width: 90ch; /* slightly tighter to reduce left weight */
}

/* Steps list */
.ctCareerGuide__steps {
  margin: 1.2rem 0 0; /* more breathing room */
  padding: 0;
  list-style: none;
  display: grid;
  gap: .5rem;
  color: rgba(15,23,42,.88);
  font-weight: 700;
}

.ctCareerGuide__steps li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
}

.ctCareerGuide__steps .icon {
  width: 16px;
  height: 16px;
  color: #4f46e5;
  margin-top: .2rem;
}

/* ---------------------------------------
   TOC (No border-bottom links)
--------------------------------------- */

.ctCareerGuide__toc {
  padding: .2rem 0 0;
  border: 0;
  background: transparent;
}

.ctCareerGuide__tocTitle {
  font-weight: 700;
  color: rgba(15,23,42,.90);
  letter-spacing: -0.01em;
  margin-bottom: .75rem;
}

.ctCareerGuide__tocList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .7rem;
}

.ctCareerGuide__tocLink,
.ctCareerGuide__tocLink:hover,
.ctCareerGuide__tocLink:focus,
.ctCareerGuide__tocLink:active,
.ctCareerGuide__tocLink:visited {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  border-bottom: 0 !important;
  padding-bottom: 0;
  color: rgba(67,56,202,.95);
  font-weight: 700;
  line-height: 1.4;
  transition: opacity .15s ease;
}

.ctCareerGuide__tocLink:hover {
  opacity: .85;
}

.ctCareerGuide__tocLink:focus-visible {
  outline: 3px solid rgba(79,70,229,.75);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ---------------------------------------
   Compact Resource Grid (2 Columns)
--------------------------------------- */

.ctCareerGuide__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

/* No misleading lift/raise effect */
.ctCareerGuide__miniCard {
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 12px 24px rgba(15,23,42,.05);
  padding: 1rem 1rem .95rem;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: .9rem;
  align-items: start;
  transition: border-color .15s ease, box-shadow .15s ease;
}

/* Subtle, honest hover cue */
.ctCareerGuide__miniCard:hover {
  border-color: rgba(15,23,42,.10);
  box-shadow: 0 14px 26px rgba(15,23,42,.055);
}

.ctCareerGuide__miniMedia {
  display: grid;
  align-content: start;
  justify-items: start;
  padding-top: .05rem;
}

.ctCareerGuide__miniIcon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(99,102,241,.10);
  border: 1px solid rgba(99,102,241,.18);
}

.ctCareerGuide__miniIcon .icon {
  width: 18px;
  height: 18px;
  color: #4f46e5;
}

.ctCareerGuide__miniTitle {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(15,23,42,.95);
  font-size: 1rem;
  line-height: 1.25;
}

.ctCareerGuide__miniText {
  margin: .4rem 0 0;
  color: rgba(15,23,42,.78);
  line-height: 1.7;
}

/* Mini card links (no border-bottom) */
.ctCareerGuide__miniLink,
.ctCareerGuide__miniLink:hover,
.ctCareerGuide__miniLink:focus,
.ctCareerGuide__miniLink:active,
.ctCareerGuide__miniLink:visited {
  margin-top: .65rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  color: rgba(67,56,202,.95);
  text-decoration: none !important;
  border-bottom: 0 !important;
  padding-bottom: 0;
  transition: opacity .15s ease;
}

.ctCareerGuide__miniLink:hover {
  opacity: .88;
}

.ctCareerGuide__miniLink:focus-visible {
  outline: 3px solid rgba(79,70,229,.75);
  outline-offset: 3px;
  border-radius: 10px;
}

.ctCareerGuide__miniLink .icon {
  width: 18px;
  height: 18px;
}

/* When tabbing to a link, give the card a gentle cue */
.ctCareerGuide__miniCard:focus-within {
  border-color: rgba(99,102,241,.22);
  box-shadow: 0 16px 28px rgba(15,23,42,.06);
}

/* ---------------------------------------
   Tools Strip Additions (optional support, but tools section uses existing ctGuide__tools styles)
--------------------------------------- */

.ctCareerGuide__quietNote {
  margin: 1rem 0 0;
  color: rgba(15,23,42,.70);
  line-height: 1.7;
}

/* ---------------------------------------
   Responsive
--------------------------------------- */

@media (max-width: 980px) {
  .ctCareerGuide__heroGrid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .ctCareerGuide__heroText {
    max-width: 72ch;
  }
}

@media (max-width: 680px) {
  .ctCareerGuide__grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   FAQ Grouping — Editorial, Subtle
   Scoped to ctFaqBlock
   ===================================================== */

.ctFaqBlock > .ctFaqBlock__title {
  margin-bottom: 1.4rem;
}

/* Group wrapper spacing */
.ctFaqGroup {
  margin-top: clamp(2.2rem, 4vw, 3rem);
}

.ctFaqGroup:first-of-type {
  margin-top: 1.6rem;
}

/* Editorial-style group heading */
.ctFaqGroup__title {
  margin: 0 0 1rem 0;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1.05rem;
  color: rgba(15,23,42,.75);
  text-transform: none;
}

/* Slight tightening inside grouped sections */
.ctFaqGroup .ctFaqItem {
  margin-bottom: .65rem;
}

/* Reduce excess vertical density between details blocks */
.ctFaqGroup .ctFaqItem:last-child {
  margin-bottom: 0;
}

/* Optional: very subtle divider before second/third groups */
.ctFaqGroup + .ctFaqGroup {
  padding-top: 1.6rem;
  border-top: 1px solid rgba(15,23,42,.06);
}