@font-face {
  font-family: "Roboto Condensed";
  src: url("/fonts/roboto-condensed-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --indigo: #220339;
  --deep-purple: #25043d;
  --plum: #93005f;
  --lime: #d5ff00;
  --coral: #ff5446;
  --coral-hover: #ff8a81;
  --grey: #fbf8fc;
  --mid-grey: #e7dfe9;
  --muted: #685b70;
  --white: #ffffff;
  --focus: #005fcc;
  --iascu-blue: #009edb;
  --shell: 1390px;
  --reading: 920px;
  --page-gutter: 45px;
  --header-height: 117px;
  --gradient-primary: linear-gradient(90deg, #ff5446 0%, #93005f 46%, #25043d 100%);
  --gradient-accent: linear-gradient(90deg, #93005f 0%, #ff5446 29%, #d5ff00 100%);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { color-scheme: light; scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--indigo);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
p, h1, h2, h3, dl, dd, ul, ol { margin-top: 0; }
button, input { font: inherit; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: min(calc(100% - (2 * var(--page-gutter))), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 12px 18px;
  color: var(--indigo);
  background: var(--lime);
  border-radius: 4px;
  font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }

/* Header and mega-menu */
.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
}

.header-main {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(330px, 1fr) auto var(--header-height);
  align-items: center;
  gap: 16px;
}

.brand-visual { width: 310px; text-decoration: none; }
.brand-visual img { width: 100%; height: auto; }
.header-actions { display: flex; align-items: center; gap: 10px; }

.header-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  border: 1px solid var(--lime);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.header-action-primary { color: var(--indigo); background: var(--lime); }
.header-action-primary:hover, .header-action-primary:focus-visible { background: var(--white); border-color: var(--white); }
.header-action-secondary { color: var(--lime); background: transparent; }
.header-action-secondary:hover, .header-action-secondary:focus-visible { color: var(--indigo); background: var(--lime); }

.menu-button {
  width: var(--header-height);
  height: var(--header-height);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 11px;
  padding: 0;
  color: var(--indigo);
  background: var(--lime);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
}

.menu-button:hover { background: var(--white); }

.menu-mark, .menu-mark::before, .menu-mark::after {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--indigo);
  transition: transform 180ms ease, background-color 180ms ease;
}

.menu-mark { position: relative; }
.menu-mark::before, .menu-mark::after { content: ""; position: absolute; left: 0; }
.menu-mark::before { top: -9px; }
.menu-mark::after { top: 9px; }
.menu-button[aria-expanded="true"] .menu-mark { background: transparent; }
.menu-button[aria-expanded="true"] .menu-mark::before { top: 0; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-mark::after { top: 0; transform: rotate(-45deg); }

.site-navigation {
  position: fixed;
  z-index: 45;
  inset: var(--header-height) 0 0;
  display: none;
  overflow-y: auto;
  color: var(--white);
  background: var(--deep-purple);
  background-image: var(--gradient-primary);
  border-top: 1px solid rgba(255, 255, 255, .35);
}

.site-navigation.is-open { display: block; }

.mega-menu-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(240px, 1fr);
  gap: clamp(40px, 7vw, 110px);
  padding-block: 54px 70px;
}

.nav-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 32px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-group { min-width: 0; }

.nav-primary-link {
  display: inline-block;
  margin-bottom: 18px;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-group.is-active .nav-primary-link, .nav-primary-link:hover, .nav-primary-link:focus-visible { color: var(--lime); }

.nav-submenu {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-submenu a {
  color: var(--white);
  font-size: 15px;
  line-height: 1.35;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.nav-submenu a:hover, .nav-submenu a:focus-visible { color: var(--lime); text-decoration-color: currentColor; }

.mega-menu-meta {
  align-self: start;
  padding: 28px;
  color: var(--indigo);
  background: var(--lime);
}

.mega-menu-meta p:first-child {
  margin-bottom: 18px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.mega-menu-meta p:nth-child(2) { margin-bottom: 28px; font-size: 13px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.mega-menu-meta a { font-size: 14px; font-weight: 800; text-underline-offset: 4px; }

/* Hero */
.page-hero {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  color: var(--white);
  background: var(--deep-purple);
}

.page-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 8px;
  background: var(--gradient-accent);
}

.page-hero-home { min-height: 680px; background-image: var(--gradient-primary); }

.breadcrumbs { position: relative; z-index: 2; padding-top: calc(var(--header-height) + 22px); }

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
}

.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 12px; color: var(--lime); }
.breadcrumbs a { font-weight: 700; text-decoration-color: var(--lime); text-underline-offset: 3px; }

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  padding-top: calc(var(--header-height) + 56px);
  padding-bottom: 70px;
}

.breadcrumbs + .hero-grid { min-height: 420px; padding-top: 30px; }
.hero-copy { grid-column: 1 / span 6; min-width: 0; max-width: 680px; padding-right: 18px; }

.eyebrow {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.page-hero .eyebrow { color: var(--lime); }

h1 {
  max-width: 13ch;
  margin-bottom: 26px;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -.018em;
  line-height: .915;
  text-transform: uppercase;
}

.home-page h1 { max-width: 14ch; }

.hero-summary {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--white);
  font-size: 24px;
  line-height: 1.48;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero-media {
  grid-column: 7 / -1;
  align-self: stretch;
  min-height: 390px;
  display: flex;
  align-items: center;
  margin-right: calc((100vw - min(100vw - (2 * var(--page-gutter)), var(--shell))) / -2);
}

.hero-media-panel {
  position: relative;
  width: 100%;
  min-height: 390px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--grey);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%, 0 86%, 8% 86%, 8% 71%, 0 71%, 0 57%, 14% 57%, 14% 43%, 6% 43%, 6% 28%, 14% 28%);
}

.hero-media-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(213, 255, 0, .24), transparent 38%), linear-gradient(315deg, rgba(255, 84, 70, .18), transparent 42%);
}

.hero-media-panel::after {
  content: "IASCU";
  position: absolute;
  right: 4%;
  bottom: -3%;
  color: rgba(34, 3, 57, .055);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: clamp(100px, 15vw, 220px);
  font-weight: 900;
  line-height: 1;
}

.hero-media-panel img { position: relative; z-index: 1; width: min(42%, 260px); height: auto; }

/* Controls */
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button-primary, .button-light { color: var(--indigo); background: var(--lime); }
.button-primary:hover, .button-light:hover { background: var(--white); border-color: var(--indigo); }
.button-outline-light { color: var(--white); background: transparent; border-color: var(--white); }
.button-outline-light:hover { color: var(--indigo); background: var(--white); }

/* Facts and main content */
.facts-wrap { position: relative; z-index: 5; margin-top: -34px; }

.fact-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin: 0;
  color: var(--indigo);
  background: var(--lime);
  border: 1px solid var(--indigo);
}

.fact-strip > div { min-width: 0; padding: 24px; border-right: 1px solid var(--indigo); }
.fact-strip > div:last-child { border-right: 0; }
.fact-strip dt { margin-bottom: 6px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.fact-strip dd { margin: 0; font-family: "Roboto Condensed", Arial, sans-serif; font-size: 19px; font-weight: 800; line-height: 1.25; overflow-wrap: anywhere; }

.page-content { padding-block: 86px 96px; }

.content-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, var(--reading));
  justify-content: center;
  gap: clamp(50px, 7vw, 110px);
}

.content-layout:not(:has(.section-index)) { grid-template-columns: minmax(0, var(--reading)); }

.section-index { position: sticky; top: 28px; align-self: start; border-top: 8px solid var(--lime); padding-top: 20px; }
.section-index p { margin-bottom: 14px; font-family: "Roboto Condensed", Arial, sans-serif; font-size: 19px; font-weight: 800; text-transform: uppercase; }
.section-index ol { padding: 0; margin: 0; list-style: none; font-size: 14px; line-height: 1.35; }
.section-index li { padding-block: 8px; border-top: 1px solid var(--mid-grey); }
.section-index li:last-child { border-bottom: 1px solid var(--mid-grey); }
.section-index a { text-decoration-color: transparent; text-underline-offset: 3px; }
.section-index a:hover, .section-index a:focus-visible { text-decoration-color: var(--plum); }

.content-stack { min-width: 0; }
.content-section { padding-block: 54px 60px; border-top: 1px solid var(--indigo); scroll-margin-top: 24px; }
.content-section:first-child { padding-top: 0; border-top: 0; }

.content-section h2 {
  max-width: 22ch;
  margin: 0 0 24px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.22;
}

.content-copy { max-width: 760px; }
.content-copy p { margin-bottom: 0; font-size: 18px; line-height: 1.7; }

.structured-list { padding: 0; margin: 28px 0 0; list-style: none; border-top: 1px solid var(--indigo); }
.structured-list li { position: relative; padding: 15px 18px 15px 34px; border-bottom: 1px solid var(--indigo); }
.structured-list li::before { content: ""; position: absolute; top: 24px; left: 3px; width: 11px; height: 11px; background: var(--coral); }

.page-cta {
  width: min(100%, var(--reading));
  margin: 58px auto 0;
  padding: 32px;
  color: var(--white);
  background: var(--plum);
  border-left: 12px solid var(--lime);
}

.page-cta .button-primary:hover { border-color: var(--white); }

/* Related content and search */
.related { padding-block: 58px 72px; border-top: 1px solid var(--indigo); }
.related .eyebrow { color: var(--plum); }

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  border-top: 1px solid var(--indigo);
  border-left: 1px solid var(--indigo);
}

.related-item {
  min-height: 138px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  background: var(--grey);
  border-right: 1px solid var(--indigo);
  border-bottom: 1px solid var(--indigo);
  transition: background-color 180ms ease;
}

.related-item:hover { background: var(--lime); }
.related-item a { font-family: "Inter", Arial, sans-serif; font-size: 24px; font-weight: 700; line-height: 1.2; text-decoration-color: transparent; }
.related-item:hover a, .related-item a:focus-visible { text-decoration-color: var(--indigo); text-underline-offset: 4px; }
.related-item span { font-size: 28px; }

.search-interface { width: min(100%, var(--reading)); margin-inline: auto; }
.search-form { padding-bottom: 42px; border-bottom: 1px solid var(--indigo); }
.search-form label { display: block; margin-bottom: 12px; font-family: "Roboto Condensed", Arial, sans-serif; font-size: 20px; font-weight: 800; text-transform: uppercase; }
.search-control { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.search-control input { min-width: 0; min-height: 52px; padding: 11px 15px; color: var(--indigo); background: var(--white); border: 1px solid var(--indigo); border-radius: 4px; }
.search-status { margin-block: 24px; color: var(--muted); font-size: 14px; font-weight: 700; }
.search-result { padding-block: 26px; border-top: 1px solid var(--indigo); }
.search-result h2 { margin-bottom: 8px; font-family: "Inter", Arial, sans-serif; font-size: 28px; font-weight: 700; line-height: 1.25; }
.search-result h2 a { text-decoration-color: var(--coral); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.search-result p { max-width: 68ch; margin-bottom: 0; }

/* Footer */
.site-footer { position: relative; overflow: hidden; color: var(--white); background: var(--indigo); }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 8px; background: var(--gradient-accent); }

.footer-top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) 2fr;
  gap: clamp(50px, 7vw, 110px);
  padding-block: 78px 62px;
}

.footer-brand { position: relative; z-index: 1; }
.footer-brand img { width: min(100%, 300px); height: auto; }
.footer-brand p { max-width: 420px; margin: 28px 0 0; color: rgba(255, 255, 255, .8); font-size: 14px; }
.footer-groups { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer-group h2 { margin-bottom: 16px; color: var(--lime); font-family: "Roboto Condensed", Arial, sans-serif; font-size: 17px; font-weight: 800; letter-spacing: .025em; text-transform: uppercase; }
.footer-group ul { padding: 0; margin: 0; list-style: none; }
.footer-group li + li { margin-top: 9px; }
.footer-group a { color: var(--white); font-size: 14px; text-decoration-color: transparent; text-underline-offset: 4px; }
.footer-group a:hover, .footer-group a:focus-visible { color: var(--lime); text-decoration-color: currentColor; }

.footer-steps { position: absolute; right: -20px; bottom: -1px; width: 210px; height: 155px; opacity: .18; }
.footer-steps span { position: absolute; right: 0; bottom: 0; border: 1px solid var(--white); }
.footer-steps span:nth-child(1) { width: 210px; height: 52px; }
.footer-steps span:nth-child(2) { width: 144px; height: 103px; }
.footer-steps span:nth-child(3) { width: 76px; height: 155px; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 28px;
  padding-block: 20px;
  color: rgba(255, 255, 255, .72);
  border-top: 1px solid rgba(255, 255, 255, .32);
  font-size: 12px;
}

.footer-legal p { margin: 0; }

@media (max-width: 1080px) {
  :root { --page-gutter: 30px; --header-height: 96px; }
  .header-main { grid-template-columns: 250px 1fr var(--header-height); }
  .brand-visual { width: 240px; }
  .header-action:nth-child(2) { display: none; }
  .mega-menu-inner { grid-template-columns: 1fr; }
  .nav-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mega-menu-meta { max-width: 560px; }
  .hero-copy { grid-column: 1 / span 7; }
  .hero-media { grid-column: 8 / -1; }
  h1 { font-size: 46px; line-height: .905; }
  .hero-summary { font-size: 21px; }
  .footer-groups { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --page-gutter: 15px; --header-height: 72px; }
  body { font-size: 16px; }
  .header-main { grid-template-columns: minmax(0, 1fr) auto var(--header-height); gap: 8px; }
  .brand-visual { width: min(48vw, 185px); }
  .header-actions { gap: 6px; }
  .header-action { min-height: 36px; padding: 8px 10px; font-size: 12px; }
  .header-action-secondary, .header-action-primary:nth-child(3) { display: none; }
  .menu-button { width: var(--header-height); height: var(--header-height); gap: 8px; font-size: 12px; }
  .menu-mark, .menu-mark::before, .menu-mark::after { width: 24px; height: 2px; }
  .menu-mark::before { top: -7px; }
  .menu-mark::after { top: 7px; }
  .site-navigation { inset: var(--header-height) 0 0; }
  .mega-menu-inner { padding-block: 32px 48px; }
  .nav-list { grid-template-columns: 1fr; gap: 28px; }
  .nav-primary-link { margin-bottom: 12px; font-size: 26px; }
  .nav-submenu { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 18px; }
  .nav-submenu a { font-size: 14px; }
  .mega-menu-meta { padding: 22px; }
  .page-hero, .page-hero-home { min-height: auto; }
  .breadcrumbs { padding-top: calc(var(--header-height) + 16px); }
  .hero-grid, .breadcrumbs + .hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 36px; padding-top: calc(var(--header-height) + 46px); padding-bottom: 0; }
  .breadcrumbs + .hero-grid { padding-top: 26px; }
  .hero-copy { grid-column: 1; padding-right: 0; }
  h1 { max-width: 14ch; margin-bottom: 20px; font-size: 38px; line-height: .845; }
  .hero-summary { font-size: 20px; line-height: 1.42; }
  .hero-actions { gap: 10px; margin-top: 26px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .button { min-height: 48px; }
  .hero-media { grid-column: 1; min-height: 230px; margin: 0 -15px; }
  .hero-media-panel { min-height: 230px; clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 80%, 8% 80%, 8% 61%, 0 61%, 0 42%, 10% 42%, 10% 22%); }
  .hero-media-panel img { width: min(35%, 150px); }
  .facts-wrap { width: 100%; margin-top: 0; }
  .fact-strip { grid-template-columns: 1fr; border-inline: 0; }
  .fact-strip > div { padding: 18px 15px; border-right: 0; border-bottom: 1px solid var(--indigo); }
  .fact-strip > div:last-child { border-bottom: 0; }
  .page-content { padding-block: 58px 66px; }
  .content-layout { grid-template-columns: 1fr; gap: 46px; }
  .section-index { position: static; padding: 18px; background: var(--grey); border-top-width: 6px; }
  .content-section { padding-block: 38px 42px; }
  .content-section h2 { margin-bottom: 18px; font-size: 24px; line-height: 1.16; }
  .content-copy p { font-size: 16px; }
  .structured-list { margin-top: 22px; }
  .structured-list li { padding: 13px 8px 13px 28px; }
  .structured-list li::before { top: 20px; width: 9px; height: 9px; }
  .page-cta { margin-top: 40px; padding: 24px; }
  .related { width: 100%; padding: 42px 15px 52px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-item { min-height: 110px; }
  .search-control { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 52px; padding-block: 62px 50px; }
  .footer-groups { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-legal { display: grid; }
}

@media (max-width: 430px) {
  .header-action-primary { display: none; }
  .header-main { grid-template-columns: minmax(0, 1fr) var(--header-height); }
  .header-actions { display: none; }
  .nav-submenu, .footer-groups { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

@media print {
  .site-header, .site-footer, .hero-media, .hero-actions, .section-index, .related { display: none !important; }
  .page-hero { min-height: auto; color: var(--indigo); background: var(--white); }
  .hero-grid { min-height: auto; display: block; padding: 0 0 28px; }
  .hero-summary, .page-hero .eyebrow { color: var(--indigo); }
  .page-content { padding-block: 20px; }
}
