:root {
  color-scheme: light;
  --navy: #061525;
  --ink: #102033;
  --blue: #0076b6;
  --cyan: #35d7ff;
  --gold: #e8b85b;
  --green: #2fbf8d;
  --paper: #f3f7fb;
  --white: #ffffff;
  --muted: #647488;
  --line: #d8e2ec;
  --shadow: 0 24px 64px rgba(6, 21, 37, 0.18);
  --font-display: "Poppins", "Aptos Display", "Segoe UI", Arial, sans-serif;
  --font-body: "Lora", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.qcl-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(6, 21, 37, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.qcl-brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  width: 218px;
  text-decoration: none;
}

.qcl-brand img {
  width: 100%;
  height: 44px;
  object-fit: contain;
}

.qcl-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  font-family: var(--font-display);
}

.qcl-nav::-webkit-scrollbar {
  display: none;
}

.qcl-nav a,
.qcl-operator,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

.qcl-nav a {
  color: rgba(255, 255, 255, 0.82);
}

.qcl-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.qcl-operator {
  flex: 0 0 auto;
  color: var(--white);
  background: rgba(0, 118, 182, 0.28);
  border-color: rgba(53, 215, 255, 0.44);
}

.qcl-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.qcl-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 21, 37, 0.96) 0%, rgba(6, 21, 37, 0.82) 48%, rgba(6, 21, 37, 0.22) 100%),
    linear-gradient(0deg, rgba(6, 21, 37, 0.94) 0%, rgba(6, 21, 37, 0.1) 52%),
    url("assets/mainstage-global-panel-portal-1920-v2.4.jpg") center / cover no-repeat;
}

.qcl-hero-content {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 980px;
  font-size: 72px;
  line-height: 0.98;
}

h2 {
  max-width: 940px;
  font-size: 44px;
  line-height: 1.06;
}

h3 {
  font-size: 21px;
  line-height: 1.16;
}

p {
  line-height: 1.58;
}

.hero-copy {
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
}

.hero-actions,
.proof-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  min-height: 46px;
  padding: 13px 18px;
  font-size: 13px;
}

.button.primary {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.24);
}

.public-band .button.secondary,
.proof .button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 920px;
  margin-top: 44px;
}

.hero-metrics article,
.intro-grid article,
.capability-grid article,
.knowledge-grid article,
.program-grid article,
.division-card {
  border-radius: 8px;
}

.hero-metrics article {
  min-height: 112px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-metrics strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.public-band {
  padding: 88px clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.intro-grid,
.capability-grid,
.knowledge-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.capability-grid,
.knowledge-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.intro-grid article,
.capability-grid article,
.knowledge-grid article {
  min-height: 220px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(6, 21, 37, 0.08);
}

.intro-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--blue);
  font-family: var(--font-display);
  font-weight: 900;
}

.intro-grid p,
.capability-grid p,
.knowledge-grid p,
.division-card p {
  color: var(--muted);
}

.divisions {
  background: var(--white);
}

.division-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.division-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 16px;
  background: #f8fbff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 46px rgba(6, 21, 37, 0.09);
}

.division-card > img {
  width: 176px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
}

.division-card figure {
  height: 178px;
  margin: 18px 0 20px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
}

.division-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.division-card a {
  margin-top: auto;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.government {
  background: #eef5fb;
}

.capability-grid article:nth-child(1) {
  border-top: 4px solid var(--gold);
}

.capability-grid article:nth-child(2) {
  border-top: 4px solid var(--cyan);
}

.capability-grid article:nth-child(3) {
  border-top: 4px solid var(--green);
}

.capability-grid article:nth-child(4) {
  border-top: 4px solid var(--blue);
}

.conference {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.conference-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 21, 37, 0.96) 0%, rgba(6, 21, 37, 0.72) 54%, rgba(6, 21, 37, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 21, 37, 0.88) 0%, rgba(6, 21, 37, 0.12) 48%),
    url("assets/aqcc-mainstage-key-visual-v3.9.jpg") center / cover no-repeat;
}

.conference-content {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0;
}

.conference-content h2 {
  max-width: 920px;
  color: var(--white);
}

.conference-content > p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1020px;
  margin: 30px 0 20px;
}

.program-grid article {
  min-height: 138px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.program-grid strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 24px;
}

.program-grid span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.roundtable-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1040px;
  margin: 22px 0 26px;
}

.roundtable-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 11px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(0, 118, 182, 0.3);
  border: 1px solid rgba(53, 215, 255, 0.35);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
}

.agenda-take-home-bible {
  background: #f8fbff;
}

.agenda-metrics {
  width: min(1120px, 100%);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.agenda-metrics article {
  min-height: 118px;
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(6, 21, 37, 0.08);
}

.agenda-metrics strong {
  display: block;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
}

.agenda-metrics article:nth-child(4) strong,
.agenda-metrics article:nth-child(5) strong {
  color: var(--gold);
}

.agenda-metrics article:nth-child(6) strong {
  color: var(--green);
}

.agenda-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.agenda-day-grid {
  width: min(1120px, 100%);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.agenda-day-grid article {
  min-height: 250px;
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #061525 0%, #0b3f60 100%);
  border: 1px solid rgba(53, 215, 255, 0.26);
}

.agenda-day-grid article:nth-child(2) {
  background: linear-gradient(135deg, #061525 0%, #164a3e 100%);
}

.agenda-day-grid article:nth-child(3) {
  background: linear-gradient(135deg, #061525 0%, #42366a 100%);
}

.agenda-day-grid article:nth-child(4) {
  background: linear-gradient(135deg, #061525 0%, #6a4a12 100%);
}

.agenda-day-grid p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.agenda-track-cloud {
  width: min(1120px, 100%);
  margin: 0 auto 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.agenda-track-cloud span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 11px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
}

.agenda-proof {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.agenda-proof figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  border: 1px solid var(--line);
}

.agenda-proof figure img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.launch-media {
  background: #081a2c;
  color: var(--white);
}

.launch-media .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.media-feature {
  width: min(1120px, 100%);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 18px;
  align-items: stretch;
}

.media-feature video,
.media-grid video {
  width: 100%;
  display: block;
  border-radius: 8px;
  background: #020b16;
  border: 1px solid rgba(255, 255, 255, 0.18);
  object-fit: cover;
}

.media-feature video {
  aspect-ratio: 16 / 9;
}

.media-feature > div {
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.media-feature p:not(.eyebrow),
.media-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.media-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.media-grid article {
  display: flex;
  flex-direction: column;
  min-height: 356px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.media-grid video {
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
}

.media-grid h3 {
  font-size: 18px;
}

.speaker-faculty-radar {
  background: #f8fbff;
}

.radar-metrics {
  width: min(1120px, 100%);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.radar-metrics article {
  min-height: 116px;
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(6, 21, 37, 0.08);
}

.radar-metrics strong {
  display: block;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
}

.radar-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.radar-layout {
  width: min(1120px, 100%);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.radar-panel {
  min-height: 270px;
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #061525, #0b3f60);
  border: 1px solid rgba(53, 215, 255, 0.26);
}

.radar-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.radar-panel li {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.radar-proof {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.radar-proof figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  border: 1px solid var(--line);
}

.radar-proof figure img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.apollo-linkedin-import-pack {
  background: #081a2c;
  color: var(--white);
}

.apollo-linkedin-import-pack .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.apollo-metrics {
  width: min(1120px, 100%);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.apollo-metrics article {
  min-height: 118px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.apollo-metrics strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
}

.apollo-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.apollo-layout {
  width: min(1120px, 100%);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.apollo-layout article {
  min-height: 260px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.apollo-layout p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.apollo-proof {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.apollo-proof figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.apollo-proof figure img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.apollo-operator-runbook {
  background: #f4f8fc;
}

.operator-metrics {
  width: min(1120px, 100%);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.operator-metrics article {
  min-height: 118px;
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(6, 21, 37, 0.08);
}

.operator-metrics strong {
  display: block;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
}

.operator-metrics article:nth-child(4) strong,
.operator-metrics article:nth-child(5) strong {
  color: var(--gold);
}

.operator-metrics article:nth-child(6) strong {
  color: var(--green);
}

.operator-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.operator-layout {
  width: min(1120px, 100%);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.operator-layout article {
  min-height: 260px;
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #061525 0%, #0b3f60 100%);
  border: 1px solid rgba(53, 215, 255, 0.26);
}

.operator-layout article:nth-child(2) {
  background: linear-gradient(135deg, #061525 0%, #124a57 100%);
}

.operator-layout article:nth-child(3) {
  background: linear-gradient(135deg, #061525 0%, #164a3e 100%);
}

.operator-layout article:nth-child(4) {
  background: linear-gradient(135deg, #061525 0%, #6a4a12 100%);
}

.operator-layout p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.operator-proof {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.operator-proof figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  border: 1px solid var(--line);
}

.operator-proof figure img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.proof {
  background: var(--white);
}

.proof-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.proof-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--navy);
}

.proof-grid figure img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.proof-links {
  align-content: start;
  padding: 22px;
  border-radius: 8px;
  background: #eef5fb;
  border: 1px solid var(--line);
}

.proof-links .button {
  width: 100%;
}

.qcl-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
}

.qcl-footer a {
  color: var(--gold);
  text-decoration: none;
}

@media (max-width: 1120px) {
  .qcl-header {
    flex-wrap: wrap;
  }

  .qcl-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 38px;
  }

  .division-grid,
  .capability-grid,
  .knowledge-grid,
  .media-grid,
  .agenda-metrics,
  .agenda-day-grid,
  .radar-metrics,
  .apollo-metrics,
  .apollo-layout,
  .operator-metrics,
  .operator-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-feature,
  .agenda-proof,
  .radar-layout,
  .radar-proof,
  .apollo-proof,
  .operator-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .qcl-header {
    gap: 10px;
    padding: 12px 16px;
  }

  .qcl-brand {
    width: 180px;
  }

  .qcl-operator {
    margin-left: auto;
  }

  .qcl-hero {
    min-height: auto;
  }

  .qcl-hero-content {
    width: calc(100vw - 32px);
    padding: 72px 0 34px;
  }

  h1 {
    max-width: 360px;
    font-size: 34px;
    line-height: 1.06;
  }

  h2 {
    font-size: 30px;
    line-height: 1.1;
  }

  .hero-copy,
  .section-heading p:not(.eyebrow),
  .conference-content > p {
    font-size: 16px;
  }

  .hero-actions .button {
    width: min(100%, 350px);
  }

  .hero-metrics,
  .intro-grid,
  .division-grid,
  .capability-grid,
  .knowledge-grid,
  .media-feature,
  .media-grid,
  .agenda-metrics,
  .agenda-day-grid,
  .agenda-proof,
  .radar-metrics,
  .radar-layout,
  .radar-proof,
  .apollo-metrics,
  .apollo-layout,
  .apollo-proof,
  .operator-metrics,
  .operator-layout,
  .operator-proof,
  .program-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .public-band {
    padding: 58px 16px;
  }

  .division-card {
    min-height: 0;
  }

  .conference-content {
    width: calc(100vw - 32px);
    padding: 72px 0;
  }

  .qcl-footer {
    flex-direction: column;
    padding: 24px 16px;
  }
}
