:root {
  --bg: #08101d;
  --bg-soft: #12233a;
  --panel: rgba(9, 20, 36, 0.72);
  --panel-strong: rgba(11, 24, 42, 0.9);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f7f1e7;
  --muted: #aeb8c9;
  --accent: #f0c16b;
  --accent-soft: rgba(240, 193, 107, 0.15);
  --teal: #72d8c7;
  --coral: #ff9d84;
  --safe: #9ddb97;
  --match: #78c9ff;
  --reach: #f0c16b;
  --build: #ff9f8b;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(114, 216, 199, 0.1), transparent 32%),
    radial-gradient(circle at 80% 0%, rgba(240, 193, 107, 0.14), transparent 28%),
    linear-gradient(180deg, #08101d 0%, #0c1728 54%, #08101d 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(transparent 0 39px, rgba(255, 255, 255, 0.03) 39px 40px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025), transparent 45%);
  background-size: 100% 40px, 100% 100%;
  pointer-events: none;
  opacity: 0.5;
}

body[data-entry="note"] .intro-grid,
body[data-entry="note"] .library-panel,
body[data-entry="note"] .ops-panel {
  display: none;
}

body[data-entry="note"] .hero {
  padding-bottom: 18px;
}

.ambient {
  position: fixed;
  width: 34rem;
  height: 34rem;
  filter: blur(40px);
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.32;
}

.ambient-left {
  top: -10rem;
  left: -8rem;
  background: linear-gradient(135deg, rgba(240, 193, 107, 0.38), transparent 68%);
  animation: drift 12s ease-in-out infinite;
}

.ambient-right {
  top: 18rem;
  right: -12rem;
  background: linear-gradient(135deg, rgba(114, 216, 199, 0.28), transparent 65%);
  animation: drift 14s ease-in-out infinite reverse;
}

.score-lines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.08), transparent 0.5rem),
    radial-gradient(circle at 70% 62%, rgba(255, 255, 255, 0.06), transparent 0.45rem),
    radial-gradient(circle at 38% 78%, rgba(255, 255, 255, 0.05), transparent 0.45rem);
}

.hero,
.shell,
.footer {
  position: relative;
  z-index: 1;
}

.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 24px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
}

.channel-banner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 16px auto 0;
  padding: 0 24px;
}

.channel-banner-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(240, 193, 107, 0.1);
  border: 1px solid rgba(240, 193, 107, 0.25);
  color: var(--text);
}

.channel-banner-inner p {
  margin: 0;
  color: var(--text);
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.source-strip,
.ops-tags,
.tracking-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.source-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(114, 216, 199, 0.09);
  border: 1px solid rgba(114, 216, 199, 0.24);
  color: #bff3e9;
  font-size: 0.82rem;
}

.eyebrow,
.panel-kicker,
.intro-label,
.stat-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.hero-copy h1 {
  margin: 12px 0 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  max-width: 10ch;
}

.hero-text,
.panel-head p,
.intro-card p,
.signal-item p,
.field span,
.form-note,
.section-subtitle,
.stack-note,
.footer p,
.school-copy p,
.library-card p,
.plan-copy p {
  color: var(--muted);
}

.hero-text {
  max-width: 42rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

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

.anchor-button {
  text-decoration: none;
}

.hero-panel-note {
  margin: 0 0 20px;
  line-height: 1.7;
}

.hero-stats,
.intro-grid,
.result-grid,
.school-grid,
.library-grid,
.plan-list {
  display: grid;
  gap: 18px;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.stat-card,
.intro-card,
.glass-panel,
.hero-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.stat-card,
.intro-card {
  padding: 18px 18px 20px;
}

.stat-card strong,
.intro-card h3,
.signal-item strong,
.section-title,
.major-name,
.school-copy h4,
.plan-copy h4 {
  display: block;
  font-weight: 700;
}

.stat-card strong {
  margin-top: 10px;
  font-size: 1.05rem;
}

.stat-card p,
.intro-card p {
  margin: 10px 0 0;
  line-height: 1.6;
}

.hero-panel {
  padding: 28px;
  align-self: end;
}

.hero-panel h2,
.panel-head h2 {
  margin: 10px 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.15;
}

.signal-list {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.signal-item {
  display: flex;
  gap: 14px;
  align-items: start;
}

.signal-dot {
  width: 11px;
  height: 11px;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--teal));
  box-shadow: 0 0 24px rgba(240, 193, 107, 0.45);
}

.shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 24px 56px;
}

.intro-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.intro-card {
  min-height: 180px;
}

.assessment-layout {
  display: grid;
  grid-template-columns: minmax(320px, 410px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.glass-panel {
  padding: 24px;
}

.ops-panel {
  margin-bottom: 24px;
}

.ops-grid,
.conversion-grid {
  display: grid;
  gap: 18px;
}

.ops-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: start;
  margin-top: 18px;
}

.ops-copy,
.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ops-hint,
.source-note,
.lead-feedback {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  line-height: 1.65;
}

.source-note {
  margin-bottom: 16px;
}

.form-panel {
  position: sticky;
  top: 24px;
}

.field-grid,
.meter-grid {
  display: grid;
  gap: 14px;
}

.field-grid {
  margin-bottom: 16px;
}

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

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

.field,
.meter-field {
  display: grid;
  gap: 8px;
}

.field span,
.meter-head span,
legend {
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 14px 15px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font: inherit;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
input[type="range"]:focus {
  outline: none;
  border-color: rgba(114, 216, 199, 0.8);
  box-shadow: 0 0 0 3px rgba(114, 216, 199, 0.12);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--accent) 50%),
    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.meter-grid {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) - 8px);
  padding: 18px;
  margin: 22px 0 18px;
}

legend {
  padding: 0 10px;
  color: var(--text);
}

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

output {
  min-width: 3.8rem;
  text-align: right;
  color: var(--accent);
  font-weight: 700;
}

input[type="range"] {
  width: 100%;
  appearance: none;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff4dd;
  border: 2px solid rgba(0, 0, 0, 0.18);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff4dd;
  border: 2px solid rgba(0, 0, 0, 0.18);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.choice-cluster {
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.choice-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-pill span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.choice-pill input:checked + span {
  color: var(--text);
  border-color: rgba(240, 193, 107, 0.75);
  background: linear-gradient(135deg, rgba(240, 193, 107, 0.18), rgba(114, 216, 199, 0.09));
  transform: translateY(-1px);
}

.primary-button {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 15px 20px;
  background: linear-gradient(135deg, var(--accent), #f5d89a 54%, var(--teal));
  color: #0b1424;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(240, 193, 107, 0.25);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.hero-actions .primary-button,
.hero-actions .ghost-button,
.quick-actions .secondary-button,
.ops-copy .secondary-button {
  width: auto;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(240, 193, 107, 0.32);
}

.ghost-button,
.secondary-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 0 18px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.secondary-button {
  border: 1px solid rgba(114, 216, 199, 0.22);
  background: rgba(114, 216, 199, 0.08);
  color: #d5f8f2;
}

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

.form-note {
  margin: 12px 4px 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.results-panel {
  display: grid;
  gap: 18px;
}

.conversion-panel {
  display: grid;
  gap: 18px;
}

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

.share-module,
.lead-module {
  display: grid;
  gap: 16px;
}

.share-card-preview {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(240, 193, 107, 0.2);
  background:
    radial-gradient(circle at top right, rgba(240, 193, 107, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(114, 216, 199, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(9, 20, 36, 0.92), rgba(14, 28, 49, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.share-head,
.share-stats,
.share-school-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.share-stats {
  align-items: end;
  margin: 18px 0 14px;
}

.share-title {
  margin: 0;
  font-size: 1.2rem;
}

.share-kicker,
.share-meta,
.share-note,
.lead-head p {
  color: var(--muted);
}

.share-kicker,
.share-meta {
  margin: 0;
  font-size: 0.9rem;
}

.share-score {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 4.4rem);
  line-height: 0.88;
}

.share-school-list,
.share-gap-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.share-school-row,
.share-gap-item {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.share-gap-item p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.lead-head h3 {
  margin: 0;
  font-size: 1.24rem;
}

.lead-head p {
  margin: 8px 0 0;
  line-height: 1.6;
}

.lead-feedback {
  margin: 0;
}

.lead-feedback.success {
  color: #cbf7db;
  border-color: rgba(157, 219, 151, 0.24);
  background: rgba(157, 219, 151, 0.1);
}

.lead-feedback.error {
  color: #ffd0c3;
  border-color: rgba(255, 159, 139, 0.24);
  background: rgba(255, 159, 139, 0.1);
}

.overview-card {
  padding: 26px;
}

.overview-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.88fr);
  gap: 20px;
}

.overview-score {
  display: flex;
  align-items: end;
  gap: 16px;
}

.score-number {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.6rem, 8vw, 5rem);
  line-height: 0.85;
}

.score-copy h3 {
  margin: 0;
  font-size: 1.45rem;
}

.score-copy p {
  margin: 8px 0 0;
  line-height: 1.7;
  color: var(--muted);
}

.score-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(240, 193, 107, 0.4);
  border-radius: 999px;
  background: rgba(240, 193, 107, 0.08);
  color: var(--text);
  font-size: 0.92rem;
}

.metric-grid {
  display: grid;
  gap: 12px;
}

.metric-card {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.metric-row,
.section-row,
.gap-head,
.school-top,
.school-meta,
.plan-item,
.library-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.section-row.wrap {
  flex-wrap: wrap;
}

.metric-row strong,
.gap-head strong,
.school-stat,
.library-top strong {
  color: var(--text);
  font-weight: 700;
}

.metric-card p,
.school-meta span,
.library-sources,
.school-copy p,
.plan-copy p {
  margin: 8px 0 0;
  line-height: 1.6;
}

.metric-bar,
.gap-bar,
.major-bar-fill::before {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.metric-bar span,
.gap-bar span,
.major-bar-fill::before,
.school-progress span {
  display: block;
  height: 100%;
  border-radius: 999px;
}

.metric-bar span {
  background: linear-gradient(90deg, var(--teal), var(--accent));
}

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

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

.gap-item,
.major-card,
.school-card,
.plan-item,
.library-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.gap-item,
.major-card,
.school-card,
.library-card {
  padding: 16px;
}

.gap-item p,
.major-card p {
  margin: 10px 0 12px;
  color: var(--muted);
  line-height: 1.65;
}

.gap-priority {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gap-priority.high {
  color: var(--build);
}

.gap-priority.medium {
  color: var(--reach);
}

.gap-priority.low {
  color: var(--match);
}

.gap-bar span {
  background: linear-gradient(90deg, var(--coral), var(--accent));
}

.major-card {
  display: grid;
  gap: 10px;
}

.major-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.major-score {
  color: var(--accent);
  font-weight: 800;
}

.major-bar {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.major-bar-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--accent));
}

.major-tags,
.school-tags,
.library-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.84rem;
}

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

.legend-pill,
.school-status {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.legend-pill.safe,
.school-status.safe {
  background: rgba(157, 219, 151, 0.15);
  color: var(--safe);
}

.legend-pill.match,
.school-status.match {
  background: rgba(120, 201, 255, 0.15);
  color: var(--match);
}

.legend-pill.reach,
.school-status.reach {
  background: rgba(240, 193, 107, 0.15);
  color: var(--reach);
}

.legend-pill.build,
.school-status.build {
  background: rgba(255, 159, 139, 0.15);
  color: var(--build);
}

.school-grid,
.library-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.school-card {
  display: grid;
  gap: 14px;
}

.school-copy h4,
.library-card h4 {
  margin: 4px 0 0;
  font-size: 1.12rem;
}

.school-region,
.library-region {
  margin: 0;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.school-meta {
  flex-direction: column;
}

.school-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.school-progress span {
  background: linear-gradient(90deg, var(--teal), var(--accent));
}

.school-links,
.library-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

a.source-link {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(114, 216, 199, 0.35);
}

a.source-link:hover {
  color: #9ae6da;
}

.plan-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.plan-item {
  align-items: start;
  padding: 18px;
}

.plan-order {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(240, 193, 107, 0.22), rgba(114, 216, 199, 0.16));
  color: var(--accent);
  font-weight: 800;
  flex: none;
}

.library-panel {
  margin-top: 24px;
}

.library-card {
  display: grid;
  gap: 14px;
}

.library-card p {
  margin: 0;
  line-height: 1.65;
}

.footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 112px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.92rem;
}

.sticky-mobile-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(8, 16, 29, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.32);
}

.sticky-button {
  flex: 1;
  min-height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
}

.sticky-primary {
  background: linear-gradient(135deg, var(--accent), #f5d89a 54%, var(--teal));
  color: #0b1424;
}

.sticky-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, 16px, 0) scale(1.03);
  }
}

@media (max-width: 1120px) {
  .hero,
  .assessment-layout {
    grid-template-columns: 1fr;
  }

  .ops-grid,
  .conversion-grid {
    grid-template-columns: 1fr;
  }

  .form-panel {
    position: static;
  }

  .overview-shell,
  .plan-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .hero-stats,
  .intro-grid,
  .result-grid,
  .school-grid,
  .library-grid,
  .plan-list {
    grid-template-columns: 1fr;
  }

  .field-grid.two,
  .field-grid.three {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }

  .hero {
    padding-top: 52px;
  }

  .channel-banner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .channel-banner-inner {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .shell,
  .hero,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .glass-panel,
  .hero-panel,
  .stat-card,
  .intro-card {
    border-radius: 22px;
  }

  .overview-card {
    padding: 20px;
  }

  .score-number {
    font-size: 3.2rem;
  }

  .hero-actions,
  .quick-actions,
  .ops-copy {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .primary-button,
  .hero-actions .ghost-button,
  .quick-actions .secondary-button,
  .ops-copy .secondary-button {
    width: 100%;
  }

  .sticky-mobile-bar {
    display: flex;
  }
}
