:root {
  --bg-deep: #0c1b2e;
  --bg-mid: #14395b;
  --bg-soft: #ecf4f8;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --surface-dark: rgba(9, 24, 41, 0.82);
  --ink: #112034;
  --muted: #587189;
  --line: rgba(17, 32, 52, 0.1);
  --line-strong: rgba(17, 32, 52, 0.18);
  --primary: #0072ce;
  --primary-strong: #0056a7;
  --accent: #ff8b3d;
  --accent-soft: #ffe0cc;
  --success: #15785f;
  --danger: #b23b3b;
  --shadow-lg: 0 30px 80px rgba(7, 22, 39, 0.16);
  --shadow-md: 0 18px 50px rgba(8, 25, 43, 0.12);
  --radius-2xl: 34px;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1200px;
  --content: 880px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Constantia, "Palatino Linotype", "Book Antiqua", Georgia, serif;
  background:
    radial-gradient(circle at 12% 14%, rgba(0, 114, 206, 0.2), transparent 26%),
    radial-gradient(circle at 88% 8%, rgba(255, 139, 61, 0.18), transparent 18%),
    radial-gradient(circle at 82% 66%, rgba(0, 114, 206, 0.14), transparent 22%),
    linear-gradient(180deg, #f5fbff 0%, #edf3f6 44%, #e4edf2 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
}

body::before {
  top: 8rem;
  right: -6rem;
  width: 22rem;
  height: 22rem;
  background: rgba(0, 114, 206, 0.18);
}

body::after {
  bottom: 10rem;
  left: -5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(255, 139, 61, 0.14);
}

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

img {
  max-width: 100%;
}

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

main {
  position: relative;
}

.shell-container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 2rem), var(--content));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding-top: 0.9rem;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.9rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(245, 251, 255, 0.78);
  box-shadow: 0 18px 55px rgba(7, 22, 39, 0.12);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand strong,
h1,
h2,
h3,
h4 {
  font-family: Bahnschrift, "Aptos Display", "Trebuchet MS", sans-serif;
  letter-spacing: -0.04em;
}

.brand-copy {
  min-width: 0;
}

.brand small {
  display: block;
  max-width: 22rem;
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 50%),
    linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), var(--shadow-md);
  font-family: Bahnschrift, "Aptos Display", "Trebuchet MS", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.site-nav a,
.link-button {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  font-family: Bahnschrift, "Aptos Display", "Trebuchet MS", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  transition: 160ms ease;
}

.site-nav a:hover,
.link-button:hover,
.site-nav a.is-active {
  color: var(--ink);
  background: rgba(17, 32, 52, 0.06);
}

.nav-inline-form {
  margin: 0;
}

.link-button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-utility {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.7rem;
  border: 1px solid rgba(17, 32, 52, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-family: Bahnschrift, "Aptos Display", "Trebuchet MS", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.32rem;
  padding: 0.45rem;
  border: 0;
  border-radius: 12px;
  background: rgba(17, 32, 52, 0.05);
}

.nav-toggle span {
  width: 1.5rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.hero-section,
.page-hero {
  padding: 5.4rem 0 2rem;
}

.page-hero.compact-hero {
  padding-bottom: 1rem;
}

.hero-grid,
.split-grid,
.footer-grid,
.detail-layout,
.dashboard-grid,
.mosaic-grid,
.command-grid,
.stats-strip {
  display: grid;
  gap: 1.4rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: stretch;
}

.split-grid,
.detail-layout,
.command-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.mosaic-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.95fr 0.85fr;
}

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

h1 {
  margin: 0;
  font-size: clamp(2.9rem, 7vw, 5.8rem);
  line-height: 0.94;
}

h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.04;
}

h3 {
  margin: 0 0 0.55rem;
  font-size: 1.16rem;
}

h4 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}

.eyebrow,
.pill {
  margin: 0 0 1rem;
  color: var(--primary-strong);
  font-family: Bahnschrift, "Aptos Display", "Trebuchet MS", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(0, 114, 206, 0.09);
}

.lede,
.lede-small,
.copy-card p,
.content-card p,
.service-card p,
.feature-card p,
.quote-card p,
.metric span,
.status-copy {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.lede {
  max-width: 46rem;
  font-size: 1.14rem;
}

.lede-small {
  font-size: 0.97rem;
}

.section-block {
  padding: 1.75rem 0 4.4rem;
}

.section-muted {
  position: relative;
}

.section-muted::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(0, 114, 206, 0.05), rgba(255, 139, 61, 0.05));
  pointer-events: none;
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 1.7rem;
}

.hero-copy,
.hero-panel,
.highlight-panel,
.content-card,
.copy-card,
.service-card,
.feature-card,
.form-card,
.quote-card,
.stat-card,
.command-card,
.dashboard-panel,
.profile-panel,
.admin-link-card {
  position: relative;
  overflow: hidden;
  padding: 1.7rem;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius-2xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.hero-copy::before,
.hero-panel::before,
.highlight-panel::before,
.copy-card::before,
.content-card::before,
.feature-card::before,
.dashboard-panel::before,
.profile-panel::before,
.form-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 114, 206, 0.11), transparent 68%);
  transform: translate(-35%, -42%);
  pointer-events: none;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 252, 0.86)),
    linear-gradient(140deg, rgba(0, 114, 206, 0.08), rgba(255, 139, 61, 0.08));
}

.hero-panel {
  min-height: 100%;
  color: #eff7fb;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 44%),
    linear-gradient(165deg, #163a5f 0%, #102844 60%, #0b1e34 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-panel .eyebrow,
.hero-panel p,
.hero-panel h2,
.hero-panel h3 {
  color: inherit;
}

.highlight-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 242, 0.86)),
    linear-gradient(135deg, rgba(255, 139, 61, 0.08), rgba(0, 114, 206, 0.08));
}

.accent-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 248, 252, 0.84)),
    linear-gradient(140deg, rgba(0, 114, 206, 0.08), rgba(255, 139, 61, 0.1));
}

.dashboard-panel,
.profile-panel {
  min-height: 100%;
}

.command-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.status-banner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(0, 114, 206, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.75);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(0, 114, 206, 0.09);
  color: var(--primary-strong);
  font-family: Bahnschrift, "Aptos Display", "Trebuchet MS", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
}

.status-badge.status-approved {
  background: rgba(21, 120, 95, 0.12);
  color: var(--success);
}

.status-badge.status-pending {
  background: rgba(255, 139, 61, 0.14);
  color: #9a531a;
}

.status-badge.status-rejected {
  background: rgba(178, 59, 59, 0.12);
  color: var(--danger);
}

.stats-strip,
.card-grid,
.service-grid,
.stack-grid,
.admin-grid,
.profile-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

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

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

.stack-grid {
  grid-template-columns: 1fr;
}

.metric {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric:first-of-type {
  border-top: 0;
  padding-top: 0.35rem;
}

.metric strong {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1rem;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: Bahnschrift, "Aptos Display", "Trebuchet MS", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.stat-card span {
  color: var(--muted);
  font-family: Bahnschrift, "Aptos Display", "Trebuchet MS", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.9rem 0 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: Bahnschrift, "Aptos Display", "Trebuchet MS", sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 16px 32px rgba(0, 114, 206, 0.22);
}

.button-secondary,
.button-danger {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.84);
}

.button-danger {
  color: var(--danger);
}

.text-link {
  color: var(--primary-strong);
  font-family: Bahnschrift, "Aptos Display", "Trebuchet MS", sans-serif;
  font-weight: 800;
}

.check-list,
.footer-links,
.job-meta,
.signal-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.footer-links li,
.signal-list li {
  margin-bottom: 0.85rem;
  color: var(--muted);
}

.check-list li,
.signal-list li {
  position: relative;
  padding-left: 1.45rem;
}

.check-list li::before,
.signal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.job-meta li {
  padding: 0.4rem 0.68rem;
  border-radius: 999px;
  background: rgba(17, 32, 52, 0.06);
  color: var(--muted);
  font-family: Bahnschrift, "Aptos Display", "Trebuchet MS", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
}

.data-cluster {
  display: grid;
  gap: 0.85rem;
}

.data-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.data-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.data-row span:first-child {
  color: var(--muted);
}

.site-form {
  display: grid;
  gap: 1rem;
}

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

.form-full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--ink);
  font-family: Bahnschrift, "Aptos Display", "Trebuchet MS", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(17, 32, 52, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

textarea {
  min-height: 7rem;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(0, 114, 206, 0.18);
  border-color: rgba(0, 114, 206, 0.36);
}

span.field-validation-error,
.validation-summary-errors {
  color: var(--danger);
  font-family: Bahnschrift, "Aptos Display", "Trebuchet MS", sans-serif;
  font-size: 0.9rem;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.checkbox-row input {
  width: auto;
}

.flash {
  padding: 1rem 0 0;
}

.flash-success .shell-container {
  padding: 1rem 1.15rem;
  border-radius: 18px;
  color: #f5fff9;
  background: linear-gradient(135deg, #0c6b52, #1e8a70);
  box-shadow: var(--shadow-md);
}

.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 3.4rem;
  color: #ecf7ff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 20%),
    linear-gradient(180deg, #0e243d 0%, #081523 100%);
}

.site-footer p,
.site-footer li {
  color: rgba(236, 247, 255, 0.72);
}

.site-footer .text-link,
.site-footer a {
  color: #eaf5ff;
}

.inline-delete {
  margin-top: 1rem;
}

.admin-link-card {
  display: block;
  min-height: 100%;
}

.admin-link-card:hover {
  transform: translateY(-2px);
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 1.25rem;
}

.auth-side,
.auth-form-shell {
  min-height: 100%;
}

.auth-side {
  padding: 1.65rem;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius-2xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 248, 252, 0.86)),
    linear-gradient(160deg, rgba(0, 114, 206, 0.08), rgba(255, 139, 61, 0.08));
  box-shadow: var(--shadow-lg);
}

.auth-form-card {
  min-height: 100%;
}

.auth-role-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.auth-role-card,
.credential-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(17, 32, 52, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
}

.auth-demo {
  margin-top: 1.4rem;
}

.auth-demo h3 {
  margin-bottom: 0.75rem;
}

.credential-card + .credential-card {
  margin-top: 0.85rem;
}

.credential-card span {
  color: var(--muted);
  font-family: "Consolas", "Courier New", monospace;
  font-size: 0.9rem;
}

.auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
  margin-top: 1.25rem;
}

.field-stack {
  display: grid;
  gap: 0.45rem;
}

.password-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
}

.password-shell input {
  margin: 0;
}

.password-toggle {
  min-width: 4.5rem;
  height: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(17, 32, 52, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  color: var(--primary-strong);
  font-family: Bahnschrift, "Aptos Display", "Trebuchet MS", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.field-note {
  color: var(--muted);
  font-family: Bahnschrift, "Aptos Display", "Trebuchet MS", sans-serif;
  font-size: 0.84rem;
  line-height: 1.5;
}

.password-meter {
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(17, 32, 52, 0.08);
  border-radius: var(--radius-md);
  background: rgba(247, 251, 255, 0.72);
}

.password-status {
  color: var(--muted);
  font-family: Bahnschrift, "Aptos Display", "Trebuchet MS", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
}

.password-rule-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.password-rule {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: rgba(17, 32, 52, 0.06);
  color: var(--muted);
  font-family: Bahnschrift, "Aptos Display", "Trebuchet MS", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 140ms ease, color 140ms ease;
}

.password-rule::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: rgba(17, 32, 52, 0.22);
}

.password-rule.is-met {
  background: rgba(21, 120, 95, 0.12);
  color: var(--success);
}

.password-rule.is-met::before {
  background: var(--success);
}

.onboarding-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.onboarding-card {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(17, 32, 52, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .mosaic-grid,
  .dashboard-grid,
  .auth-shell,
  .footer-grid,
  .split-grid,
  .detail-layout,
  .command-grid,
  .card-grid,
  .service-grid,
  .admin-grid,
  .profile-grid,
  .stats-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .brand small {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 0.65rem;
  }

  .nav-shell {
    padding: 0.9rem;
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 24px;
    background: rgba(247, 251, 255, 0.98);
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .link-button {
    width: 100%;
    text-align: left;
  }

  .nav-utility {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-section,
  .page-hero {
    padding-top: 4rem;
  }

  .hero-copy,
  .hero-panel,
  .highlight-panel,
  .content-card,
  .copy-card,
  .service-card,
  .feature-card,
  .form-card,
  .quote-card,
  .stat-card,
  .command-card,
  .dashboard-panel,
  .profile-panel,
  .admin-link-card {
    padding: 1.35rem;
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 4rem);
  }

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

  .data-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
