:root {
  --rit-orange: #f76902;
  --orange-hot: #ff8a1d;
  --black: #000;
  --charcoal: #111;
  --silver: #d0d3d4;
  --smoke: rgba(255, 255, 255, 0.72);
  --white: #fff;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(247, 105, 2, 0.5);
  --shadow-xl: 0 34px 100px rgba(0, 0, 0, 0.52);
  --shadow-orange: 0 0 42px rgba(247, 105, 2, 0.28);
  --pointer-x: 50vw;
  --pointer-y: 32vh;
  --scroll-progress: 0;
  --font-ui: Arial, Helvetica, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
  --font-data: "Courier New", monospace;
}

* { box-sizing: border-box; }
html { background: var(--black); scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(247, 105, 2, 0.14), transparent 340px), linear-gradient(180deg, #000 0%, #080808 44%, #000 100%);
  color: var(--white);
  font-family: var(--font-ui);
}
body::before {
  background: linear-gradient(115deg, transparent 0 46%, rgba(247, 105, 2, 0.08) 46% 47%, transparent 47%), repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 120px);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.cursor-light {
  background: radial-gradient(circle, rgba(247, 105, 2, 0.18), transparent 58%);
  height: 520px;
  left: var(--pointer-x);
  mix-blend-mode: screen;
  pointer-events: none;
  position: fixed;
  top: var(--pointer-y);
  transform: translate(-50%, -50%);
  width: 520px;
  z-index: 1;
}
.scroll-meter {
  background: linear-gradient(90deg, var(--rit-orange), var(--orange-hot));
  box-shadow: 0 0 22px rgba(247, 105, 2, .65);
  height: 3px;
  left: 0;
  position: fixed;
  top: 0;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
  width: 100%;
  z-index: 20;
}
.site-shell { min-height: 100vh; overflow: hidden; position: relative; z-index: 2; }
.topbar {
  align-items: center;
  background: rgba(0,0,0,.82);
  border-bottom: 1px solid var(--line);
  color: var(--white);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(22px);
}
.brand-mark, .nav-links { align-items: center; display: flex; }
.brand-mark { gap: 18px; min-height: 98px; }
.logo-plaque {
  align-items: center;
  background: var(--rit-orange);
  border: 1px solid rgba(247,105,2,.65);
  box-shadow: 0 18px 44px rgba(0,0,0,.34), 0 0 34px rgba(247,105,2,.16);
  display: inline-flex;
  flex: 0 0 auto;
  height: 78px;
  justify-content: center;
  padding: 0;
  position: relative;
  transition: box-shadow .18s ease, transform .18s ease;
  width: 78px;
}
.logo-plaque::after {
  border: 1px solid rgba(255,255,255,.26);
  content: "";
  inset: -6px;
  opacity: .72;
  position: absolute;
}
.logo-plaque img {
  display: block;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  position: relative;
  width: 100%;
  z-index: 1;
}
.brand-mark:hover .logo-plaque,
.brand-mark:focus-visible .logo-plaque {
  box-shadow: 0 24px 54px rgba(0,0,0,.42), 0 0 34px rgba(247,105,2,.26);
  transform: translateY(-1px);
}
.rit-lettermark {
  align-items: center;
  background: var(--rit-orange);
  color: var(--black);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 1.42rem;
  font-weight: 950;
  height: 52px;
  justify-content: center;
  position: relative;
  width: 84px;
}
.rit-lettermark::after { border: 1px solid rgba(255,255,255,.62); content: ""; inset: -6px; position: absolute; }
.brand-text { display: grid; gap: 5px; line-height: 1.08; max-width: 430px; }
.brand-text strong { font-family: var(--font-display); font-size: 1.14rem; font-weight: 950; line-height: .96; }
.brand-text span { color: var(--silver); font-size: .8rem; font-weight: 700; }
.nav-links { flex-wrap: wrap; font-size: .82rem; font-weight: 850; gap: 3px; justify-content: flex-end; }
.nav-links a {
  border-top: 3px solid transparent;
  color: var(--smoke);
  min-height: 82px;
  padding: 31px 9px 20px;
  position: relative;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}
.nav-links a::after {
  background: linear-gradient(90deg, transparent, var(--rit-orange), transparent);
  bottom: 18px;
  content: "";
  height: 1px;
  left: 10px;
  opacity: 0;
  position: absolute;
  right: 10px;
  transform: scaleX(.2);
  transition: opacity .18s ease, transform .18s ease;
}
.nav-links a:hover, .nav-links a:focus-visible, .nav-links a[aria-current="page"] { background: rgba(247,105,2,.13); border-color: var(--rit-orange); color: var(--white); outline: none; }
.nav-links a:hover::after, .nav-links a:focus-visible::after, .nav-links a[aria-current="page"]::after { opacity: 1; transform: scaleX(1); }
.hero-band, .site-shell {
  background: linear-gradient(90deg, var(--rit-orange) 0 7px, transparent 7px), linear-gradient(180deg, rgba(255,255,255,.035), transparent 420px), var(--black);
}
.hero-band { min-height: 88vh; overflow: hidden; position: relative; }
.hero-band::before {
  background: linear-gradient(130deg, transparent 0 52%, rgba(247,105,2,.2) 52% 53%, transparent 53%), repeating-linear-gradient(135deg, transparent 0 22px, rgba(247,105,2,.11) 22px 24px, transparent 24px 48px);
  content: "";
  inset: 0 0 auto auto;
  height: min(72vw, 720px);
  opacity: .65;
  pointer-events: none;
  position: absolute;
  width: min(58vw, 720px);
}
.spirit-mark {
  align-items: center;
  aspect-ratio: 1;
  background:
    linear-gradient(135deg, transparent 0 34%, rgba(247,105,2,.34) 34% 35%, transparent 35%),
    repeating-linear-gradient(135deg, transparent 0 24px, rgba(247,105,2,.18) 24px 27px, transparent 27px 54px),
    radial-gradient(circle at 50% 50%, rgba(247,105,2,.16), transparent 58%);
  border: 1px solid rgba(247,105,2,.26);
  color: rgba(255,255,255,.06);
  display: flex;
  filter: drop-shadow(0 0 46px rgba(247,105,2,.16));
  font-family: var(--font-display);
  font-size: min(23vw, 320px);
  font-weight: 700;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: clamp(420px, 29vw, 640px);
  top: clamp(230px, 19vw, 340px);
  transform: rotate(-8deg);
  width: min(30vw, 430px);
  z-index: 0;
}
.spirit-mark::before,
.spirit-mark::after,
.spirit-mark i {
  background: var(--rit-orange);
  content: "";
  opacity: .48;
  position: absolute;
  transform: rotate(36deg);
  width: 10px;
}
.spirit-mark::before {
  height: 118%;
  left: 23%;
  top: -9%;
}
.spirit-mark::after {
  height: 92%;
  right: 24%;
  top: 4%;
}
.spirit-mark i {
  height: 62%;
  left: 50%;
  top: 18%;
}
.spirit-mark span {
  transform: rotate(8deg);
}
.hero-grid, .form-hero, .program-band, .quiet-band, .related-band, .map-band, .split-hero, .resource-band, .dashboard-hero, .theme-band, .message-panel, .admin-band {
  margin: 0 auto;
  max-width: 1280px;
  padding: clamp(48px, 7vw, 104px) clamp(20px, 4vw, 58px);
}
.hero-grid, .form-hero, .split-hero, .dashboard-hero {
  align-items: start;
  display: grid;
  gap: clamp(30px, 4vw, 64px);
  grid-template-columns: minmax(0,1.05fr) minmax(360px,.58fr);
}
.hero-grid { align-items: center; min-height: calc(88vh - 82px); position: relative; z-index: 1; }
.form-hero.reverse { grid-template-columns: minmax(360px,1fr) minmax(0,.82fr); }
.form-hero.reverse .form-intro { order: 2; }
.hero-copy, .track-panel { min-width: 0; }
.hero-copy::before {
  background: linear-gradient(90deg, var(--rit-orange), transparent), repeating-linear-gradient(90deg, var(--rit-orange) 0 18px, transparent 18px 30px);
  content: "";
  display: block;
  height: 8px;
  margin-bottom: 30px;
  max-width: 440px;
}
.eyebrow, .panel-kicker { color: var(--rit-orange); font-size: .76rem; font-weight: 950; margin: 0 0 14px; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.9vw, 6.7rem);
  font-weight: 700;
  line-height: .86;
  margin-bottom: 28px;
  max-width: 900px;
  text-wrap: balance;
}
.hero-title { display: grid; gap: 12px; }
.hero-title span, .hero-title em { display: block; }
.hero-title em {
  color: var(--smoke);
  font-family: var(--font-ui);
  font-size: clamp(1.05rem, 1.55vw, 1.55rem);
  font-style: normal;
  font-weight: 850;
  line-height: 1.12;
  max-width: 700px;
  text-transform: none;
  -webkit-text-stroke: 0;
}
.acronym-strip {
  border-block: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(5, minmax(0,1fr));
  margin: 0 0 28px;
  max-width: 760px;
}
.acronym-strip span {
  color: var(--silver);
  font-family: var(--font-data);
  font-size: clamp(.72rem, .9vw, .86rem);
  font-weight: 800;
  min-width: 0;
  padding: 13px 10px 13px 0;
  text-transform: uppercase;
}
.acronym-strip strong {
  color: var(--rit-orange);
  font-family: var(--font-display);
  font-size: 1.45em;
  margin-right: 1px;
}
h2 { color: var(--white); font-family: var(--font-display); font-size: clamp(2.1rem, 3.4vw, 3.7rem); font-weight: 700; line-height: .98; margin-bottom: 18px; text-wrap: balance; }
h3 { color: inherit; font-family: var(--font-display); font-size: clamp(1.25rem, 1.65vw, 1.8rem); font-weight: 700; line-height: 1.08; margin-bottom: 12px; }
.lede { color: var(--smoke); font-size: clamp(1.1rem, 1.45vw, 1.34rem); line-height: 1.62; margin-bottom: 30px; max-width: 750px; }
.prestige-line { border-block: 1px solid var(--line); color: var(--silver); display: flex; flex-wrap: wrap; margin: 0 0 30px; max-width: 720px; }
.prestige-line span { border-right: 1px solid var(--line); flex: 1 1 180px; font-family: var(--font-data); font-size: .84rem; font-weight: 900; padding: 14px 18px 14px 0; text-transform: uppercase; }
.hero-actions, .mini-stats { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  align-items: center;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 52px;
  overflow: hidden;
  padding: 14px 20px;
  position: relative;
  transition: border-color .18s ease, color .18s ease, transform .18s ease;
}
.button span { position: relative; z-index: 1; }
.button::before { background: linear-gradient(120deg, transparent 0 28%, rgba(255,255,255,.42) 42%, transparent 56%); content: ""; inset: 0; position: absolute; transform: translateX(-120%); transition: transform .52s ease; }
.button::after { content: "/"; font-family: var(--font-data); font-weight: 900; margin-left: 18px; position: relative; transition: transform .18s ease; z-index: 1; }
.button.primary { background: var(--rit-orange); color: var(--black); }
.button.secondary { background: rgba(255,255,255,.06); color: var(--white); }
.button.wide { cursor: pointer; width: 100%; }
.button:hover, .button:focus-visible { border-color: var(--orange-hot); box-shadow: var(--shadow-orange); outline: none; transform: translateY(-2px); }
.button:hover::before, .button:focus-visible::before { transform: translateX(120%); }
.button:hover::after, .button:focus-visible::after { transform: translateX(5px); }
.track-panel, .survey-panel, .resource-list article, .story-stack article, .signal-grid article {
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.035)), var(--charcoal);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,.16);
  color: var(--white);
}
.track-panel { display: grid; gap: 0; overflow: hidden; padding: clamp(26px, 4vw, 42px); position: relative; backdrop-filter: blur(22px); }
.track-panel::before { animation: scan 4.5s ease-in-out infinite; background: linear-gradient(90deg, transparent, var(--rit-orange), transparent); content: ""; height: 2px; left: -40%; position: absolute; top: 0; width: 80%; }
.track-panel h2 { font-size: clamp(1.65rem, 2.4vw, 2.6rem); margin-bottom: 22px; }
.track-step { align-items: center; border-top: 1px solid var(--line); display: grid; gap: 18px; grid-template-columns: 46px 1fr; min-height: 70px; padding: 14px 0; transition: background .18s ease, padding-left .18s ease; }
.track-step:hover { background: rgba(247,105,2,.075); padding-left: 12px; }
.track-step span { color: var(--rit-orange); font-family: var(--font-data); font-size: .94rem; font-weight: 950; }
.track-step strong { font-size: 1.14rem; font-weight: 900; }
.section-heading { max-width: 860px; }
.program-band, .related-band, .resource-band, .theme-band, .map-band, .quiet-band { background: linear-gradient(180deg, #080808, #000); border-top: 1px solid var(--line); }
.program-grid { display: grid; gap: 16px; grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 34px; }
.ecosystem-card, .related-link {
  background: linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.025)), var(--charcoal);
  border: 1px solid var(--line);
  color: var(--white);
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  position: relative;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.ecosystem-card { display: flex; flex-direction: column; min-height: 338px; transform-style: preserve-3d; }
.ecosystem-card::before, .related-link::before { color: rgba(255,255,255,.045); content: attr(data-label); font-size: 4.4rem; font-weight: 950; line-height: 1; position: absolute; right: 14px; top: 12px; }
.ecosystem-card::after { background: linear-gradient(90deg, var(--rit-orange), transparent); bottom: 0; content: ""; height: 4px; left: 0; position: absolute; width: 100%; }
.ecosystem-card span, .related-link span, .resource-list span, .story-stack span, .signal-grid span { color: var(--rit-orange); display: block; font-size: .74rem; font-weight: 950; margin-bottom: 18px; position: relative; text-transform: uppercase; z-index: 1; }
.ecosystem-card h3, .ecosystem-card p, .ecosystem-card strong { position: relative; z-index: 1; }
.ecosystem-card h3::after, .resource-list h3::after, .story-stack h3::after { background: var(--rit-orange); content: ""; display: block; height: 2px; margin-top: 16px; transform: scaleX(.22); transform-origin: left; transition: transform .22s ease; width: 82px; }
.ecosystem-card p, .resource-list p, .story-stack p, .signal-grid p, .quiet-band p:last-child { color: var(--smoke); line-height: 1.6; }
.ecosystem-card strong, .related-link strong { align-items: center; color: var(--white); display: inline-flex; font-family: var(--font-data); font-size: .82rem; gap: 10px; margin-top: auto; position: relative; text-transform: uppercase; z-index: 1; }
.ecosystem-card strong span, .related-link strong span { color: var(--rit-orange); transition: transform .18s ease; }
.ecosystem-card:hover, .ecosystem-card:focus-visible, .related-link:hover, .related-link:focus-visible { border-color: var(--line-strong); box-shadow: var(--shadow-orange), var(--shadow-xl); outline: none; transform: perspective(900px) translateY(-8px) rotateX(1.4deg); }
.ecosystem-card:hover h3::after, .ecosystem-card:focus-visible h3::after, .resource-list article:hover h3::after, .story-stack article:hover h3::after { transform: scaleX(1); }
.ecosystem-card:hover strong span, .ecosystem-card:focus-visible strong span, .related-link:hover strong span, .related-link:focus-visible strong span { transform: translateX(6px); }
.map-band, .quiet-band { align-items: start; display: grid; gap: clamp(24px, 4vw, 62px); grid-template-columns: minmax(0,.72fr) minmax(320px,1fr); }
.map-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0,1fr)); }
.map-grid a, .pill-grid a { background: rgba(255,255,255,.07); border: 1px solid var(--line); color: var(--white); font-weight: 950; padding: 18px; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease; }
.map-grid a { min-height: 72px; }
.map-grid a:hover, .map-grid a:focus-visible { border-color: var(--rit-orange); outline: none; transform: translateX(4px); }
.mini-stats span { background: rgba(255,255,255,.065); border: 1px solid var(--line); color: var(--white); font-size: .84rem; font-weight: 950; padding: 9px 11px; }
.survey-panel { background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(235,235,232,.97)); border-top: 8px solid var(--rit-orange); color: var(--black); display: grid; gap: 18px; padding: clamp(22px, 4vw, 38px); position: relative; }
.survey-panel::before { background: linear-gradient(90deg, transparent, rgba(247,105,2,.9), transparent); content: ""; height: 1px; left: 18px; position: absolute; right: 18px; top: 18px; }
.compact { max-width: 560px; }
.honeypot { left: -10000px; position: absolute; }
label, fieldset { border: 0; display: grid; gap: 8px; margin: 0; padding: 0; }
label, legend { color: var(--black); font-size: .94rem; font-weight: 950; line-height: 1.35; }
label span { color: #666; font-size: .82rem; }
input, textarea { background: var(--white); border: 1px solid #b8b8b8; color: var(--black); min-height: 46px; padding: 11px 12px; transition: border-color .16s ease, box-shadow .16s ease; width: 100%; }
textarea { min-height: 112px; resize: vertical; }
input:focus, textarea:focus { border-color: var(--rit-orange); box-shadow: 0 0 0 3px rgba(247,105,2,.22); outline: none; }
.checkbox-grid { display: grid; gap: 10px; grid-template-columns: repeat(2, minmax(0,1fr)); margin-top: 8px; }
.check-row { align-items: center; background: rgba(0,0,0,.045); border: 1px solid rgba(0,0,0,.13); display: flex; gap: 10px; min-height: 52px; padding: 10px; transition: background .18s ease, border-color .18s ease; }
.check-row:hover { background: rgba(247,105,2,.08); border-color: rgba(247,105,2,.45); }
.check-row input { accent-color: var(--rit-orange); flex: 0 0 auto; height: 18px; min-height: 18px; width: 18px; }
.related-grid { display: grid; gap: 12px; grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: 28px; }
.related-link { display: grid; min-height: 132px; }
.resource-list, .story-stack, .signal-grid, .submission-list { display: grid; gap: 16px; }
.resource-list article, .story-stack article, .signal-grid article, .submission-list article { padding: clamp(20px, 3vw, 30px); position: relative; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.resource-list article::before, .story-stack article::before, .signal-grid article::before, .submission-list article::before { background: var(--rit-orange); content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 4px; }
.resource-list article:hover, .story-stack article:hover, .signal-grid article:hover { border-color: var(--line-strong); box-shadow: var(--shadow-orange), var(--shadow-xl); transform: translateY(-5px); }
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill-grid a { overflow: hidden; padding: 13px 15px; position: relative; }
.pill-grid a:hover, .pill-grid a:focus-visible { border-color: var(--rit-orange); box-shadow: var(--shadow-orange); outline: none; transform: translateY(-2px); }
.signal-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.signal-grid strong { color: var(--white); display: block; font-family: var(--font-data); font-size: clamp(2.6rem, 5vw, 4.8rem); font-weight: 950; line-height: .9; margin-bottom: 12px; }
.submission-list article { background: rgba(255,255,255,.08); border: 1px solid var(--line); color: var(--white); }
details { border-top: 1px solid var(--line); padding: 12px 0; }
summary { cursor: pointer; font-weight: 900; }
@keyframes scan { 0% { transform: translateX(0); } 50%, 100% { transform: translateX(220%); } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .cursor-light { display: none; }
}
@media (max-width: 1100px) {
  .topbar { align-items: flex-start; flex-direction: column; padding-top: 14px; }
  .brand-mark { min-height: 74px; }
  .nav-links { justify-content: flex-start; padding-bottom: 12px; }
  .nav-links a { border-bottom: 3px solid transparent; border-top: 0; min-height: 0; padding: 8px 9px; }
  .program-grid, .related-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .spirit-mark { opacity: .62; right: -120px; width: 420px; }
}
@media (max-width: 820px) {
  .hero-grid, .form-hero, .form-hero.reverse, .quiet-band, .map-band, .split-hero, .dashboard-hero { grid-template-columns: 1fr; }
  .form-hero.reverse .form-intro { order: 0; }
  h1 { font-size: clamp(2.7rem, 13vw, 4.4rem); }
  .acronym-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .spirit-mark { opacity: .24; right: -220px; top: 190px; width: 420px; }
}
@media (max-width: 620px) {
  .logo-plaque { height: 64px; width: 64px; }
  .rit-lettermark { height: 46px; width: 74px; }
  .brand-text { max-width: 230px; }
  .nav-links, .hero-actions, .mini-stats, .prestige-line { align-items: stretch; flex-direction: column; width: 100%; }
  .prestige-line span { border-right: 0; flex-basis: auto; padding-right: 0; }
  .button { width: 100%; }
  .checkbox-grid, .program-grid, .related-grid, .map-grid, .signal-grid { grid-template-columns: 1fr; }
  .acronym-strip { grid-template-columns: 1fr; }
  .cursor-light, .spirit-mark { display: none; }
  .survey-panel, .track-panel, .resource-list article, .story-stack article, .signal-grid article { box-shadow: none; }
}
