:root {
  color-scheme: light;
  --ink: #101724;
  --heading: #071733;
  --muted: #647084;
  --line: rgba(29, 29, 31, 0.1);
  --brand: #1558c9;
  --brand-quiet: #eaf2ff;
  --brand-dark: #071b44;
  --gold: #d6a45d;
  --gold-soft: #fff4dd;
  --ember: #e06a2c;
  --green: #248a3d;
  --green-quiet: #eaf8ef;
  --amber: #8f5b12;
  --amber-quiet: #fff5df;
  --red: #b42318;
  --red-quiet: #fff0ef;
  --bg: #f7f7f8;
  --panel: rgba(255, 255, 255, 0.82);
  --soft: #f2f3f5;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  --glass: rgba(255, 255, 255, 0.58);
  --glass-strong: rgba(255, 255, 255, 0.82);
  --glass-line: rgba(29, 29, 31, 0.08);
  --material-line: rgba(29, 29, 31, 0.1);
  --focus-ring: 0 0 0 4px rgba(0, 102, 204, 0.14);
  --copy: #3f4147;
  --measure: 66ch;
}

* {
  box-sizing: border-box;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  font-family: Inter, "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% -10%, rgba(21, 88, 201, 0.18), transparent 34%),
    radial-gradient(circle at 88% 2%, rgba(214, 164, 93, 0.14), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f5f7fb 48%, #f8f7f4 100%),
    var(--bg);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
}

body::before {
  background:
    linear-gradient(112deg, transparent 0 26%, rgba(255, 255, 255, 0.66) 42%, transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent 40%);
  opacity: 0.62;
}

body::after {
  display: none;
}

.toast-region {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  width: min(360px, calc(100vw - 32px));
  gap: 10px;
  pointer-events: none;
}

.toast {
  position: relative;
  overflow: hidden;
  padding: 14px 16px 14px 18px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(24px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  animation: toast-in 180ms ease both;
}

.toast::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--green);
  content: "";
}

.toast.error::before {
  background: var(--red);
}

.toast.warning::before {
  background: var(--amber);
}

.toast strong {
  display: block;
  color: var(--heading);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.3;
}

.toast p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.toast.is-hiding {
  animation: toast-out 220ms ease both;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toast-out {
  to {
    opacity: 0;
    transform: translateY(8px);
  }
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px 32px;
  border-bottom: 1px solid var(--glass-line);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: saturate(180%) blur(28px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-size: 19px;
  font-weight: 850;
  color: var(--brand-dark);
}

.brand img {
  width: 46px;
  height: 34px;
  object-fit: cover;
  object-position: 34% 45%;
  border-radius: 7px;
  box-shadow: 0 10px 22px rgba(7, 27, 68, 0.14);
}

.brand span {
  display: block;
  min-width: 0;
}

.brand b,
.brand small {
  display: block;
}

.brand b {
  color: var(--brand-dark);
  font-size: 16px;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
  font-weight: 650;
  color: #424245;
}

nav a {
  min-width: 0;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

nav a:hover,
nav a:focus-visible {
  background: rgba(21, 88, 201, 0.08);
  color: var(--brand);
}

nav a.active {
  border-color: rgba(21, 88, 201, 0.14);
  background: rgba(21, 88, 201, 0.1);
  color: var(--brand);
}

p {
  max-width: var(--measure);
}

.mobile-dock {
  display: none;
}

.account {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.account-name {
  min-width: 0;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--heading);
  font-weight: 860;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease;
}

.account-name:hover,
.account-name:focus-visible {
  background: rgba(21, 88, 201, 0.08);
  color: var(--brand);
}

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

button {
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--brand);
  border-radius: 8px;
  background: var(--brand);
  color: white;
  font-weight: 750;
  line-height: 1.12;
  text-align: center;
  white-space: nowrap;
  box-shadow: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 0;
  box-shadow: var(--focus-ring);
}

.button.secondary,
.button.ghost {
  background: rgba(255, 255, 255, 0.74);
  color: var(--brand);
}

.button.ghost {
  border-color: transparent;
  background: transparent;
}

.button.danger {
  border-color: rgba(186, 28, 28, 0.18);
  background: rgba(186, 28, 28, 0.08);
  color: #9f1d1d;
}

.button.ghost.danger {
  border-color: transparent;
  background: transparent;
  color: #9f1d1d;
}

.button.small {
  min-height: 34px;
  padding: 0 12px;
  font-size: 14px;
}

.topbar button {
  border: 0;
  background: transparent;
  color: var(--brand);
  font-weight: 800;
}

main {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.demo-ribbon {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 9px 20px;
  border-bottom: 1px solid rgba(29, 29, 31, 0.06);
  background: rgba(255, 255, 255, 0.58);
  color: #475569;
  font-size: 13px;
  backdrop-filter: saturate(180%) blur(20px);
}

.demo-ribbon strong {
  color: var(--heading);
}

.system-gateway {
  display: grid;
  gap: 28px;
  min-height: calc(100vh - 128px);
  align-content: center;
  padding: 34px 0 18px;
}

.nccu-demo-home {
  min-height: auto;
  align-content: start;
  padding-top: 18px;
}

.nccu-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 68vh, 720px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 72%, rgba(224, 106, 44, 0.34), transparent 30%),
    linear-gradient(135deg, #061537 0%, #123f91 54%, #1c65c9 100%);
  box-shadow: 0 36px 100px rgba(7, 27, 68, 0.26);
}

.nccu-hero::after {
  position: absolute;
  inset: auto -5% -18% -5%;
  height: 45%;
  background:
    radial-gradient(ellipse at 22% 28%, rgba(224, 106, 44, 0.68), transparent 34%),
    radial-gradient(ellipse at 78% 52%, rgba(64, 143, 255, 0.42), transparent 35%),
    linear-gradient(110deg, rgba(214, 164, 93, 0.46), rgba(224, 106, 44, 0.18), rgba(66, 143, 255, 0.32));
  filter: blur(10px);
  opacity: 0.86;
  content: "";
}

.nccu-hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.84;
}

.nccu-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 760px;
  min-height: inherit;
  align-content: center;
  padding: clamp(32px, 6vw, 76px);
  color: white;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.28);
}

.nccu-hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.nccu-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: white;
  font-size: clamp(40px, 6.4vw, 78px);
  line-height: 1.04;
}

.nccu-hero-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.72;
}

.nccu-hero .gateway-actions .button {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #f2c57c, var(--gold));
  color: #1b2440;
}

.nccu-hero .gateway-actions .button.secondary,
.nccu-hero .gateway-actions .button.ghost {
  background: rgba(255, 255, 255, 0.13);
  color: white;
  backdrop-filter: saturate(170%) blur(18px);
}

.nccu-hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  width: min(560px, 100%);
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: saturate(170%) blur(18px);
}

.nccu-hero-proof div {
  min-width: 0;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.1);
}

.nccu-hero-proof b,
.nccu-hero-proof small {
  display: block;
}

.nccu-hero-proof b {
  color: white;
  font-size: 22px;
  line-height: 1.05;
}

.nccu-hero-proof small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 760;
}

.login-shell {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 170px);
  padding: clamp(18px, 4vw, 42px) 0;
}

.login-brand-panel,
.login-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.login-brand-panel {
  display: grid;
  min-height: 620px;
  padding: clamp(28px, 5vw, 64px);
  align-content: space-between;
  gap: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: linear-gradient(135deg, #061537 0%, #123f91 58%, #1c65c9 100%);
  color: white;
  box-shadow: 0 34px 92px rgba(7, 27, 68, 0.24);
}

.login-brand-panel::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 16, 42, 0.7), rgba(8, 34, 86, 0.22) 58%, rgba(4, 13, 33, 0.46)),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.2), transparent 28%);
  content: "";
}

.login-brand-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}

.login-brand-copy,
.login-stage,
.login-brand-proof {
  position: relative;
  z-index: 1;
}

.login-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 460px;
}

.login-brand-copy {
  max-width: 720px;
  align-self: center;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.28);
}

.login-brand-copy .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.login-brand-copy h1 {
  margin: 0;
  color: white;
  font-size: clamp(50px, 7vw, 86px);
  line-height: 0.98;
}

.login-brand-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.68;
}

.login-brand-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  width: min(620px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: saturate(170%) blur(18px);
}

.login-brand-proof div {
  min-width: 0;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.09);
}

.login-brand-proof span,
.login-brand-proof strong {
  display: block;
}

.login-brand-proof span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 760;
}

.login-brand-proof strong {
  margin-top: 3px;
  color: white;
  font-size: 22px;
  line-height: 1.05;
}

.login-card {
  align-self: center;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(6, 20, 52, 0.34);
  backdrop-filter: saturate(180%) blur(30px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.login-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0.18), transparent 44%),
    radial-gradient(circle at 88% 0%, rgba(214, 164, 93, 0.26), transparent 34%);
  pointer-events: none;
  content: "";
}

.login-card > * {
  position: relative;
  z-index: 1;
}

.login-card-head h2 {
  margin: 0 0 24px;
  color: white;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
}

.login-card-head .eyebrow {
  color: #f2c57c;
}

.login-form {
  display: grid;
  gap: 16px;
}

.login-form label {
  gap: 7px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 780;
}

.login-form input {
  min-height: 56px;
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

.login-form .button {
  min-height: 56px;
  margin-top: 2px;
}

.login-access-panel {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07)),
    radial-gradient(circle at 12% 0%, rgba(214, 164, 93, 0.18), transparent 35%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

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

.login-quick .button {
  min-width: 0;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.login-support {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  justify-content: space-between;
  padding: 2px 2px 0;
}

.login-support span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 780;
}

.login-support a {
  color: #f6d590;
  font-size: 13px;
  font-weight: 900;
}

.login-support a::after {
  margin-left: 6px;
  color: var(--gold);
  content: ">";
}

.gateway-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
}

.gateway-head {
  max-width: 940px;
}

.gateway-head h1 {
  max-width: 900px;
  margin-bottom: 20px;
  color: var(--heading);
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.98;
}

.gateway-head > p:last-child {
  max-width: 760px;
  color: var(--copy);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.65;
}

.gateway-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.gateway-command-card {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: clamp(20px, 2.8vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.44)),
    rgba(255, 255, 255, 0.54);
  backdrop-filter: saturate(180%) blur(30px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.gateway-command-card > span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.gateway-command-card > strong {
  color: var(--heading);
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.08;
}

.gateway-command-card > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.gateway-proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(29, 29, 31, 0.07);
}

.gateway-proof-list div {
  min-width: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.gateway-proof-list b,
.gateway-proof-list small {
  display: block;
}

.gateway-proof-list b {
  overflow-wrap: anywhere;
  color: var(--heading);
  font-size: 24px;
  line-height: 1.05;
}

.gateway-proof-list small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(29, 29, 31, 0.08);
  backdrop-filter: saturate(180%) blur(24px);
}

.value-strip div {
  min-height: 118px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.56);
}

.value-strip span {
  display: block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.value-strip strong {
  display: block;
  margin-top: 10px;
  color: #1d1d1f;
  font-size: 19px;
  line-height: 1.35;
}

.role-lanes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.role-lanes article,
.truth-system,
.risk-list article {
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.46);
  backdrop-filter: saturate(180%) blur(28px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 24px 60px rgba(29, 29, 31, 0.06);
}

.role-lanes article {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 300px;
  padding: 24px;
}

.role-lanes span,
.truth-map span,
.risk-list span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.role-lanes h2,
.truth-system h2,
.council-board h2 {
  margin: 0;
  color: var(--heading);
  letter-spacing: 0;
  line-height: 1.08;
}

.role-lanes h2 {
  font-size: clamp(25px, 3vw, 38px);
}

.role-lanes p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.role-lanes .button {
  align-self: end;
  justify-self: start;
  margin-top: 8px;
}

.truth-system {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.35fr);
  gap: 28px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.38);
}

.truth-system h2 {
  font-size: clamp(26px, 3.5vw, 44px);
}

.demo-tours,
.trust-layer {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.35fr);
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.demo-tours h2,
.trust-layer h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(26px, 3.5vw, 44px);
  line-height: 1.08;
}

.tour-grid,
.trust-grid {
  display: grid;
  gap: 12px;
}

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

.tour-grid article,
.trust-grid article {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: saturate(170%) blur(24px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.tour-grid h3 {
  margin-bottom: 10px;
  color: var(--heading);
}

.tour-grid p,
.trust-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.tour-grid .button {
  margin-top: 8px;
}

.trust-grid span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.local-demo-console {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.35fr);
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.local-demo-console h2 {
  margin: 0 0 12px;
  color: var(--heading);
  font-size: clamp(26px, 3.5vw, 44px);
  line-height: 1.08;
}

.local-demo-console p {
  color: var(--muted);
  line-height: 1.65;
}

.demo-control-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: saturate(170%) blur(24px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

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

.demo-role {
  display: grid;
  gap: 8px;
  min-height: 126px;
  padding: 14px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  text-align: left;
}

.demo-role strong {
  color: var(--heading);
  font-size: 18px;
}

.demo-role span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.join-flow {
  display: grid;
  gap: 18px;
}

.join-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 72vh, 760px);
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(5, 14, 34, 0.62), rgba(5, 14, 34, 0.18) 62%, rgba(5, 14, 34, 0.4)),
    url("/assets/nccu-emaba-bg.png") center / cover no-repeat,
    linear-gradient(135deg, #061537 0%, #123f91 54%, #1c65c9 100%);
  box-shadow: 0 30px 86px rgba(7, 27, 68, 0.22);
  color: white;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.28);
}

.join-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.join-copy {
  max-width: 720px;
}

.join-hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.join-copy h1 {
  max-width: 760px;
  margin: 0;
  color: white;
  font-size: clamp(44px, 6.4vw, 78px);
  line-height: 1.04;
}

.join-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.65;
}

.member-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 520px), 1fr));
  gap: 16px;
  align-items: start;
}

.member-create-panel {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.member-create-panel summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}

.member-create-panel summary::-webkit-details-marker {
  display: none;
}

.member-create-panel summary span,
.member-create-panel summary strong {
  color: var(--heading);
  font-weight: 900;
}

.member-create-panel summary strong {
  color: var(--muted);
  font-size: 13px;
}

.member-create-content {
  display: grid;
  gap: 16px;
  padding: 0 18px 18px;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.member-create-panel .section-head p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.member-create-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.member-create-form .button {
  min-height: 46px;
}

.member-directory-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--glass-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.member-directory-tabs a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  text-decoration: none;
}

.member-directory-tabs a.active {
  border-color: rgba(30, 95, 214, 0.18);
  background: rgba(255, 255, 255, 0.86);
  color: var(--heading);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.member-directory-tabs span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-directory-tabs strong {
  color: var(--blue);
  font-size: 15px;
  line-height: 1;
}

.member-search-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--glass-line);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(232, 240, 255, 0.68));
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.08);
}

.member-search-bar input {
  min-height: 46px;
  border-color: rgba(30, 95, 214, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  font-size: 16px;
}

.member-directory-panel {
  display: grid;
  gap: 14px;
}

.member-directory {
  display: grid;
  gap: 10px;
}

.member-directory-row {
  border: 1px solid var(--glass-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.member-directory-row summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  padding: 14px;
  cursor: pointer;
  list-style: none;
}

.member-directory-row summary::-webkit-details-marker {
  display: none;
}

.member-directory-row summary > div {
  min-width: 0;
}

.member-directory-row strong {
  display: block;
  color: var(--heading);
  font-size: 17px;
}

.member-directory-row p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.member-edit-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.member-edit-form .button {
  align-self: end;
  min-height: 46px;
}

.member-review-drawer {
  padding: 0;
  overflow: hidden;
}

.member-review-drawer summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}

.member-review-drawer summary::-webkit-details-marker {
  display: none;
}

.member-review-drawer summary span,
.member-review-drawer summary strong {
  color: var(--heading);
  font-weight: 900;
}

.member-review-list {
  display: grid;
  gap: 12px;
  padding: 0 18px 18px;
}

.join-form {
  position: relative;
  display: grid;
  gap: 14px;
  width: 100%;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(6, 20, 52, 0.34);
  backdrop-filter: saturate(180%) blur(30px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.join-form h2 {
  color: white;
}

.join-form label {
  gap: 7px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 780;
}

.join-form input,
.join-form select {
  min-height: 52px;
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.join-form .check {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.join-form .advanced {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.join-form .advanced summary {
  color: white;
}

.join-form .button.ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.form-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.form-title-row h2 {
  margin: 0;
}

.onboarding-principles {
  display: grid;
  gap: 12px;
}

.onboarding-principles article,
.member-application,
.mini-row {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: saturate(170%) blur(24px);
}

.onboarding-principles span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.onboarding-principles p,
.member-application p,
.mini-row p,
.admin-summary small {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.member-application {
  grid-template-columns: 1fr;
  align-items: start;
}

.member-application h3,
.mini-row strong {
  margin: 0;
  color: var(--heading);
}

.application-title {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.application-meta,
.application-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.application-meta span,
.application-contact span {
  min-width: 0;
  max-width: 100%;
  padding: 7px 9px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--copy);
  font-size: 13px;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.member-application .row-actions {
  justify-content: flex-start;
}

.member-application .row-actions .button {
  min-width: min(100%, 128px);
}

.application-contact span {
  color: var(--muted);
  font-weight: 720;
}

.checkin-workbench {
  display: grid;
  gap: 16px;
}

.checkin-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.54fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.checkin-panel,
.checkin-ready-list {
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: saturate(170%) blur(22px);
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.checkin-ready-list {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.checkin-ready-list .section-head {
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
}

.checkin-ready-list .section-head h2 {
  margin: 0;
  font-size: 24px;
}

.checkin-ready-list .section-head span {
  color: var(--muted);
  font-weight: 800;
}

.compact-list {
  display: grid;
  gap: 10px;
}

.mini-row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.account-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.member-lifecycle-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.member-lifecycle-board article {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.member-lifecycle-board article.good {
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.88), rgba(255, 255, 255, 0.74));
}

.member-lifecycle-board article.warn {
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.9), rgba(255, 255, 255, 0.74));
}

.member-lifecycle-board span,
.quality-list span {
  display: block;
  color: rgba(29, 29, 31, 0.52);
  font-size: 12px;
  font-weight: 820;
}

.member-lifecycle-board strong {
  display: block;
  margin-top: 8px;
  color: var(--heading);
  font-size: 28px;
  line-height: 1;
}

.member-lifecycle-board p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.member-command-center {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  gap: 12px;
  margin: 14px 0;
}

.member-command-center section {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 248, 250, 0.7));
  backdrop-filter: saturate(170%) blur(22px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

.member-command-center span,
.cohort-list span {
  display: block;
  color: rgba(29, 29, 31, 0.52);
  font-size: 12px;
  font-weight: 820;
}

.member-command-center strong {
  display: block;
  margin-top: 6px;
  color: var(--heading);
  font-size: 36px;
  line-height: 1;
}

.member-command-center p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.member-onboarding-system {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.32fr);
  gap: 22px;
  align-items: start;
  margin: 14px 0;
  padding: 22px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(246, 248, 252, 0.56)),
    rgba(255, 255, 255, 0.52);
  backdrop-filter: saturate(175%) blur(24px);
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.member-onboarding-system h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.08;
}

.member-onboarding-system > div > p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.distribution-steps {
  display: grid;
  gap: 8px;
}

.distribution-steps article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.distribution-steps article > span {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 102, 204, 0.1);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.distribution-steps strong {
  display: block;
  color: var(--heading);
  font-size: 17px;
  line-height: 1.25;
}

.distribution-steps p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.distribution-steps small {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.member-segment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr) minmax(260px, 0.72fr);
  gap: 14px;
  align-items: stretch;
  margin: 14px 0;
}

.cohort-list,
.assist-list {
  display: grid;
  gap: 10px;
}

.cohort-list article {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.cohort-list article > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.cohort-list strong,
.assist-list strong {
  color: var(--heading);
}

.cohort-list i {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 102, 204, 0.86), rgba(52, 199, 89, 0.62));
}

.assist-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 12px 0;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.assist-list article:first-child {
  border-top: 0;
}

.member-quality-panel {
  margin: 14px 0;
}

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

.quality-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.quality-list strong,
.application-title h3 {
  color: var(--heading);
}

.quality-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.application-title {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.application-title h3 {
  margin: 0;
}

.assist-list p,
.import-panel p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.import-panel {
  align-content: start;
}

.import-panel .button {
  margin-top: 14px;
}

.readiness-workbench {
  display: grid;
  gap: 16px;
}

.readiness-score-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(245, 247, 251, 0.72));
  backdrop-filter: saturate(170%) blur(24px);
  box-shadow: var(--shadow), 0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

.readiness-score-card.pass {
  border-color: rgba(36, 138, 61, 0.18);
}

.readiness-score-card.warn {
  border-color: rgba(143, 91, 18, 0.2);
}

.readiness-score-card.risk {
  border-color: rgba(180, 35, 24, 0.2);
}

.readiness-score-card span,
.readiness-panel > p,
.readiness-checks span,
.demo-script span {
  color: rgba(29, 29, 31, 0.52);
  font-size: 12px;
  font-weight: 850;
}

.readiness-score-card strong {
  display: block;
  margin-top: 4px;
  color: var(--heading);
  font-size: clamp(46px, 6vw, 72px);
  line-height: 0.96;
}

.readiness-score-card p {
  margin: 10px 0 0;
  color: var(--copy);
  font-size: 17px;
  line-height: 1.58;
}

.readiness-meter {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.08);
}

.readiness-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), #34c759);
}

.adoption-readiness {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.32fr);
  gap: 18px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(246, 248, 252, 0.66));
  backdrop-filter: saturate(170%) blur(24px);
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.adoption-readiness.pass {
  border-color: rgba(36, 138, 61, 0.18);
}

.adoption-readiness.warn {
  border-color: rgba(143, 91, 18, 0.2);
}

.adoption-readiness.risk {
  border-color: rgba(180, 35, 24, 0.2);
}

.adoption-readiness h2 {
  max-width: 780px;
  margin: 0;
  color: var(--heading);
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.08;
}

.adoption-readiness p:not(.eyebrow),
.adoption-score p {
  max-width: 720px;
  color: var(--copy);
  line-height: 1.65;
}

.adoption-score {
  display: grid;
  gap: 8px;
  align-content: center;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(29, 29, 31, 0.075);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.adoption-score span,
.adoption-head span,
.adoption-proof span {
  color: rgba(29, 29, 31, 0.52);
  font-size: 12px;
  font-weight: 860;
}

.adoption-score strong {
  color: var(--heading);
  font-size: clamp(44px, 5vw, 66px);
  line-height: 0.95;
}

.adoption-score p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

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

.adoption-grid > article {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(170%) blur(20px);
}

.adoption-grid > article.warn {
  background:
    linear-gradient(180deg, rgba(255, 251, 243, 0.84), rgba(255, 255, 255, 0.68));
}

.adoption-head strong {
  display: block;
  margin-top: 4px;
  color: var(--heading);
  font-size: 19px;
  line-height: 1.22;
}

.adoption-grid > article > p {
  margin: 10px 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.adoption-proof {
  display: grid;
  gap: 8px;
}

.adoption-proof div {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(29, 29, 31, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.adoption-proof strong {
  display: block;
  margin-top: 3px;
  color: var(--heading);
  font-size: 14px;
  line-height: 1.25;
}

.adoption-proof p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.e2e-proof-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid rgba(0, 102, 204, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(236, 246, 255, 0.68)),
    rgba(255, 255, 255, 0.62);
  backdrop-filter: saturate(175%) blur(24px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.e2e-proof-board.warn {
  border-color: rgba(143, 91, 18, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.9), rgba(255, 255, 255, 0.66)),
    rgba(255, 255, 255, 0.62);
}

.e2e-proof-board.risk {
  border-color: rgba(180, 35, 24, 0.22);
}

.e2e-proof-summary {
  display: grid;
  align-content: space-between;
  gap: 16px;
  min-width: 0;
}

.e2e-proof-summary h2 {
  max-width: 680px;
  margin: 0;
  color: var(--heading);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.e2e-proof-summary p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--copy);
  font-size: 16px;
  line-height: 1.68;
}

.e2e-proof-score {
  width: min(100%, 260px);
  padding: 16px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.e2e-proof-score span,
.e2e-proof-steps span {
  display: block;
  color: rgba(29, 29, 31, 0.52);
  font-size: 12px;
  font-weight: 880;
}

.e2e-proof-score strong {
  display: block;
  margin-top: 5px;
  color: var(--heading);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.95;
}

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

.e2e-proof-steps a {
  min-width: 0;
  padding: 15px;
  border: 1px solid rgba(29, 29, 31, 0.075);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.e2e-proof-steps a.warn {
  border-color: rgba(143, 91, 18, 0.18);
  background: rgba(255, 249, 236, 0.64);
}

.e2e-proof-steps strong {
  display: block;
  margin-top: 6px;
  color: var(--heading);
  font-size: 19px;
  line-height: 1.18;
}

.e2e-proof-steps p {
  margin: 7px 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.e2e-proof-steps small {
  color: var(--brand);
  font-size: 13px;
  font-weight: 880;
}

.readiness-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
  align-items: start;
}

.readiness-panel {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(170%) blur(22px);
}

.readiness-panel.warn {
  background:
    linear-gradient(180deg, rgba(255, 251, 243, 0.82), rgba(255, 255, 255, 0.7));
}

.readiness-panel > p {
  margin: 8px 0 14px;
  color: var(--muted);
  line-height: 1.55;
}

.readiness-checks {
  display: grid;
  gap: 8px;
}

.readiness-checks article {
  padding: 12px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.readiness-checks article.warn {
  border-color: rgba(143, 91, 18, 0.18);
  background: rgba(255, 245, 223, 0.48);
}

.readiness-checks strong,
.demo-script strong {
  display: block;
  margin-top: 4px;
  color: var(--heading);
  line-height: 1.28;
}

.readiness-checks p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.demo-script {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: start;
  padding: 24px 0;
}

.demo-script h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
}

.script-steps {
  display: grid;
  gap: 10px;
}

.script-steps article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: saturate(170%) blur(20px);
}

.script-steps span {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--brand-dark);
  color: white;
}

.script-steps p {
  grid-column: 2;
  margin: 2px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.demo-story {
  display: grid;
  gap: 18px;
}

.demo-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: 24px;
  align-items: end;
  min-height: min(620px, calc(100vh - 190px));
  padding: clamp(30px, 5.6vw, 70px);
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.8), rgba(245, 248, 252, 0.54)),
    radial-gradient(circle at 84% 18%, rgba(0, 102, 204, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.24));
  backdrop-filter: saturate(180%) blur(30px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.demo-stage h1 {
  max-width: 940px;
  margin: 0 0 16px;
  color: var(--heading);
  font-size: clamp(42px, 6.6vw, 82px);
  line-height: 0.98;
}

.demo-stage p:not(.eyebrow) {
  max-width: 780px;
  color: var(--copy);
  font-size: clamp(18px, 1.85vw, 23px);
  line-height: 1.6;
}

.demo-stage-actions,
.demo-close-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.presenter-console {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(29, 29, 31, 0.075);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.demo-story-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.32fr);
  gap: 24px;
  align-items: end;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.78), rgba(244, 248, 255, 0.52)),
    radial-gradient(circle at 88% 12%, rgba(0, 102, 204, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.48);
  backdrop-filter: saturate(180%) blur(28px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.demo-story-hero h1 {
  max-width: 880px;
  margin: 0 0 14px;
  color: var(--heading);
  font-size: clamp(38px, 5.8vw, 72px);
  line-height: 1.02;
}

.demo-story-hero p:not(.eyebrow) {
  max-width: 800px;
  color: var(--copy);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.62;
}

.demo-story-score {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.demo-story-score span,
.demo-story-metrics span,
.demo-runway > article > span,
.demo-close-panel .eyebrow {
  color: rgba(29, 29, 31, 0.52);
  font-size: 12px;
  font-weight: 860;
}

.demo-story-score strong {
  color: var(--heading);
  font-size: 58px;
  line-height: 1;
}

.demo-story-score p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.presenter-console span,
.presentation-beats span,
.demo-proof-strip span {
  display: block;
  color: rgba(29, 29, 31, 0.52);
  font-size: 12px;
  font-weight: 860;
}

.presenter-console strong {
  color: var(--heading);
  font-size: 62px;
  line-height: 1;
}

.presenter-console p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.console-meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.08);
}

.console-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), #34c759);
}

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

.presentation-beats article,
.demo-proof-strip article {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: saturate(170%) blur(20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.presentation-beats strong,
.demo-proof-strip strong {
  display: block;
  margin-top: 6px;
  color: var(--heading);
  font-size: 18px;
  line-height: 1.2;
}

.presentation-beats p,
.demo-proof-strip p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.demo-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.demo-story-metrics {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.demo-story-metrics article,
.demo-runway article,
.demo-close-panel {
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: saturate(170%) blur(22px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.demo-story-metrics article {
  min-width: 0;
  padding: 16px;
}

.demo-story-metrics strong {
  display: block;
  margin-top: 7px;
  color: var(--heading);
  font-size: 25px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.demo-story-metrics p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.demo-runway {
  display: grid;
  gap: 12px;
}

.demo-runway article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 20px;
}

.demo-runway > article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 102, 204, 0.16);
  border-radius: 999px;
  background: rgba(0, 102, 204, 0.08);
  color: var(--brand);
}

.demo-runway h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
}

.demo-runway p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.demo-close-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 20px;
  padding: 24px;
}

.demo-close-panel h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.08;
}

.demo-close-grid {
  display: grid;
  gap: 10px;
}

.demo-close-grid article {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
}

.demo-close-grid strong {
  color: var(--heading);
}

.demo-close-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.governance-workbench {
  display: grid;
  gap: 16px;
}

.governance-score {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(246, 247, 249, 0.72));
  backdrop-filter: saturate(170%) blur(24px);
  box-shadow: var(--shadow), 0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

.governance-score.pass {
  border-color: rgba(36, 138, 61, 0.18);
}

.governance-score.warn {
  border-color: rgba(143, 91, 18, 0.2);
}

.governance-score.risk {
  border-color: rgba(180, 35, 24, 0.2);
}

.governance-score span,
.governance-metrics span,
.permission-list span,
.audit-list span,
.guardrail-grid span {
  display: block;
  color: rgba(29, 29, 31, 0.52);
  font-size: 12px;
  font-weight: 850;
}

.governance-score strong {
  display: block;
  margin-top: 4px;
  color: var(--heading);
  font-size: clamp(46px, 6vw, 72px);
  line-height: 0.96;
}

.governance-score p {
  margin: 10px 0 0;
  color: var(--copy);
  font-size: 17px;
  line-height: 1.58;
}

.governance-metrics,
.guardrail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.governance-metrics article,
.guardrail-grid article {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: saturate(170%) blur(20px);
}

.governance-metrics strong {
  display: block;
  margin-top: 4px;
  color: var(--heading);
  font-size: 30px;
  line-height: 1.05;
}

.governance-metrics p,
.guardrail-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.governance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 14px;
  align-items: start;
}

.permission-list,
.audit-list {
  display: grid;
  gap: 10px;
}

.permission-list article {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) minmax(0, 0.82fr);
  gap: 12px;
  align-items: start;
  padding: 13px 0;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.permission-list article:first-child {
  border-top: 0;
}

.permission-list strong,
.audit-list strong {
  color: var(--heading);
  line-height: 1.28;
}

.permission-list p,
.audit-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.audit-list article {
  padding: 13px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.guardrail-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.truth-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(29, 29, 31, 0.08);
}

.truth-map div {
  min-height: 132px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.58);
}

.truth-map strong {
  display: block;
  margin-top: 8px;
  color: #1d1d1f;
  font-size: 19px;
  line-height: 1.25;
}

.truth-map p,
.risk-list p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.investment-case {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.25fr);
  gap: 22px;
  align-items: start;
  padding: 28px 0;
}

.investment-case h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

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

.case-grid article {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: saturate(170%) blur(22px);
}

.case-grid span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.case-grid p {
  margin: 10px 0 0;
  color: var(--copy);
  font-size: 17px;
  line-height: 1.62;
}

.event-status-bar,
.today-board,
.task-grid {
  display: grid;
}

.event-status-bar {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
  overflow: hidden;
}

.event-decision-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(247, 248, 250, 0.72));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

.event-decision-panel article {
  min-width: 0;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.event-decision-panel span {
  display: block;
  color: rgba(29, 29, 31, 0.48);
  font-size: 12px;
  font-weight: 820;
}

.event-decision-panel strong {
  display: block;
  overflow-wrap: anywhere;
  margin-top: 7px;
  color: var(--heading);
  font-size: 18px;
  font-weight: 820;
  line-height: 1.25;
}

.event-decision-panel p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.event-status-bar div {
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.66) inset;
}

.event-status-bar span,
.registration-head span,
.task-grid span {
  display: block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 850;
}

.event-status-bar strong,
.task-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--heading);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.38;
}

.event-journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(29, 29, 31, 0.08);
}

.event-journey div {
  position: relative;
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.66);
}

.event-journey span {
  width: 10px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: #cbd5e1;
}

.event-journey .done span {
  background: var(--green);
}

.event-journey .current span {
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(0, 102, 204, 0.1);
}

.event-journey strong {
  color: var(--heading);
  font-size: 16px;
  line-height: 1.25;
}

.event-journey p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.registration-panel,
.help-card {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: var(--panel);
  backdrop-filter: saturate(170%) blur(20px);
}

.mobile-action-bar {
  display: none;
}

.sponsor-card,
.partner-showcase {
  position: relative;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: saturate(175%) blur(22px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

.sponsor-card::before,
.partner-showcase::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 8px 0 0 8px;
  background: var(--amber);
  content: "";
}

.sponsor-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  overflow: hidden;
}

.sponsor-card span,
.partner-showcase .eyebrow {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.sponsor-card strong {
  display: block;
  margin-top: 3px;
  color: var(--heading);
  font-size: 20px;
  line-height: 1.2;
}

.sponsor-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.sponsor-mark {
  display: grid;
  width: 70px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: var(--sponsor-accent);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.sponsor-mark.small {
  width: 50px;
}

.sponsor-mark span {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.sponsor-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sponsor-mark.small span {
  font-size: 17px;
}

.partner-showcase {
  display: grid;
  gap: 16px;
  padding: 20px;
  overflow: hidden;
}

.partner-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.partner-head h2 {
  margin: 3px 0 4px;
  color: var(--heading);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
}

.partner-head p,
.partner-copy {
  margin: 0;
  color: var(--copy);
  line-height: 1.7;
}

.partner-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.partner-benefits span {
  padding: 8px 10px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #374151;
  font-size: 13px;
  font-weight: 760;
}

.partner-link {
  justify-self: start;
}

.registration-head strong,
.help-card strong {
  display: block;
  color: var(--heading);
  font-size: 20px;
}

.registration-head p,
.help-card p,
.task-grid p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.today-board {
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.5fr);
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
}

.ops-queue {
  display: grid;
  gap: 12px;
  padding: 18px 0 8px;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
}

.ops-queue-head {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
}

.ops-queue-head h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.12;
}

.ops-queue-head > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.ops-queue-list {
  display: grid;
  gap: 8px;
}

.ops-queue-list article {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: var(--panel);
  backdrop-filter: saturate(170%) blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.68) inset;
}

.ops-queue-list article > span {
  display: inline-grid;
  min-height: 32px;
  place-items: center;
  border-radius: 999px;
  background: var(--brand-quiet);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.ops-queue-list .critical > span {
  background: var(--red-quiet);
  color: var(--red);
}

.ops-queue-list .warning > span {
  background: var(--amber-quiet);
  color: var(--amber);
}

.ops-queue-list .calm > span {
  background: var(--green-quiet);
  color: var(--green);
}

.ops-queue-list strong {
  color: var(--ink);
  font-size: 18px;
}

.ops-queue-list p {
  margin: 3px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.today-board h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
}

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

.task-grid article {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: var(--panel);
  backdrop-filter: saturate(170%) blur(22px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.task-grid .button {
  margin-top: 12px;
}

.today-workbench {
  display: grid;
  gap: 16px;
}

.today-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.32fr);
  gap: 22px;
  align-items: end;
  overflow: hidden;
  padding: clamp(26px, 4.6vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(5, 14, 34, 0.68), rgba(5, 14, 34, 0.2) 58%, rgba(5, 14, 34, 0.42)),
    url("/assets/nccu-emaba-bg.png") center / cover no-repeat,
    linear-gradient(135deg, #061537 0%, #123f91 54%, #1c65c9 100%);
  box-shadow: 0 30px 86px rgba(7, 27, 68, 0.2);
  color: white;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.28);
}

.today-hero h1 {
  max-width: 820px;
  margin: 0;
  color: white;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.03;
}

.today-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.62;
}

.today-hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.today-focus,
.today-card-strip article,
.today-lanes section,
.today-demo-strip {
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: saturate(170%) blur(22px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.today-focus {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 20px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: saturate(170%) blur(18px);
}

.today-focus span,
.today-card-strip span,
.today-task-list article > div > span {
  color: rgba(29, 29, 31, 0.52);
  font-size: 12px;
  font-weight: 860;
}

.today-focus strong {
  color: white;
  font-size: 58px;
  line-height: 1;
}

.today-focus span,
.today-focus p {
  color: rgba(255, 255, 255, 0.72);
}

.today-focus p,
.today-card-strip p,
.today-task-list p,
.today-demo-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.today-card-strip article {
  min-width: 0;
  padding: 17px;
}

.today-card-strip strong {
  display: block;
  margin: 7px 0;
  color: var(--heading);
  font-size: 25px;
  line-height: 1.15;
}

.today-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.today-command-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.today-command-summary,
.today-secondary-work {
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: saturate(170%) blur(22px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.today-command-summary {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 20px;
}

.today-command-summary span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.today-command-summary strong {
  color: var(--heading);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
}

.today-command-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.today-command-summary .button {
  width: fit-content;
  margin-top: 4px;
}

.today-priority-queue {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.5fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(244, 248, 255, 0.56)),
    rgba(255, 255, 255, 0.5);
  backdrop-filter: saturate(175%) blur(24px);
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.today-command-panel .today-priority-queue {
  grid-template-columns: minmax(210px, 0.45fr) minmax(0, 1fr);
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.today-priority-queue h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.today-priority-queue > div > p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.priority-list {
  display: grid;
  gap: 8px;
}

.priority-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.priority-list article > span {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 102, 204, 0.1);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.priority-list small {
  color: rgba(29, 29, 31, 0.52);
  font-size: 12px;
  font-weight: 860;
}

.priority-list strong {
  display: block;
  margin-top: 3px;
  color: var(--heading);
  font-size: 18px;
  line-height: 1.25;
}

.priority-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.priority-list article.critical {
  border-color: rgba(220, 38, 38, 0.22);
  background: linear-gradient(180deg, rgba(254, 242, 242, 0.9), rgba(255, 255, 255, 0.64));
}

.priority-list article.warning {
  border-color: rgba(245, 158, 11, 0.24);
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.9), rgba(255, 255, 255, 0.64));
}

.today-lanes section {
  min-width: 0;
  padding: 16px;
}

.today-task-list {
  display: grid;
  gap: 10px;
}

.today-task-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.today-task-list article.critical {
  border-color: rgba(220, 38, 38, 0.2);
  background: linear-gradient(180deg, rgba(254, 242, 242, 0.92), rgba(255, 255, 255, 0.58));
}

.today-task-list article.warning {
  border-color: rgba(245, 158, 11, 0.24);
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.92), rgba(255, 255, 255, 0.58));
}

.today-task-list article.info {
  border-color: rgba(0, 102, 204, 0.18);
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.9), rgba(255, 255, 255, 0.58));
}

.today-task-list strong {
  display: block;
  margin-top: 4px;
  color: var(--heading);
  font-size: 18px;
  line-height: 1.25;
}

.today-task-list p {
  margin-top: 6px;
  font-size: 13px;
}

.today-metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: saturate(170%) blur(22px);
}

.today-metric-row div {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid var(--glass-line);
}

.today-metric-row div:last-child {
  border-right: 0;
}

.today-metric-row span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.today-metric-row strong {
  display: block;
  margin-top: 6px;
  color: var(--heading);
  font-size: 30px;
  line-height: 1;
}

.today-secondary-work {
  padding: 18px;
}

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

.today-task-list.compact article {
  min-height: 132px;
}

.today-demo-strip {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.today-demo-strip h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.1;
}

.executive-hero {
  position: relative;
  display: grid;
  gap: 20px;
  min-height: 520px;
  align-content: center;
  margin-top: 18px;
  padding: 64px;
  overflow: hidden;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: saturate(180%) blur(32px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 36px 90px rgba(29, 29, 31, 0.08);
}

.executive-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.18) 42%, rgba(255, 255, 255, 0.44)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(0, 102, 204, 0.06));
  content: "";
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand);
  font-weight: 900;
}

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

h1 {
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.04;
  color: var(--heading);
}

h2 {
  line-height: 1.14;
}

h3 {
  line-height: 1.22;
}

.executive-hero > p {
  max-width: 760px;
  color: var(--copy);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.actions,
.quick-logins {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

.actions .button,
.quick-logins .button {
  flex: 0 1 auto;
  max-width: 100%;
}

.executive-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: saturate(180%) blur(22px);
}

.executive-metrics div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.42);
}

.executive-metrics span {
  display: block;
  color: var(--heading);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.executive-metrics p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.board-briefing,
.board-roadmap {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.35fr);
  gap: 28px;
  align-items: start;
  padding: 30px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52)),
    var(--panel);
  backdrop-filter: saturate(170%) blur(26px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.briefing-copy h2,
.board-roadmap h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
}

.briefing-memo,
.roadmap-track {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(29, 29, 31, 0.08);
}

.briefing-memo article,
.roadmap-track article {
  min-width: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.briefing-memo span,
.roadmap-track span,
.board-scorecard span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.briefing-memo p,
.roadmap-track p {
  margin: 7px 0 0;
  color: var(--copy);
  line-height: 1.72;
}

.roadmap-track h3 {
  margin: 8px 0 0;
  color: var(--heading);
  font-size: 21px;
  line-height: 1.2;
}

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

.board-scorecard article {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: saturate(170%) blur(22px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.board-scorecard article.watch {
  border-color: rgba(143, 91, 18, 0.2);
  background: rgba(255, 250, 239, 0.72);
}

.board-scorecard strong {
  display: block;
  margin-top: 10px;
  color: var(--heading);
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1;
}

.board-scorecard p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.45;
}

.council-snapshot,
.line-reframe,
.operating-model {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.4fr);
  gap: 34px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
}

.council-snapshot h2,
.line-reframe h2,
.operating-model h2 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
}

.snapshot-grid,
.reframe-grid {
  display: grid;
  gap: 12px;
}

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

.snapshot-grid div,
.reframe-grid article {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: var(--glass);
  backdrop-filter: saturate(170%) blur(24px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.snapshot-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.snapshot-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--heading);
  font-size: 22px;
}

.snapshot-grid p,
.reframe-grid p,
.model-rows p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.reframe-grid h3,
.model-rows h3 {
  margin: 0;
  color: var(--ink);
}

.model-rows {
  display: grid;
  gap: 1px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.36);
  backdrop-filter: saturate(170%) blur(24px);
}

.model-rows div {
  display: grid;
  grid-template-columns: 64px 180px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.48);
}

.model-rows span {
  color: var(--brand);
  font-weight: 900;
}

.section,
.panel {
  margin-top: 24px;
}

.section h1,
.panel h1 {
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  margin-bottom: 16px;
}

.council-board {
  padding: 20px 0 6px;
}

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

.risk-list article {
  padding: 20px;
}

.risk-list strong {
  display: block;
  margin-top: 8px;
  color: var(--heading);
  font-size: 24px;
  line-height: 1.2;
}

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

.event-grid {
  align-items: stretch;
}

.event-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border-color: rgba(29, 29, 31, 0.075);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68)),
    var(--panel);
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.065), inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.event-card .cover {
  min-height: 0;
  aspect-ratio: 16 / 10;
  border-radius: 0 !important;
  background-size: cover !important;
  background-position: center !important;
}

.event-card .card-body {
  display: grid;
  gap: 12px;
  align-content: start;
}

.event-card h3 {
  margin: 0;
  color: var(--heading);
  font-size: 24px;
  font-weight: 830;
  line-height: 1.15;
}

.event-card p {
  margin: 0;
  color: var(--copy);
  line-height: 1.58;
}

.event-hub {
  display: grid;
  gap: 18px;
}

.event-hub-hero {
  position: relative;
  display: grid;
  min-height: clamp(430px, 55vh, 620px);
  overflow: hidden;
  align-items: end;
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 72%, rgba(224, 106, 44, 0.34), transparent 30%),
    linear-gradient(135deg, #061537 0%, #123f91 54%, #1c65c9 100%);
  box-shadow: 0 32px 90px rgba(7, 27, 68, 0.24);
  isolation: isolate;
}

.event-hub-hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 14, 34, 0.54), rgba(5, 14, 34, 0.14) 58%, rgba(5, 14, 34, 0.38)),
    linear-gradient(180deg, rgba(5, 14, 34, 0.08), rgba(5, 14, 34, 0.32));
  content: "";
}

.event-hub-art {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}

.event-hub-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  color: white;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.28);
}

.event-hub-copy .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.event-hub-hero h1 {
  max-width: 720px;
  margin: 0;
  color: white;
  font-size: clamp(44px, 6.8vw, 82px);
  line-height: 1.04;
}

.event-hub-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.75vw, 22px);
  line-height: 1.68;
}

.event-hero-actions {
  margin-top: 24px;
}

.event-hub .event-hero-actions .button.warm {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #f2c57c, var(--gold));
  color: #1b2440;
}

.event-hub .event-hero-actions .button.glass {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.13);
  color: white;
  backdrop-filter: saturate(170%) blur(18px);
}

.event-hub-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  width: min(500px, 100%);
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: saturate(170%) blur(18px);
}

.event-hub-proof div {
  min-width: 0;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.1);
}

.event-hub-proof strong,
.event-hub-proof span {
  display: block;
}

.event-hub-proof strong {
  color: white;
  font-size: 25px;
  line-height: 1;
}

.event-hub-proof span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 780;
}

.event-hub-panel {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: saturate(170%) blur(24px);
}

.event-hub-panel span,
.card-kicker span:last-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.event-hub-panel strong {
  color: var(--heading);
  font-size: 38px;
  line-height: 1;
}

.event-hub-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.event-browser-bar {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: saturate(170%) blur(22px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.event-decision-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.event-decision-rail a {
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  color: inherit;
  text-decoration: none;
  backdrop-filter: saturate(170%) blur(20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.event-decision-rail a.good {
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.88), rgba(255, 255, 255, 0.68));
}

.event-decision-rail a.warn {
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.9), rgba(255, 255, 255, 0.68));
}

.event-decision-rail span,
.event-chip-row span,
.event-card-meter span {
  display: block;
  color: rgba(29, 29, 31, 0.52);
  font-size: 12px;
  font-weight: 820;
}

.event-decision-rail strong {
  display: block;
  margin-top: 7px;
  color: var(--heading);
  font-size: 28px;
  line-height: 1;
}

.event-decision-rail p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.event-flow-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.event-flow-strip article {
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: saturate(170%) blur(20px);
}

.event-flow-strip span {
  color: var(--heading);
  font-size: 14px;
  font-weight: 900;
}

.event-flow-strip p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.event-filter {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.featured-event,
.line-entry-card,
.line-demo-shell {
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: var(--panel);
  backdrop-filter: saturate(180%) blur(24px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.featured-event {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 0;
  overflow: hidden;
  min-height: 390px;
}

.featured-cover {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  isolation: isolate;
}

.featured-cover::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 38%),
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.16));
  content: "";
}

.featured-copy {
  display: grid;
  gap: 13px;
  align-content: center;
  min-width: 0;
  padding: clamp(24px, 3.4vw, 40px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 92% 12%, rgba(242, 197, 124, 0.22), transparent 30%);
}

.featured-copy h2 {
  max-width: 620px;
  margin: 0;
  color: var(--heading);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 820;
  line-height: 1.08;
}

.featured-copy > p {
  max-width: 560px;
  margin: 0;
  color: var(--copy);
  font-size: 17px;
  line-height: 1.58;
}

.featured-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(29, 29, 31, 0.08);
}

.featured-meta div {
  min-width: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.featured-meta span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.featured-meta strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.featured-progress {
  max-width: 560px;
  margin: 2px 0 0;
}

.featured-sponsor {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  justify-self: start;
  max-width: min(100%, 420px);
  padding: 7px 12px 7px 7px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--heading);
  font-size: 13px;
  font-weight: 760;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.featured-sponsor span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-entry-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  box-shadow: none;
}

.line-entry-card span {
  color: #06c755;
  font-size: 12px;
  font-weight: 900;
}

.line-entry-card strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 20px;
}

.line-entry-card p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.line-demo-shell {
  display: grid;
  grid-template-columns: minmax(290px, 0.62fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: clamp(18px, 4vw, 54px);
}

.line-phone {
  max-width: 390px;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.12);
  border-radius: 34px;
  background: #101418;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.18);
}

.line-status {
  display: flex;
  justify-content: space-between;
  padding: 18px 20px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
}

.line-chat {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 28px 28px 0 0;
  background: #eaf2ed;
}

.line-bubble {
  max-width: 92%;
  justify-self: start;
  padding: 13px;
  border-radius: 16px 16px 16px 4px;
  background: #fff;
}

.line-bubble.me {
  justify-self: end;
  border-radius: 16px 16px 4px 16px;
  background: #06c755;
  color: #fff;
}

.line-bubble.system {
  justify-self: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  color: var(--copy);
  font-size: 12px;
  font-weight: 850;
}

.line-bubble strong,
.line-bubble p,
.line-bubble small {
  display: block;
}

.line-bubble p {
  margin: 7px 0;
  color: var(--copy);
  line-height: 1.5;
}

.line-bubble small {
  color: #64748b;
}

.line-event-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin: 12px 0;
}

.line-event-card .cover {
  min-height: 72px;
  border-radius: 8px;
}

.line-event-card span {
  color: #06a84a;
  font-size: 12px;
  font-weight: 900;
}

.line-event-card p {
  margin: 4px 0 0;
  font-size: 13px;
}

.line-demo-copy h1 {
  max-width: 820px;
}

.line-demo-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--copy);
  font-size: 20px;
  line-height: 1.7;
}

.line-flow-map {
  margin: 22px 0;
}

.pass-hub {
  display: grid;
  gap: 18px;
}

.invite-hub {
  display: grid;
  gap: 18px;
}

.invite-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.34fr);
  gap: 22px;
  align-items: end;
  min-height: clamp(340px, 46vh, 520px);
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(5, 14, 34, 0.66), rgba(5, 14, 34, 0.18) 58%, rgba(5, 14, 34, 0.42)),
    url("/assets/nccu-emaba-bg.png") center / cover no-repeat,
    linear-gradient(135deg, #061537 0%, #123f91 54%, #1c65c9 100%);
  box-shadow: 0 32px 90px rgba(7, 27, 68, 0.22);
  color: white;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.28);
}

.invite-hero-copy {
  max-width: 760px;
}

.invite-hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.invite-hero h1 {
  max-width: 760px;
  margin: 0;
  color: white;
  font-size: clamp(44px, 6.4vw, 78px);
  line-height: 1.04;
}

.invite-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.65;
}

.invite-summary {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: saturate(170%) blur(18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.invite-summary span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 780;
}

.invite-summary strong {
  color: white;
  font-size: 44px;
  line-height: 1;
}

.invite-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 760;
}

.invite-list {
  display: grid;
  gap: 12px;
}

.invite-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(29, 29, 31, 0.075);
  border-radius: 12px;
  background:
    radial-gradient(circle at 92% 10%, rgba(242, 197, 124, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.82));
  backdrop-filter: saturate(180%) blur(22px);
  box-shadow: 0 22px 64px rgba(15, 23, 42, 0.08), 0 1px 0 rgba(255, 255, 255, 0.82) inset;
}

.invite-card.expired {
  opacity: 0.72;
}

.invite-card h3 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.12;
}

.invite-card p {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.invite-url {
  margin: 14px 0;
  padding: 12px;
  overflow-wrap: anywhere;
  border: 1px solid rgba(29, 101, 216, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.76);
  color: #164ea8;
  font-size: 13px;
  font-weight: 760;
}

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

.invite-meta div {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(29, 29, 31, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.invite-meta span,
.invite-meta strong {
  display: block;
}

.invite-meta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
}

.invite-meta strong {
  margin-top: 4px;
  color: var(--heading);
  font-size: 14px;
  line-height: 1.35;
}

.invite-actions {
  display: grid;
  gap: 8px;
  min-width: 140px;
}

.pass-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.36fr);
  gap: 22px;
  align-items: end;
  min-height: clamp(360px, 48vh, 540px);
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(5, 14, 34, 0.66), rgba(5, 14, 34, 0.18) 58%, rgba(5, 14, 34, 0.42)),
    url("/assets/nccu-emaba-bg.png") center / cover no-repeat,
    linear-gradient(135deg, #061537 0%, #123f91 54%, #1c65c9 100%);
  box-shadow: 0 32px 90px rgba(7, 27, 68, 0.22);
  color: white;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.28);
}

.pass-hero-copy {
  max-width: 760px;
}

.pass-hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.pass-hero h1 {
  max-width: 760px;
  margin: 0;
  color: white;
  font-size: clamp(44px, 6.4vw, 78px);
  line-height: 1.04;
}

.pass-hero p:not(.eyebrow) {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.65;
}

.pass-summary {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: saturate(170%) blur(18px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

.pass-meta span,
.pass-code span {
  color: rgba(29, 29, 31, 0.52);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
}

.pass-summary span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 780;
}

.pass-summary strong {
  color: white;
  font-size: 22px;
  line-height: 1.25;
}

.pass-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 760;
}

.pass-wallet-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.pass-wallet-strip article,
.pass-next-card {
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.68)),
    radial-gradient(circle at 92% 0%, rgba(242, 197, 124, 0.2), transparent 28%);
  backdrop-filter: saturate(170%) blur(18px);
  box-shadow: 0 18px 54px rgba(15, 23, 42, 0.06), 0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

.pass-wallet-strip article {
  padding: 15px;
}

.pass-wallet-strip span,
.pass-next-card span,
.pass-context span {
  display: block;
  color: rgba(29, 29, 31, 0.52);
  font-size: 12px;
  font-weight: 780;
}

.pass-wallet-strip strong {
  display: block;
  margin-top: 4px;
  color: var(--heading);
  font-size: 28px;
  line-height: 1.1;
}

.pass-next-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
}

.pass-next-card strong {
  display: block;
  margin-top: 4px;
  color: var(--heading);
  font-size: 20px;
  line-height: 1.25;
}

.pass-next-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.pass-list {
  display: grid;
  gap: 12px;
}

.event-pass {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) minmax(230px, 0.34fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.075);
  border-radius: 14px;
  background:
    radial-gradient(circle at 92% 10%, rgba(242, 197, 124, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.82));
  backdrop-filter: saturate(180%) blur(22px);
  box-shadow: 0 26px 72px rgba(15, 23, 42, 0.09), 0 1px 0 rgba(255, 255, 255, 0.82) inset;
}

.event-pass::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--brand);
  content: "";
}

.event-pass.confirmed::before,
.event-pass.checked_in::before {
  background: linear-gradient(180deg, var(--gold), #1d65d8);
}

.event-pass.waitlisted::before,
.event-pass.pending::before {
  background: var(--amber);
}

.event-pass.cancelled::before,
.event-pass.rejected::before {
  background: var(--red);
}

.pass-cover {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
  background-size: cover !important;
  filter: saturate(0.9) contrast(1.03);
}

.pass-cover::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 23, 32, 0.14), transparent 42%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.1), transparent);
  content: "";
}

.pass-main {
  display: grid;
  gap: 12px;
  align-content: center;
  min-width: 0;
  padding: 24px 26px;
}

.pass-main .card-kicker {
  gap: 7px;
  margin-bottom: 2px;
}

.pass-main .card-kicker span:last-child {
  color: rgba(29, 29, 31, 0.48);
  font-weight: 720;
}

.pass-main .pill {
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid transparent;
  background: rgba(29, 29, 31, 0.055);
  color: rgba(29, 29, 31, 0.7);
  font-size: 12px;
  font-weight: 760;
}

.event-pass.confirmed .pass-main .pill,
.event-pass.checked_in .pass-main .pill {
  border-color: rgba(29, 101, 216, 0.16);
  background: rgba(29, 101, 216, 0.08);
  color: #164ea8;
}

.event-pass.waitlisted .pass-main .pill,
.event-pass.pending .pass-main .pill {
  border-color: rgba(143, 91, 18, 0.16);
  background: rgba(143, 91, 18, 0.075);
  color: var(--amber);
}

.event-pass.cancelled .pass-main .pill,
.event-pass.rejected .pass-main .pill {
  border-color: rgba(180, 35, 24, 0.16);
  background: rgba(180, 35, 24, 0.075);
  color: var(--red);
}

.pass-main h3 {
  margin: 0;
  color: var(--heading);
  font-size: clamp(23px, 2.5vw, 30px);
  font-weight: 820;
  line-height: 1.16;
}

.pass-meta {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 12px;
}

.pass-meta div {
  min-width: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.pass-meta strong {
  display: block;
  overflow-wrap: anywhere;
  margin-top: 3px;
  color: rgba(29, 29, 31, 0.84);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.38;
}

.pass-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, max-content));
  gap: 8px;
  align-items: center;
}

.pass-actions .button,
.pass-code .button {
  min-width: 0;
  min-height: 34px;
  padding-inline: 12px;
  border-color: rgba(29, 29, 31, 0.1);
  background: rgba(255, 255, 255, 0.66);
  color: rgba(29, 29, 31, 0.8);
  font-weight: 720;
}

.pass-actions .button:hover,
.pass-code .button:hover {
  border-color: rgba(0, 102, 204, 0.22);
  color: var(--brand);
}

.pass-actions .danger {
  border-color: transparent;
  background: transparent;
  color: var(--red);
}

.pass-secondary-actions {
  margin-top: -2px;
}

.pass-cancel-link {
  min-height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(180, 35, 24, 0.82);
  font-size: 13px;
  font-weight: 760;
}

.pass-cancel-link:hover {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pass-code {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: center;
  justify-items: stretch;
  min-width: 0;
  padding: 24px 20px;
  border-left: 1px dashed rgba(29, 29, 31, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.9));
  text-align: center;
}

.pass-code::before,
.pass-code::after {
  position: absolute;
  left: -10px;
  width: 20px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--bg);
  content: "";
}

.pass-code::before {
  top: -10px;
}

.pass-code::after {
  bottom: -10px;
}

.pass-code strong {
  display: block;
  min-width: 0;
  min-height: 0;
  padding: 15px 12px;
  border: 1px solid rgba(29, 101, 216, 0.1);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.92));
  color: #061537;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 22px;
  font-weight: 860;
  line-height: 1.15;
  text-align: center;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06), 0 1px 0 rgba(255, 255, 255, 0.86) inset;
}

.pass-code p {
  max-width: none;
  margin: 0;
  color: rgba(29, 29, 31, 0.56);
  font-size: 13px;
  line-height: 1.45;
}

.pass-code .button {
  width: 100%;
}

.event-tabs a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.event-tabs span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.08);
  font-size: 12px;
}

.event-tabs .active span {
  background: rgba(255, 255, 255, 0.22);
}

.card-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

.event-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.event-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0 4px;
}

.event-chip-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: rgba(29, 29, 31, 0.62);
  line-height: 1;
  white-space: nowrap;
}

.event-chip-row span.good {
  border-color: rgba(52, 199, 89, 0.22);
  background: rgba(236, 253, 245, 0.86);
  color: #167a3b;
}

.event-chip-row span.warn {
  border-color: rgba(245, 158, 11, 0.26);
  background: rgba(255, 247, 237, 0.9);
  color: #9a5a00;
}

.event-card-brief {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.075);
  border-radius: 8px;
  background: rgba(29, 29, 31, 0.075);
}

.event-card-brief div {
  min-width: 0;
  padding: 11px;
  background: rgba(255, 255, 255, 0.7);
}

.event-card-brief span,
.event-card-sponsor span {
  display: block;
  color: rgba(29, 29, 31, 0.48);
  font-size: 12px;
  font-weight: 820;
}

.event-card-brief strong {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  color: rgba(29, 29, 31, 0.86);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-card-meter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.event-card-meter i {
  display: block;
  height: 6px;
  max-width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 102, 204, 0.86), rgba(52, 199, 89, 0.62));
}

.event-card-meter span {
  color: rgba(29, 29, 31, 0.54);
  white-space: nowrap;
}

.event-card-sponsor {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  justify-self: start;
  max-width: 100%;
  padding: 7px 10px 7px 7px;
  border: 1px solid rgba(29, 29, 31, 0.075);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
}

.event-card-sponsor .sponsor-mark {
  width: 34px;
}

.event-card-sponsor .sponsor-mark span {
  color: #fff;
  font-size: 13px;
}

.event-card-sponsor strong {
  display: block;
  overflow: hidden;
  color: var(--heading);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card,
.panel,
.row-card {
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: var(--panel);
  backdrop-filter: saturate(160%) blur(18px);
  box-shadow: var(--shadow);
}

.card {
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.cover {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 150px;
}

.cover.large {
  width: 100%;
  max-width: 100%;
  min-height: 430px;
  border-radius: 8px;
}

.card-body,
.panel {
  padding: 20px;
}

.event-card h3,
.row-card h3 {
  margin-bottom: 8px;
  color: var(--heading);
}

.event-card p,
.muted {
  color: var(--muted);
  line-height: 1.6;
}

dl {
  margin: 16px 0;
}

dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

dd {
  margin: 2px 0 10px;
  font-weight: 650;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--brand-quiet);
  color: var(--brand);
  font-size: 13px;
  font-weight: 820;
}

.pending,
.waitlisted {
  background: var(--amber-quiet);
  color: var(--amber);
}

.confirmed,
.checked_in {
  background: var(--green-quiet);
  color: var(--green);
}

.cancelled,
.rejected {
  background: var(--red-quiet);
  color: var(--red);
}

.pledged {
  background: var(--amber-quiet);
  color: var(--amber);
}

.detail {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(420px, 1fr);
  gap: 24px;
  align-items: start;
  padding-top: 18px;
}

.event-visual {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
  min-width: 0;
}

.event-primary {
  display: grid;
  gap: 22px;
}

.event-title-block {
  display: grid;
  gap: 12px;
  padding-bottom: 4px;
}

.event-title-block h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
}

.event-title-block p {
  margin: 0;
  color: var(--copy);
  font-size: 18px;
  line-height: 1.72;
}

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

.refined-facts {
  margin: 0;
}

.event-info-section {
  display: grid;
  gap: 12px;
}

.event-info-section h2 {
  margin: 0;
  color: var(--heading);
  font-size: 22px;
  line-height: 1.2;
}

.refined-facts div {
  min-width: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}

.refined-facts dt {
  margin-bottom: 6px;
}

.refined-facts dd {
  margin: 0;
  color: #27272a;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.58;
}

.content-note {
  padding-top: 4px;
}

.content-note h2 {
  margin-bottom: 8px;
  color: var(--heading);
  font-size: 22px;
}

.content-note p {
  margin-bottom: 0;
  color: var(--copy);
  line-height: 1.72;
}

.stack {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--copy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 40px;
  padding: 9px 11px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  background: white;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: var(--focus-ring);
}

textarea {
  min-height: 88px;
  resize: vertical;
}

.check {
  grid-template-columns: auto 1fr;
  align-items: center;
  font-weight: 750;
}

.check input {
  width: 18px;
  min-height: 18px;
}

.narrow {
  width: min(520px, 100%);
  margin-inline: auto;
}

.quick-logins {
  margin-top: 16px;
}

.notice {
  padding: 16px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  background: #eff6ff;
}

.list {
  display: grid;
  gap: 12px;
}

.row-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
}

.code {
  margin: 8px 0 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #0f4fb8;
  font-weight: 850;
}

.success {
  text-align: center;
}

.checkmark {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 8px auto 18px;
  border-radius: 50%;
  background: #22c55e;
  color: white;
  font-size: 46px;
  font-weight: 900;
}

.qr {
  display: inline-grid;
  place-items: center;
  min-width: 190px;
  min-height: 190px;
  padding: 16px;
  border: 10px solid #111827;
  background: repeating-linear-gradient(45deg, #111827 0 8px, white 8px 16px);
  color: white;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 900;
  text-shadow: 0 1px 2px #000;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tabs a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  font-weight: 850;
  color: #475569;
}

.tabs .active {
  border-color: var(--brand);
  color: white;
  background: var(--brand);
}

.event-builder {
  margin-top: 0;
}

.event-builder-hero {
  min-height: clamp(300px, 36vh, 430px);
}

.builder-form {
  display: grid;
  gap: 18px;
  margin-top: 16px;
}

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

.steps span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #bfd0eb;
  border-radius: 8px;
  background: white;
  color: #17407e;
  font-weight: 900;
  text-align: center;
}

.builder-steps {
  padding: 10px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: saturate(170%) blur(18px);
}

.builder-steps span {
  min-height: 48px;
  border-color: rgba(255, 255, 255, 0.54);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62)),
    rgba(255, 255, 255, 0.7);
  color: var(--heading);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.builder-step {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.66)),
    rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: saturate(170%) blur(22px);
}

.builder-step h2 {
  margin-top: 0;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--heading);
  line-height: 1.12;
}

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

.wide {
  grid-column: 1 / -1;
}

.required {
  color: var(--red);
  margin-left: 4px;
}

.field-matrix,
.check-grid {
  display: grid;
  gap: 10px;
}

.field-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) repeat(3, auto);
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.field-row label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 750;
}

.field-row input {
  width: 16px;
  min-height: 16px;
}

.image-tool {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid #dbeafe;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.image-tool-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.image-tool-head p {
  margin-bottom: 0;
}

.file-button {
  position: relative;
  overflow: hidden;
}

.file-button input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.image-tool-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(240px, 1fr);
  gap: 14px;
  align-items: start;
}

.image-tool-preview {
  min-height: 220px;
  border: 1px solid #bfdbfe;
  background-color: white;
}

.image-controls {
  display: grid;
  gap: 12px;
}

.advanced {
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
}

.advanced summary {
  cursor: pointer;
  color: #17407e;
  font-weight: 900;
}

.advanced .form-grid,
.advanced .field-matrix {
  margin-top: 14px;
}

.preview-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.preview-panel {
  margin-top: 0;
}

.builder-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 -18px 50px rgba(15, 23, 42, 0.08);
  backdrop-filter: saturate(170%) blur(20px);
}

.admin-workbench {
  margin-top: 0;
}

.admin-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  overflow: hidden;
  min-height: clamp(320px, 40vh, 460px);
  padding: clamp(28px, 4.8vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(5, 14, 34, 0.68), rgba(5, 14, 34, 0.2) 58%, rgba(5, 14, 34, 0.42)),
    url("/assets/nccu-emaba-bg.png") center / cover no-repeat,
    linear-gradient(135deg, #061537 0%, #123f91 54%, #1c65c9 100%);
  box-shadow: 0 30px 86px rgba(7, 27, 68, 0.2);
  color: white;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.28);
}

.admin-hero h1 {
  max-width: 780px;
  margin: 0;
  color: white;
  font-size: clamp(42px, 6.4vw, 76px);
  letter-spacing: 0;
  line-height: 1.04;
}

.admin-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.62;
}

.admin-hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.simple-admin-hero {
  align-items: center;
}

.admin-simple-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 620px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: saturate(170%) blur(18px);
}

.admin-simple-actions .button {
  min-width: 112px;
}

.admin-hero .button {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #f2c57c, var(--gold));
  color: #1b2440;
}

.admin-hero .button.secondary,
.admin-hero .button.ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.13);
  color: white;
  backdrop-filter: saturate(170%) blur(18px);
}

.profile-page {
  margin-top: 0;
}

.profile-hero {
  min-height: clamp(300px, 36vh, 430px);
}

.profile-badge {
  display: grid;
  justify-items: center;
  min-width: min(100%, 220px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: saturate(170%) blur(18px);
}

.profile-badge span {
  display: grid;
  width: 78px;
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(242, 197, 124, 0.94), rgba(255, 255, 255, 0.2));
  color: #132044;
  font-size: 36px;
  font-weight: 900;
  text-shadow: none;
}

.profile-badge strong,
.profile-badge small {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-badge strong {
  color: white;
  font-size: 18px;
}

.profile-badge small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 760;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 16px;
}

.profile-page-certified .profile-layout {
  margin-top: 0;
}

.profile-page-certified .alumni-card {
  min-height: clamp(440px, 58vw, 620px);
}

.alumni-card {
  position: relative;
  display: grid;
  min-height: 330px;
  overflow: hidden;
  align-content: space-between;
  grid-column: 1 / -1;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(5, 14, 34, 0.78), rgba(18, 63, 145, 0.54) 54%, rgba(8, 19, 48, 0.72)),
    url("/assets/nccu-emaba-bg.png") center / cover no-repeat,
    linear-gradient(135deg, #061537 0%, #123f91 58%, #1c65c9 100%);
  box-shadow: 0 34px 100px rgba(7, 27, 68, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: white;
  isolation: isolate;
}

.alumni-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 18%, rgba(242, 197, 124, 0.24), transparent 26%),
    radial-gradient(circle at 20% 92%, rgba(234, 88, 12, 0.32), transparent 32%),
    linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.18));
  content: "";
}

.alumni-card-shine {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 197, 124, 0.34), rgba(242, 197, 124, 0.06) 42%, transparent 66%);
  filter: blur(2px);
}

.alumni-card-top,
.alumni-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
}

.alumni-card-top > *,
.alumni-card-bottom > * {
  min-width: 0;
}

.alumni-card-top span,
.alumni-card-name span,
.alumni-card-details span,
.alumni-card-bottom small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 820;
}

.alumni-card-top strong {
  display: block;
  margin-top: 4px;
  color: white;
  font-size: 20px;
  letter-spacing: 0;
}

.alumni-card-top i {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(242, 197, 124, 0.42);
  border-radius: 999px;
  background: rgba(242, 197, 124, 0.14);
  color: #ffe1a6;
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.alumni-card-name {
  min-width: 0;
  margin: clamp(30px, 5vw, 54px) 0;
}

.alumni-card-name h2 {
  max-width: 720px;
  margin: 8px 0 0;
  overflow-wrap: anywhere;
  color: white;
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 880;
  letter-spacing: 0;
  line-height: 0.98;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.32);
}

.alumni-card-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 860px;
  min-width: 0;
}

.alumni-card-details div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: saturate(170%) blur(18px);
}

.alumni-card-details strong {
  display: block;
  margin-top: 6px;
  overflow: hidden;
  color: white;
  font-size: 18px;
  line-height: 1.28;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.alumni-card-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.alumni-card-bottom code {
  color: #ffe1a6;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 18px;
  font-weight: 860;
}

.profile-form,
.profile-id-card,
.profile-stat-grid div {
  border-color: var(--glass-line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.66)),
    rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: saturate(170%) blur(22px);
}

.profile-actions {
  position: static;
  margin-top: 4px;
}

.profile-side {
  display: grid;
  gap: 14px;
}

.profile-id-card {
  margin-top: 0;
}

.profile-id-card span,
.profile-stat-grid span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.profile-id-card strong {
  display: block;
  margin-top: 8px;
  color: var(--heading);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.profile-id-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.profile-stat-grid {
  display: grid;
  gap: 10px;
}

.profile-stat-grid div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
}

.profile-stat-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--heading);
  font-size: 28px;
  line-height: 1.1;
}

.admin-ops-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
}

.admin-ops-strip div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: saturate(170%) blur(22px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.admin-ops-strip span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.admin-ops-strip strong {
  display: block;
  margin-top: 6px;
  color: var(--heading);
  font-size: 28px;
  line-height: 1;
}

.ops-command-center {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(260px, 0.74fr) minmax(320px, 1fr);
  gap: 12px;
  align-items: stretch;
  margin: 18px 0 4px;
}

.ops-command-center.simplified {
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
}

.ops-health-card,
.ops-brief-card,
.ops-pulse-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58)),
    var(--panel);
  backdrop-filter: saturate(175%) blur(24px);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.065), inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.ops-health-card {
  display: grid;
  align-content: space-between;
  gap: 12px;
}

.ops-health-card.watch {
  border-color: rgba(143, 91, 18, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 250, 239, 0.92), rgba(255, 255, 255, 0.62)),
    var(--amber-quiet);
}

.ops-health-card.critical {
  border-color: rgba(180, 35, 24, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 240, 239, 0.92), rgba(255, 255, 255, 0.64)),
    var(--red-quiet);
}

.ops-health-card span,
.ops-brief-card span,
.ops-pulse-card > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.ops-health-card strong {
  color: var(--heading);
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 900;
  line-height: 0.95;
}

.ops-health-card p,
.ops-brief-card p {
  margin: 0;
  color: var(--copy);
  line-height: 1.58;
}

.ops-health-meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.08);
}

.ops-health-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0066cc, #36b37e);
}

.ops-brief-card {
  display: grid;
  gap: 10px;
  align-content: start;
}

.ops-brief-card strong {
  color: var(--heading);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.16;
}

.ops-brief-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.ops-pulse-card {
  display: grid;
  gap: 12px;
}

.pulse-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(29, 29, 31, 0.08);
}

.pulse-list a {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.74);
}

.pulse-list a:hover {
  background: rgba(232, 242, 255, 0.92);
}

.pulse-list b {
  display: grid;
  place-items: center;
  min-height: 34px;
  border-radius: 999px;
  background: rgba(0, 102, 204, 0.1);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.pulse-list strong,
.pulse-list small {
  display: block;
  min-width: 0;
}

.pulse-list strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pulse-list small {
  margin-top: 3px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.test-scenario-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1.36fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.test-scenario-strip h2 {
  max-width: 520px;
  margin: 0;
  color: var(--heading);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.12;
}

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

.scenario-metrics article {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(170%) blur(20px);
}

.scenario-metrics span {
  color: rgba(29, 29, 31, 0.52);
  font-size: 12px;
  font-weight: 760;
}

.scenario-metrics strong {
  display: block;
  margin-top: 8px;
  color: var(--heading);
  font-size: 28px;
  line-height: 1;
}

.scenario-metrics p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.48;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 18px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(222, 222, 227, 0.72);
  backdrop-filter: saturate(160%) blur(18px);
}

.admin-summary div {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 0;
  border-radius: 0;
  background: var(--glass-strong);
}

.admin-summary span {
  display: block;
  color: var(--ink);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.admin-summary p {
  order: -1;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 180px auto;
  gap: 10px;
  margin-bottom: 0;
  padding: 0 0 14px;
  border: 1px solid var(--line);
  border-width: 0 0 1px;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.admin-toolbar input,
.admin-toolbar select {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(160%) blur(16px);
}

.admin-search-results {
  display: grid;
  gap: 14px;
}

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

.global-search-row {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--glass-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.68);
  color: inherit;
  text-decoration: none;
}

.global-search-row span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.global-search-row strong {
  overflow: hidden;
  color: var(--heading);
  font-size: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.global-search-row p {
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-event-list {
  display: grid;
  gap: 12px;
  overflow: visible;
}

.admin-event-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.46fr) minmax(210px, 0.56fr) 250px;
  gap: 16px;
  align-items: center;
  min-width: 0;
  min-height: 132px;
  overflow: visible;
  padding: 18px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: var(--panel);
  backdrop-filter: saturate(170%) blur(22px);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.045), inset 0 1px 0 rgba(255, 255, 255, 0.62);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.admin-event-row:hover {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(0, 102, 204, 0.18);
  transform: translateY(-1px);
}

.admin-event-row:has(.action-menu[open]) {
  z-index: 30;
}

.admin-event-row.is-archived {
  opacity: 0.62;
  background: transparent;
}

.admin-event-main {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-width: 0;
}

.admin-event-main > div:last-child {
  min-width: 0;
}

.event-date {
  display: grid;
  place-items: center;
  width: 64px;
  height: 72px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(160%) blur(16px);
}

.event-date span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.event-date strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  white-space: nowrap;
}

.row-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.row-title h3 {
  overflow: hidden;
  min-width: 0;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.metric-row span {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.metric-row b {
  color: var(--ink);
}

.admin-actions {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  align-items: center;
  justify-self: end;
  min-width: 0;
  width: 250px;
}

.admin-actions .button {
  min-width: 0;
  padding-inline: 10px;
}

.event-health,
.event-signal {
  min-width: 0;
}

.capacity-line,
.capacity-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.capacity-line span,
.capacity-meta span,
.event-signal span,
.event-signal small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.capacity-line strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
}

.progress {
  height: 8px;
  margin: 10px 0 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.08);
}

.progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), #5aa7ff);
}

.event-signal {
  display: grid;
  gap: 4px;
  padding: 13px;
  border: 1px solid rgba(0, 102, 204, 0.12);
  border-radius: 8px;
  background: rgba(0, 102, 204, 0.055);
}

.event-signal.critical {
  border-color: rgba(180, 35, 24, 0.18);
  background: var(--red-quiet);
}

.event-signal.warning {
  border-color: rgba(143, 91, 18, 0.2);
  background: var(--amber-quiet);
}

.event-signal.calm {
  border-color: rgba(36, 138, 61, 0.18);
  background: var(--green-quiet);
}

.event-signal strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.event-signal p {
  margin: 0;
  color: var(--copy);
  font-size: 13px;
  line-height: 1.45;
}

.action-menu {
  position: relative;
  min-width: 0;
}

.action-menu summary {
  display: grid;
  place-items: center;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: #424245;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.action-menu summary::-webkit-details-marker {
  display: none;
}

.action-menu[open] summary {
  border-color: var(--brand);
  color: var(--brand);
}

.action-menu div {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 20;
  display: grid;
  width: 180px;
  margin-top: 0;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass-strong);
  backdrop-filter: saturate(180%) blur(22px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.action-menu a,
.action-menu button {
  min-height: 36px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--copy);
  text-align: left;
  font-weight: 800;
}

.action-menu a:hover,
.action-menu button:hover {
  background: #f1f5f9;
}

.danger-text {
  color: var(--red) !important;
}

.empty-state {
  padding: 28px;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  background: white;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.export-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.export-actions .button {
  min-width: 148px;
}

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

.export-readiness div {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.export-readiness span,
.export-readiness strong {
  display: block;
}

.export-readiness span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.export-readiness strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: 15px;
}

.export-scope {
  margin: 0 0 12px;
}

.notification-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.notification-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px minmax(180px, 0.6fr);
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.notification-row span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}

.notification-row h3 {
  margin: 4px 0 6px;
  color: var(--heading);
}

.notification-row p,
.notification-row time,
.notification-row strong {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.notification-row strong {
  overflow-wrap: anywhere;
}

.revenue-workbench {
  display: grid;
  gap: 18px;
}

.revenue-summary span {
  font-size: 25px;
}

.revenue-command-center,
.sponsor-package-grid {
  display: grid;
  gap: 12px;
}

.revenue-command-center {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.revenue-command-center section,
.sponsor-package-grid article {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(170%) blur(22px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
}

.revenue-command-center span,
.sponsor-package-grid span {
  display: block;
  color: rgba(29, 29, 31, 0.52);
  font-size: 12px;
  font-weight: 860;
}

.revenue-command-center strong,
.sponsor-package-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--heading);
  font-size: 30px;
  line-height: 1.08;
}

.revenue-command-center p,
.sponsor-package-grid p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

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

.sponsor-value-board,
.commercialization-map {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.48)),
    rgba(255, 255, 255, 0.56);
  backdrop-filter: saturate(175%) blur(24px);
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.065), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.sponsor-value-board h2,
.commercialization-map h2 {
  max-width: 620px;
  margin: 0;
  color: var(--heading);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.08;
}

.sponsor-value-board > div:first-child p:not(.eyebrow) {
  max-width: 560px;
  color: var(--copy);
  font-size: 16px;
  line-height: 1.72;
}

.sponsor-value-grid,
.commercialization-steps {
  display: grid;
  gap: 10px;
}

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

.sponsor-value-grid article,
.commercialization-steps article {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(29, 29, 31, 0.075);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.sponsor-value-grid span,
.commercialization-steps span {
  display: block;
  color: rgba(29, 29, 31, 0.5);
  font-size: 12px;
  font-weight: 860;
}

.sponsor-value-grid strong,
.commercialization-steps strong {
  display: block;
  margin-top: 7px;
  color: var(--heading);
  font-size: 24px;
  line-height: 1.15;
}

.sponsor-value-grid p,
.commercialization-steps p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.pilot-close-kit {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid rgba(0, 102, 204, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(232, 242, 255, 0.68)),
    rgba(255, 255, 255, 0.6);
  backdrop-filter: saturate(180%) blur(24px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.pilot-close-kit h2 {
  max-width: 620px;
  margin: 0;
  color: var(--heading);
  font-size: clamp(27px, 3.2vw, 42px);
  line-height: 1.08;
}

.pilot-close-kit > div:first-child > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--copy);
  font-size: 16px;
  line-height: 1.72;
}

.pilot-close-kit .actions {
  margin-top: 18px;
}

.pilot-scope-preview {
  margin-top: 14px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.pilot-scope-preview summary {
  padding: 12px 14px;
  color: var(--brand);
  font-weight: 820;
  cursor: pointer;
}

.pilot-scope-preview pre {
  overflow: auto;
  max-height: 220px;
  margin: 0;
  padding: 0 14px 14px;
  color: var(--copy);
  font-family: inherit;
  font-size: 13px;
  line-height: 1.65;
  white-space: pre-wrap;
}

.pilot-proof-grid {
  display: grid;
  gap: 10px;
}

.pilot-proof-grid article {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(29, 29, 31, 0.075);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.pilot-proof-grid span {
  display: block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 880;
}

.pilot-proof-grid strong {
  display: block;
  margin-top: 7px;
  color: var(--heading);
  font-size: 23px;
  line-height: 1.15;
}

.pilot-proof-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.commercialization-steps article {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 10px 14px;
  align-items: start;
}

.commercialization-steps span {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 999px;
  background: var(--brand);
  color: white;
}

.commercialization-steps strong,
.commercialization-steps p {
  grid-column: 2;
  margin-top: 0;
}

.sponsor-package-grid article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 248, 250, 0.72));
}

.revenue-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 16px;
  align-items: start;
}

.revenue-list,
.sponsor-list {
  display: grid;
  gap: 10px;
}

.revenue-row,
.sponsor-row {
  display: grid;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.revenue-row {
  grid-template-columns: minmax(0, 1fr) 112px 112px;
}

.sponsor-row {
  grid-template-columns: minmax(0, 1fr) auto;
}

.revenue-row h3,
.sponsor-row h3 {
  margin: 0 0 6px;
  color: var(--heading);
}

.revenue-row p,
.sponsor-row p,
.sponsor-row small {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.revenue-row span,
.sponsor-row span:not(.pill) {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.revenue-row strong,
.sponsor-row strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

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

.monetization-playbook article {
  padding: 18px;
  border: 1px solid var(--glass-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: saturate(170%) blur(22px);
}

.monetization-playbook span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.monetization-playbook p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 1080px) {
  .board-scorecard {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-event-row {
    grid-template-columns: 1fr;
  }

  .admin-actions {
    justify-self: stretch;
    width: 100%;
  }
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
  vertical-align: top;
}

th {
  background: #f8fafc;
  color: #475569;
  font-size: 13px;
}

@media (max-width: 860px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
    align-items: center;
    padding: 12px 12px 10px;
    overflow: hidden;
  }

  .brand {
    min-width: 0;
    font-size: 18px;
  }

  .brand img {
    width: 40px;
    height: 30px;
    border-radius: 6px;
  }

  .brand b {
    font-size: 14px;
  }

  .brand small {
    font-size: 12px;
  }

  nav {
    display: none;
  }

  nav a {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 8px 12px;
    border: 1px solid rgba(29, 29, 31, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    white-space: nowrap;
  }

  .account {
    justify-content: flex-end;
    min-width: 0;
    font-size: 14px;
  }

  .account-name {
    max-width: 7em;
    overflow: hidden;
    padding: 8px 6px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .account .button,
  .topbar button {
    min-height: 34px;
    padding: 0 10px;
  }

  main {
    width: min(100% - 16px, 1180px);
    padding: 14px 0 88px;
  }

  h1 {
    font-size: clamp(30px, 9.5vw, 42px);
    line-height: 1.08;
  }

  .button {
    min-height: 44px;
    padding: 0 15px;
  }

  .nccu-demo-home {
    gap: 16px;
    padding-top: 4px;
  }

  .nccu-hero {
    min-height: 520px;
  }

  .nccu-hero-art {
    object-position: 42% center;
    opacity: 0.58;
  }

  .nccu-hero-copy {
    min-height: inherit;
    align-content: end;
    padding: 28px 20px 32px;
  }

  .nccu-hero-copy h1 {
    max-width: 8.6em;
    font-size: clamp(42px, 13vw, 54px);
    line-height: 1.02;
  }

  .nccu-hero-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.62;
  }

  .nccu-hero .gateway-actions .button {
    width: 100%;
  }

  .nccu-hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
  }

  .nccu-hero-proof div {
    padding: 11px 12px;
  }

  .nccu-hero-proof b {
    font-size: 20px;
  }

  .login-shell {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
    padding: 4px 0 18px;
  }

  .login-brand-panel {
    min-height: auto;
    padding: 28px 20px 22px;
  }

  .login-brand-art {
    object-position: 42% center;
    opacity: 0.62;
  }

  .login-stage {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
  }

  .login-brand-copy {
    align-self: end;
  }

  .login-brand-copy h1 {
    font-size: clamp(44px, 14vw, 58px);
    line-height: 1;
  }

  .login-brand-copy p:not(.eyebrow) {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.58;
  }

  .login-brand-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
  }

  .login-brand-proof div {
    padding: 10px 9px;
  }

  .login-brand-proof strong {
    font-size: 17px;
  }

  .login-card {
    padding: 24px 18px;
  }

  .login-card-head h2 {
    margin-bottom: 18px;
    font-size: 34px;
  }

  .login-quick {
    grid-template-columns: 1fr;
  }

  .login-access-panel {
    padding: 12px;
  }

  .login-support {
    align-items: flex-start;
    flex-direction: column;
  }

  .toast-region {
    right: 12px;
    bottom: 92px;
    left: 12px;
    width: auto;
  }

  .detail,
  .grid,
  .gateway-hero-grid,
  .event-hub-hero,
  .featured-event,
  .featured-meta,
  .line-entry-card,
  .line-demo-shell,
  .line-flow-map,
  .pass-hero,
  .event-pass,
  .pass-facts,
  .event-filter,
  .facts,
  .profile-layout,
  .profile-stat-grid,
  .steps,
  .form-grid,
  .preview-split,
  .image-tool-grid,
  .admin-summary,
  .admin-toolbar,
  .global-search-grid,
  .admin-hero,
  .admin-ops-strip,
  .ops-command-center,
  .today-hero,
  .today-command-panel,
  .today-card-strip,
  .today-priority-queue,
  .priority-list article,
  .today-metric-row,
  .today-lanes,
  .today-task-list article,
  .today-task-list.compact,
  .today-demo-strip,
  .test-scenario-strip,
  .admin-event-row,
  .admin-event-main,
  .member-lifecycle-board,
  .member-command-center,
  .member-onboarding-system,
  .distribution-steps article,
  .member-segment-grid,
  .quality-list,
  .quality-list article,
  .governance-score,
  .governance-metrics,
  .governance-grid,
  .permission-list article,
  .readiness-score-card,
  .adoption-readiness,
  .adoption-grid,
  .e2e-proof-board,
  .e2e-proof-steps,
  .readiness-grid,
  .demo-script,
  .demo-stage,
  .presentation-beats,
  .demo-proof-strip,
  .demo-story-hero,
  .demo-story-metrics,
  .demo-runway article,
  .demo-close-panel,
  .revenue-command-center,
  .sponsor-value-board,
  .sponsor-value-grid,
  .commercialization-map,
  .pilot-close-kit,
  .commercialization-steps article,
  .pilot-proof-grid,
  .sponsor-package-grid,
  .revenue-grid,
  .revenue-row,
  .sponsor-row,
  .monetization-playbook,
  .value-strip,
  .role-lanes,
  .truth-system,
  .truth-map,
  .demo-tours,
  .local-demo-console,
  .trust-layer,
  .tour-grid,
  .demo-role-grid,
  .event-decision-panel,
  .event-status-bar,
  .event-journey,
  .ops-queue-list article,
  .today-board,
  .task-grid,
  .scenario-metrics,
  .join-layout,
  .member-admin-grid,
  .member-search-bar,
  .member-create-form,
  .member-edit-form,
  .member-directory-row summary,
  .member-application,
  .assist-list article,
  .mini-row,
  .risk-list,
  .board-briefing,
  .board-roadmap,
  .board-scorecard,
  .event-flow-strip,
  .executive-metrics,
  .council-snapshot,
  .line-reframe,
  .operating-model,
  .snapshot-grid,
  .reframe-grid {
    grid-template-columns: 1fr;
  }

  .investment-case,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .member-directory-tabs a {
    flex: 1 1 calc(50% - 8px);
    padding: 0 10px;
  }

  .member-directory-tabs strong {
    font-size: 14px;
  }

  .member-search-bar .button {
    width: 100%;
  }

  .system-gateway {
    gap: 16px;
    min-height: auto;
    align-content: start;
    padding: 10px 0 18px;
  }

  .gateway-head {
    padding: 8px 2px 0;
  }

  .gateway-head h1 {
    margin-bottom: 14px;
    font-size: 39px;
    line-height: 1.02;
  }

  .gateway-head > p:last-child {
    font-size: 17px;
    line-height: 1.62;
  }

  .gateway-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .gateway-actions .button,
  .gateway-command-card .button {
    width: 100%;
  }

  .gateway-command-card {
    gap: 13px;
    padding: 18px;
  }

  .gateway-command-card > strong {
    font-size: 24px;
  }

  .gateway-proof-list div {
    padding: 12px;
  }

  .gateway-proof-list b {
    font-size: 20px;
  }

  .value-strip div,
  .truth-map div {
    min-height: auto;
    padding: 16px;
  }

  .value-strip strong {
    font-size: 17px;
  }

  .role-lanes article {
    min-height: auto;
    padding: 20px;
  }

  .role-lanes h2 {
    font-size: 28px;
  }

  .role-lanes .button,
  .tour-grid .button,
  .event-card-actions .button {
    width: 100%;
  }

  .event-hub-hero {
    min-height: 460px;
    gap: 14px;
    align-content: end;
    padding: 26px 20px 28px;
  }

  .event-hub-art {
    object-position: 42% center;
    opacity: 0.72;
  }

  .event-hub-hero h1 {
    max-width: 7em;
    font-size: clamp(46px, 15vw, 60px);
    line-height: 1.02;
  }

  .event-hub-hero p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.62;
  }

  .event-hub-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
  }

  .event-hub-proof div {
    padding: 10px;
  }

  .event-hub-proof strong {
    font-size: 20px;
  }

  .event-hub-proof span {
    font-size: 11px;
  }

  .event-decision-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding-bottom: 2px;
  }

  .event-decision-rail::-webkit-scrollbar {
    display: none;
  }

  .event-decision-rail a {
    min-width: 0;
    padding: 13px;
  }

  .event-decision-rail strong {
    font-size: 25px;
  }

  .event-filter {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .event-browser-bar {
    padding: 10px;
  }

  .event-browser-bar .event-filter {
    padding: 0;
  }

  .event-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .event-tabs a {
    flex: 0 0 auto;
  }

  .event-flow-strip article {
    padding: 13px;
  }

  .event-grid {
    gap: 10px;
  }

  .event-grid .event-card {
    grid-template-columns: 96px minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: stretch;
    border-radius: 12px;
  }

  .event-grid .event-card .cover {
    width: 100%;
    min-height: 100%;
    aspect-ratio: auto !important;
  }

  .event-grid .event-card .card-body {
    gap: 8px;
    padding: 12px;
  }

  .event-grid .event-card h3 {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 0;
    font-size: 19px;
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .event-grid .event-card p {
    display: none;
  }

  .event-grid .event-chip-row {
    gap: 5px;
    margin: 2px 0;
  }

  .event-grid .event-chip-row span {
    min-height: 24px;
    padding: 4px 8px;
    font-size: 11px;
  }

  .event-grid .event-card-brief {
    display: none;
  }

  .event-grid .event-chip-row span:nth-child(n + 3) {
    display: none;
  }

  .event-grid .event-card-sponsor {
    display: none;
  }

  .event-grid .event-card-actions {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    margin-top: 4px;
  }

  .event-grid .event-card-actions .button:first-child {
    grid-column: auto;
  }

  .event-grid .event-card-actions .button:last-child {
    display: none;
  }

  .event-grid .event-card-meter {
    margin-top: 0;
  }

  .board-briefing,
  .board-roadmap {
    gap: 16px;
    padding: 20px;
  }

  .briefing-copy h2,
  .board-roadmap h2 {
    font-size: 28px;
  }

  .board-scorecard {
    gap: 8px;
  }

  .board-scorecard article {
    padding: 15px;
  }

  .demo-story-hero {
    gap: 16px;
    padding: 24px 18px;
  }

  .demo-stage {
    gap: 18px;
    min-height: auto;
    padding: 26px 18px;
  }

  .demo-stage h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  .demo-stage p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.58;
  }

  .demo-stage-actions .button,
  .demo-close-actions .button {
    width: 100%;
  }

  .presenter-console {
    padding: 16px;
  }

  .presenter-console strong {
    font-size: 50px;
  }

  .presentation-beats article,
  .demo-proof-strip article {
    padding: 14px;
  }

  .demo-story-hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .demo-story-score strong {
    font-size: 46px;
  }

  .demo-runway article {
    align-items: start;
  }

  .demo-runway .button {
    width: 100%;
  }

  .today-hero {
    gap: 16px;
    align-content: end;
    min-height: 360px;
    padding: 26px 20px 28px;
    background-position: 42% center;
  }

  .today-hero h1 {
    max-width: 7.5em;
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1.04;
  }

  .today-focus strong {
    font-size: 46px;
  }

  .ops-command-center,
  .ops-command-center.simplified {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 12px 0 4px;
  }

  .ops-command-center.simplified .ops-pulse-card {
    display: none;
  }

  .ops-brief-card {
    min-height: auto;
    padding: 16px;
  }

  .ops-brief-card strong {
    font-size: 25px;
    line-height: 1.18;
  }

  .ops-brief-card p {
    font-size: 16px;
    line-height: 1.55;
  }

  .ops-brief-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ops-brief-actions .button {
    width: 100%;
  }

  .today-lanes section,
  .today-priority-queue,
  .today-demo-strip {
    padding: 16px;
  }

  .admin-ops-strip div,
  .today-metric-row div {
    border-right: 0;
    border-bottom: 1px solid var(--glass-line);
  }

  .admin-ops-strip div:last-child,
  .today-metric-row div:last-child {
    border-bottom: 0;
  }

  .today-command-summary .button {
    width: 100%;
  }

  .today-command-panel,
  .today-command-panel .today-priority-queue {
    grid-template-columns: 1fr;
  }

  .today-priority-queue > div > p:not(.eyebrow) {
    display: none;
  }

  .priority-list article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
  }

  .priority-list p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .priority-list article > span {
    width: 30px;
  }

  .priority-list .button {
    grid-column: 2;
    justify-self: stretch;
    width: 100%;
  }

  .checkin-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .checkin-panel,
  .checkin-ready-list {
    padding: 16px;
  }

  .today-task-list .button {
    width: 100%;
  }

  .adoption-readiness {
    gap: 14px;
    padding: 18px;
  }

  .adoption-readiness h2 {
    font-size: 28px;
  }

  .adoption-score {
    padding: 15px;
  }

  .adoption-score strong {
    font-size: 46px;
  }

  .adoption-grid > article {
    padding: 14px;
  }

  .e2e-proof-board {
    gap: 16px;
    padding: 18px;
  }

  .e2e-proof-summary h2 {
    font-size: 28px;
  }

  .e2e-proof-summary p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.62;
  }

  .e2e-proof-score {
    width: 100%;
    padding: 14px;
  }

  .e2e-proof-score strong {
    font-size: 46px;
  }

  .e2e-proof-steps a {
    padding: 14px;
  }

  .member-onboarding-system {
    gap: 14px;
    padding: 18px;
  }

  .member-onboarding-system h2 {
    font-size: 28px;
  }

  .distribution-steps article {
    gap: 10px;
    padding: 12px;
  }

  .distribution-steps article > span {
    width: 30px;
  }

  .distribution-steps small {
    grid-column: 2;
    justify-self: start;
  }

  .distribution-steps p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .sponsor-value-board,
  .commercialization-map,
  .pilot-close-kit {
    gap: 16px;
    padding: 18px;
  }

  .sponsor-value-board h2,
  .commercialization-map h2,
  .pilot-close-kit h2 {
    font-size: 28px;
  }

  .sponsor-value-grid article,
  .commercialization-steps article,
  .pilot-proof-grid article {
    padding: 14px;
  }

  .sponsor-value-grid strong,
  .commercialization-steps strong,
  .pilot-proof-grid strong {
    font-size: 21px;
  }

  .admin-event-row {
    gap: 12px;
    padding: 14px;
    overflow: visible;
  }

  .admin-event-main {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .event-date {
    width: 46px;
    height: 54px;
  }

  .event-date span {
    font-size: 11px;
  }

  .event-date strong {
    font-size: 22px;
  }

  .row-title {
    gap: 6px 8px;
  }

  .row-title h3 {
    flex: 1 1 100%;
    font-size: 20px;
    line-height: 1.22;
    white-space: normal;
  }

  .admin-event-main p,
  .event-signal p {
    overflow-wrap: anywhere;
  }

  .admin-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-self: stretch;
    width: 100%;
  }

  .admin-actions .button,
  .admin-actions summary {
    min-height: 42px;
    padding-inline: 8px;
    font-size: 15px;
  }

  .admin-actions .action-menu {
    grid-column: 1 / -1;
  }

  .admin-actions .action-menu div {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
  }

  .featured-cover {
    width: 100%;
    min-height: 0;
    aspect-ratio: 2.15 / 1 !important;
    height: auto;
    border-radius: 0 !important;
  }

  .featured-copy {
    gap: 10px;
    padding: 14px;
  }

  .featured-copy h2 {
    max-width: 12em;
    font-size: 24px;
    line-height: 1.12;
  }

  .featured-copy > p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.58;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .featured-meta {
    grid-template-columns: 1fr;
    gap: 6px;
    border: 0;
    background: transparent;
  }

  .featured-meta div {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
    padding: 8px 0;
    border-top: 1px solid rgba(29, 29, 31, 0.07);
    background: transparent;
  }

  .featured-meta strong {
    margin-top: 0;
    font-size: 14px;
  }

  .featured-progress {
    display: none;
  }

  .featured-sponsor {
    justify-self: stretch;
    border-radius: 8px;
    padding: 6px 10px 6px 6px;
  }

  .featured-sponsor .sponsor-mark.small {
    width: 36px;
  }

  .featured-sponsor span {
    white-space: normal;
  }

  .featured-copy .actions .button.secondary {
    display: none;
  }

  .line-entry-card {
    align-items: stretch;
    padding: 16px;
  }

  .line-entry-card .button {
    width: 100%;
  }

  .line-demo-shell {
    gap: 18px;
    padding: 14px;
  }

  .line-phone {
    max-width: none;
    border-radius: 26px;
  }

  .line-demo-copy h1 {
    font-size: 33px;
  }

  .line-demo-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .pass-hero {
    min-height: 390px;
    gap: 14px;
    align-content: end;
    padding: 26px 20px 28px;
    background-position: 42% center;
  }

  .invite-hero {
    min-height: 380px;
    grid-template-columns: 1fr;
    gap: 14px;
    align-content: end;
    padding: 26px 20px 28px;
    background-position: 42% center;
  }

  .pass-hero h1 {
    max-width: 7em;
    font-size: clamp(42px, 13vw, 56px);
    line-height: 1.02;
  }

  .invite-hero h1 {
    max-width: 7em;
    font-size: clamp(42px, 13vw, 56px);
    line-height: 1.02;
  }

  .pass-hero p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.62;
  }

  .invite-hero p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.62;
  }

  .pass-summary {
    padding: 15px;
  }

  .invite-summary {
    padding: 15px;
  }

  .invite-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .invite-card h3 {
    font-size: 23px;
  }

  .invite-url {
    margin: 12px 0;
    font-size: 12px;
  }

  .invite-meta {
    grid-template-columns: 1fr;
  }

  .invite-actions {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .invite-actions .button {
    width: 100%;
  }

  .pass-wallet-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .pass-wallet-strip article {
    padding: 13px;
  }

  .pass-next-card {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 15px;
  }

  .pass-next-card .button {
    width: 100%;
  }

  .pass-cover {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9 !important;
    height: auto;
    border-radius: 14px 14px 0 0 !important;
    background-size: cover !important;
    background-position: center 45% !important;
    filter: saturate(0.98) contrast(1.02);
  }

  .pass-cover::after {
    background:
      linear-gradient(180deg, rgba(5, 16, 39, 0.04), rgba(5, 16, 39, 0.18) 56%, rgba(255, 255, 255, 0.5)),
      linear-gradient(135deg, rgba(29, 101, 216, 0.18), transparent 46%);
  }

  .pass-main {
    gap: 11px;
    padding: 18px 18px 14px;
  }

  .pass-main h3 {
    font-size: 21px;
    line-height: 1.15;
  }

  .pass-meta {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pass-meta div {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 7px 0;
    border-top: 1px solid rgba(29, 29, 31, 0.07);
    background: transparent;
  }

  .pass-meta strong {
    margin-top: 0;
    font-size: 14px;
  }

  .pass-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .pass-actions .button {
    width: 100% !important;
    min-width: 0;
    min-height: 38px;
    padding-inline: 8px;
    font-size: 13px;
    white-space: normal;
  }

  .pass-actions .danger {
    grid-column: 1 / -1;
    justify-self: center;
    width: auto !important;
    min-height: 30px;
  }

  .pass-secondary-actions {
    text-align: center;
  }

  .pass-code {
    gap: 7px;
    order: 2;
    margin: 0 18px 18px;
    padding: 14px;
    border: 1px solid rgba(29, 101, 216, 0.14);
    border-left: 0;
    border-radius: 14px;
    background:
      radial-gradient(circle at 50% 0%, rgba(242, 197, 124, 0.13), transparent 42%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.94));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  }

  .pass-code::before,
  .pass-code::after {
    display: none;
  }

  .pass-code strong {
    padding: 11px 10px;
    font-size: 20px;
  }

  .pass-code p {
    font-size: 12px;
    line-height: 1.35;
  }

  .pass-code .button {
    min-height: 38px;
  }

  .truth-system,
  .demo-tours,
  .local-demo-console,
  .trust-layer {
    gap: 16px;
    padding: 20px 0;
  }

  .truth-system {
    padding: 20px;
  }

  .demo-tours h2,
  .trust-layer h2,
  .truth-system h2 {
    font-size: 28px;
  }

  .tour-grid article,
  .trust-grid article,
  .demo-control-panel {
    padding: 18px;
  }

  .demo-role {
    min-height: auto;
  }

  .mobile-dock {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: saturate(180%) blur(24px);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.16);
  }

  .mobile-dock a {
    display: grid;
    place-items: center;
    min-height: 42px;
    padding: 0;
    border-radius: 10px;
    color: var(--copy);
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-dock a:hover,
  .mobile-dock a:focus-visible {
    background: rgba(0, 102, 204, 0.1);
    color: var(--brand);
  }

  .mobile-dock a.active {
    background: var(--brand);
    color: white;
    box-shadow: 0 12px 24px rgba(0, 102, 204, 0.24);
  }

  .mobile-action-bar {
    position: fixed;
    right: 10px;
    bottom: 78px;
    left: 10px;
    z-index: 45;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: saturate(180%) blur(24px);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
  }

  .mobile-action-bar span,
  .mobile-action-bar strong {
    display: block;
  }

  .mobile-action-bar span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
  }

  .mobile-action-bar strong {
    overflow: hidden;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.28;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-action-bar .button {
    width: auto;
    min-width: 104px;
    white-space: nowrap;
  }

  .event-detail {
    padding-bottom: 150px;
  }

  .executive-hero {
    min-height: auto;
    padding: 30px 18px 24px;
  }

  .executive-hero > p {
    font-size: 17px;
  }

  .demo-ribbon {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1.45;
  }

  .model-rows div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .admin-actions {
    grid-template-columns: 1fr;
    justify-self: stretch;
    width: 100%;
  }

  .admin-actions .action-menu {
    width: 100%;
  }

  .action-menu {
    position: static;
  }

  .action-menu summary {
    width: 100%;
  }

  .action-menu div {
    position: static;
    left: 0;
    right: auto;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
  }

  .image-tool-head {
    align-items: stretch;
    flex-direction: column;
  }

  .field-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .form-title-row,
  .row-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-title-row .button,
  .row-actions .button {
    width: 100%;
  }

  .row-card,
  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .cover.large {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .event-visual {
    position: static;
  }

  .event-visual .sponsor-card {
    display: none;
  }

  .event-primary {
    gap: 14px;
  }

  .event-title-block h1 {
    font-size: 30px;
    line-height: 1.1;
  }

  .event-title-block p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.62;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .event-decision-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    overflow: visible;
    margin-inline: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .event-decision-panel::-webkit-scrollbar {
    display: none;
  }

  .event-decision-panel article {
    display: grid;
    gap: 4px;
    padding: 13px;
    border: 1px solid rgba(29, 29, 31, 0.08);
    background: rgba(255, 255, 255, 0.74);
  }

  .event-decision-panel strong {
    font-size: 18px;
  }

  .event-decision-panel p {
    display: block;
    overflow: visible;
  }

  .event-status-bar {
    display: none;
  }

  .event-journey {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .event-journey div {
    grid-template-columns: 12px minmax(0, 1fr);
    gap: 6px 10px;
    padding: 12px;
  }

  .event-journey span {
    grid-row: 1 / span 2;
    margin-top: 4px;
  }

  .event-journey p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .refined-facts div {
    padding: 12px 0;
  }

  .event-info-section h2 {
    font-size: 20px;
  }

  .content-note h2 {
    font-size: 20px;
  }

  .card-body,
  .panel {
    padding: 16px;
  }

  .event-card .cover {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .event-card .card-body {
    padding: 14px;
  }

  .event-card h3 {
    margin-bottom: 6px;
    font-size: 21px;
  }

  .event-card p {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 10px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .event-card-brief {
    grid-template-columns: 1fr;
  }

  .event-card-brief strong {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .event-card-sponsor {
    justify-self: stretch;
    border-radius: 8px;
  }

  .event-card-sponsor strong {
    white-space: normal;
  }

  .event-card dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    margin: 10px 0 12px;
    border: 1px solid var(--glass-line);
    border-radius: 8px;
    background: rgba(29, 29, 31, 0.06);
  }

  .event-card dl div {
    min-width: 0;
    padding: 9px;
    background: rgba(255, 255, 255, 0.76);
  }

  .event-card dt {
    font-size: 12px;
  }

  .event-card dd {
    overflow: hidden;
    margin: 3px 0 0;
    font-size: 13px;
    line-height: 1.35;
    text-overflow: ellipsis;
  }

  .event-card-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .event-card-actions .button:first-child {
    grid-column: 1 / -1;
  }

  .event-card .button,
  .stack .button,
  .panel .button,
  .task-grid .button {
    width: 100%;
  }

  .event-grid .event-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    border-radius: 12px;
  }

  .event-grid .event-card .cover {
    width: 100%;
    min-height: 0;
    aspect-ratio: 2.75 / 1 !important;
    height: auto;
  }

  .event-grid .event-card .card-body {
    gap: 8px;
    padding: 12px;
  }

  .event-grid .event-card h3 {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 0;
    font-size: 19px;
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .event-grid .event-card p {
    display: none;
  }

  .event-grid .event-card-brief {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border: 0;
    background: transparent;
  }

  .event-grid .event-card-brief div {
    padding: 7px 0;
    border-top: 1px solid rgba(29, 29, 31, 0.06);
    background: transparent;
  }

  .event-grid .event-card-brief div:nth-child(3) {
    grid-column: 1 / -1;
  }

  .event-grid .event-card-brief span {
    font-size: 11px;
  }

  .event-grid .event-card-brief strong {
    font-size: 13px;
    white-space: normal;
  }

  .detail {
    gap: 12px;
  }

  .admin-hero {
    gap: 16px;
    min-height: 360px;
    align-content: end;
    padding: 26px 20px 28px;
    background-position: 42% center;
  }

  .admin-hero h1 {
    max-width: 7.6em;
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1.04;
  }

  .admin-hero .actions,
  .actions {
    width: 100%;
  }

  .admin-simple-actions {
    max-width: none;
    padding: 10px;
  }

  .admin-hero .button,
  .actions .button {
    flex: 1 1 100%;
    width: 100%;
  }

  .profile-badge {
    justify-items: start;
    width: 100%;
  }

  .profile-badge span {
    width: 58px;
    font-size: 28px;
  }

  .alumni-card {
    min-height: 430px;
    padding: 22px;
    background-position: 44% center;
  }

  .alumni-card-top,
  .alumni-card-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .alumni-card-name {
    margin: 36px 0 30px;
  }

  .alumni-card-name h2 {
    font-size: clamp(46px, 15vw, 64px);
  }

  .alumni-card-details {
    grid-template-columns: 1fr;
  }

  .alumni-card-details strong {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .alumni-card-bottom code {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 16px;
  }

  .test-scenario-strip {
    gap: 12px;
    padding: 16px 0;
  }

  .ops-command-center {
    gap: 10px;
    margin: 14px 0 4px;
  }

  .ops-health-card,
  .ops-brief-card,
  .ops-pulse-card {
    padding: 16px;
  }

  .ops-health-card strong {
    font-size: 46px;
  }

  .ops-brief-actions .button {
    width: 100%;
  }

  .test-scenario-strip h2 {
    font-size: 28px;
  }

  .scenario-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .scenario-metrics article {
    padding: 14px;
  }

  .scenario-metrics strong {
    font-size: 24px;
  }

  .admin-summary div {
    padding: 14px;
  }

  .today-board {
    gap: 14px;
    padding: 18px 0;
  }

  .today-board h2 {
    font-size: 29px;
  }

  .task-grid article {
    padding: 16px;
  }

  .event-status-bar {
    margin: 14px 0;
    gap: 8px;
  }

  .event-decision-panel {
    gap: 8px;
    padding: 8px;
  }

  .event-decision-panel article {
    padding: 12px;
  }

  .event-status-bar div {
    padding: 12px;
  }

  .event-journey {
    gap: 1px;
  }

  .event-journey div {
    padding: 13px;
  }

  .partner-head {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
  }

  .partner-head .sponsor-mark {
    width: 58px;
  }

  .partner-head h2 {
    font-size: 22px;
  }

  .partner-link {
    justify-self: stretch;
  }

  .ops-queue-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .ops-queue-list article {
    align-items: stretch;
  }

  .help-card,
  .registration-panel {
    padding: 16px;
  }

  .admin-toolbar {
    padding: 12px;
  }

  .join-hero {
    min-height: auto;
    padding: 26px 20px 28px;
    background-position: 42% center;
  }

  .join-stage {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .join-copy h1 {
    max-width: 7em;
    font-size: clamp(42px, 13vw, 56px);
    line-height: 1.02;
  }

  .join-copy p:not(.eyebrow) {
    display: -webkit-box;
    overflow: hidden;
    font-size: 17px;
    line-height: 1.58;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .join-form {
    padding: 20px 16px;
  }

  .join-form .form-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .join-form .form-title-row .button {
    width: 100%;
  }

  .onboarding-principles article,
  .member-application,
  .mini-row,
  .account-row {
    padding: 16px;
  }

  .member-application .button {
    width: 100%;
  }

  .member-application {
    gap: 14px;
  }

  .member-application .row-actions {
    width: 100%;
  }

  .application-meta,
  .application-contact {
    gap: 7px;
  }

  .application-meta span,
  .application-contact span {
    border-radius: 8px;
    font-size: 12px;
  }

  input,
  select,
  textarea {
    min-height: 44px;
    font-size: 16px;
  }

  .table-wrap {
    margin-inline: -8px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .export-actions {
    justify-content: stretch;
  }

  .export-actions .button {
    width: 100%;
  }

  .export-readiness {
    grid-template-columns: 1fr;
  }

  .notification-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  body::after {
    opacity: 0.35;
    background-size: 34px 34px;
  }

  .topbar {
    position: sticky;
  }

  .demo-ribbon span {
    max-width: 36em;
  }

  .section,
  .panel {
    margin-top: 14px;
  }

  .section h1,
  .panel h1 {
    font-size: 30px;
  }

  .executive-metrics div,
  .snapshot-grid div,
  .reframe-grid article,
  .risk-list article,
  .ops-health-card,
  .ops-brief-card,
  .ops-pulse-card,
  .board-scorecard article,
  .briefing-memo article,
  .roadmap-track article,
  .event-flow-strip article {
    padding: 16px;
  }

  .executive-metrics span {
    font-size: 28px;
  }

  .event-status-bar strong,
  .task-grid strong {
    font-size: 17px;
  }

  .council-snapshot,
  .line-reframe,
  .operating-model,
  .board-briefing,
  .board-roadmap {
    gap: 18px;
    padding: 24px 0;
  }

  .council-snapshot h2,
  .line-reframe h2,
  .operating-model h2,
  .briefing-copy h2,
  .board-roadmap h2 {
    font-size: 30px;
  }

  .board-briefing,
  .board-roadmap {
    padding: 18px;
  }

  .board-scorecard strong {
    font-size: 28px;
  }

  .event-hub-hero h1 {
    max-width: 7em;
    font-size: clamp(44px, 14vw, 56px);
  }

  .featured-meta,
  .event-card dl {
    grid-template-columns: 1fr;
  }

  .row-card {
    padding: 16px;
  }

  .pill {
    max-width: 100%;
    white-space: normal;
  }
}
