:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #52616b;
  --paper: #f3f7f7;
  --panel: #ffffff;
  --line: #cfdddf;
  --brand: #007d8f;
  --brand-2: #00a878;
  --accent: #f5c542;
  --dark: #101820;
  --dark-2: #17242d;
  --shadow: 0 22px 60px rgba(16, 24, 32, 0.13);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(0, 125, 143, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(0, 125, 143, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, rgba(245, 197, 66, 0.18), transparent 35%, rgba(0, 168, 120, 0.14));
  pointer-events: none;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 0.55rem 0.7rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(207, 221, 223, 0.95);
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(16, 24, 32, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  text-decoration: none;
}

.wordmark {
  display: grid;
  gap: 0.05rem;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-role {
  color: var(--brand);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.site-nav a {
  position: relative;
  padding: 0.5rem 0.68rem;
  color: var(--muted);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: #e9f5f5;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 2.2rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.5rem 0 2.75rem;
  align-items: stretch;
}

.hero-copy,
.copy-block {
  min-width: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1,
.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.5rem, 4.8vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lead,
.page-hero p,
.feature-card p,
.role-card p,
.foundation-card p,
.cta-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-lead {
  max-width: 760px;
}

.hero-support {
  max-width: 700px;
  margin: 0.9rem 0 0;
  color: var(--brand);
  font-size: 0.98rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.hero-actions {
  margin-top: auto;
  padding-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 30px rgba(0, 125, 143, 0.25);
}

.button.secondary {
  color: var(--dark);
  background: #dff7f3;
  border-color: rgba(0, 125, 143, 0.35);
  box-shadow: 0 10px 24px rgba(0, 125, 143, 0.12);
}

.button.ghost {
  color: var(--muted);
  background: #fff;
  border-color: var(--line);
}

.button.small {
  min-height: 38px;
  padding: 0.58rem 0.8rem;
  font-size: 0.9rem;
}

.studio-panel {
  position: relative;
  overflow: hidden;
  padding: 1.15rem;
  color: #eafefe;
  background: linear-gradient(145deg, var(--dark), var(--dark-2));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-width: 0;
  max-width: 100%;
}

.studio-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(245, 197, 66, 0.12), transparent);
  transform: translateX(-100%);
  animation: scan 5s ease-in-out infinite;
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  color: #b7d7dc;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--brand-2);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(0, 168, 120, 0.12);
}

.code-window {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.38rem;
  counter-reset: code-line;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-family: Consolas, "Courier New", monospace;
  overflow-x: auto;
  min-width: 0;
}

.code-line {
  display: block;
  white-space: nowrap;
  color: #d5fbff;
  font-size: 0.9rem;
  transition: opacity 0.12s ease;
}

.code-line::before {
  counter-increment: code-line;
  content: counter(code-line, decimal-leading-zero);
  display: inline-block;
  width: 2.3ch;
  margin-right: 1rem;
  color: #78919a;
  font-variant-numeric: tabular-nums;
}

.code-line b {
  color: var(--accent);
}

.focus-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.focus-grid button {
  min-height: 38px;
  padding: 0.45rem 0.65rem;
  text-align: center;
  color: #eafefe;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.focus-grid button:hover,
.focus-grid button.active {
  color: var(--dark);
  background: var(--accent);
  border-color: rgba(245, 197, 66, 0.75);
  transform: translateY(-2px);
}

.section,
.page-hero {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.25rem 0;
}

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

.section-heading h2,
.cta-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  text-wrap: balance;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card,
.role-card,
.foundation-card,
.document-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover,
.role-card:hover,
.foundation-card:hover,
.document-card:hover {
  border-color: rgba(0, 125, 143, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature-card span {
  color: var(--brand);
  font-weight: 900;
}

.feature-card h3,
.skill-column h3,
.foundation-card h3,
.document-card h2 {
  margin: 0.7rem 0 0.35rem;
  line-height: 1.15;
}

.role-card h3 {
  margin: 0 0 0.55rem;
  line-height: 1.15;
}

.dark-lab {
  padding: 2.5rem;
  color: #fff;
  background: linear-gradient(145deg, var(--dark), #0f2a30);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dark-lab .eyebrow {
  color: #7be5d0;
}

.dark-lab .section-heading h2 {
  color: #fff;
}

.skills-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.mobile-skills-summary {
  display: none;
}

.mobile-role-copy {
  display: none;
}

.skill-column {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.skill-column h3 {
  color: #f4ffff;
}

.tag-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.tag-list.compact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.62rem 0.7rem;
  color: #eafefe;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.tag-list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 999px;
  animation: dotPulse 3s ease-in-out infinite;
}

.tag-list.compact li {
  padding: 0.42rem 0.58rem;
  border-radius: 999px;
  font-size: 0.82rem;
}

.tag-list.compact li::before {
  flex-basis: 6px;
  width: 6px;
  height: 6px;
}

.role-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.role-meta {
  display: grid;
  align-content: start;
  gap: 0.4rem;
}

.role-meta span,
.foundation-card span {
  color: var(--brand);
  font-weight: 900;
}

.role-meta strong {
  line-height: 1.15;
}

.foundation-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1rem;
  align-items: stretch;
}

.foundation-grid .section-heading {
  grid-column: 1 / -1;
}

.foundation-card.quiet {
  background: rgba(255, 255, 255, 0.7);
}

.education-card-header {
  display: grid;
  min-height: 100%;
  gap: 1rem;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.education-card-header img {
  width: min(190px, 72%);
  height: auto;
  padding: 0.25rem;
}

.placement-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.placement-list div {
  display: grid;
  gap: 0.15rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(207, 221, 223, 0.8);
  border-radius: 8px;
}

.placement-list strong {
  line-height: 1.2;
}

.placement-list span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.cta-section {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding: 1.1rem 1.2rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.06);
}

.cta-section .eyebrow,
.cta-section p {
  color: var(--muted);
}

.cta-section .eyebrow {
  color: var(--brand);
}

.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.document-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 48px;
  padding: 0.75rem 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border: 1px solid rgba(0, 125, 143, 0.18);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 125, 143, 0.16);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.document-cta:hover {
  background: linear-gradient(135deg, var(--brand-dark, #07515f), var(--brand));
  border-color: rgba(0, 125, 143, 0.35);
  transform: translateY(-2px);
}

.document-cta span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
}

.document-cta strong {
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.1;
}

.page-hero {
  padding-top: 2.4rem;
  padding-bottom: 1.2rem;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 4.8vw, 4.5rem);
}

.documents-hero {
  max-width: 980px;
  margin-left: max(1rem, calc((100vw - var(--max)) / 2));
  margin-right: auto;
}

.auth-panel {
  display: flex;
  align-items: end;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.signin-form {
  display: grid;
  gap: 0.4rem;
}

.signin-form label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.signin-row {
  display: flex;
  gap: 0.5rem;
}

.signin-row select,
.signin-row button,
.logout-link {
  box-sizing: border-box;
  min-height: 40px;
  border-radius: 8px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
}

.signin-row select {
  min-width: 150px;
  padding: 0 0.7rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.signin-row button,
.logout-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  padding: 0 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border: 0;
  text-decoration: none;
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.document-note {
  max-width: 760px;
  padding: 0.9rem 1rem;
  background: #fff8d8;
  border: 1px solid #f2df91;
  border-radius: 8px;
  overflow-wrap: anywhere;
}

.document-note.compact {
  margin-top: 1rem;
  margin-bottom: 0;
}

.document-note.success {
  background: #e7f8ee;
  border-color: #9bd8b4;
}

.document-note.danger {
  background: #fff0f0;
  border-color: #efb0b0;
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1rem;
}

.document-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 1rem;
}

.document-card h2 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.15;
}

.document-card > div:last-child {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.document-card img,
.preview-lock {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
}

.document-card img {
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--line);
}

.preview-lock {
  display: grid;
  place-items: center;
  color: #dff7f3;
  background:
    linear-gradient(135deg, rgba(0, 125, 143, 0.75), rgba(16, 24, 32, 0.95)),
    repeating-linear-gradient(45deg, transparent 0 12px, rgba(255, 255, 255, 0.1) 12px 13px);
  border: 1px solid rgba(0, 125, 143, 0.3);
}

.preview-lock span {
  padding: 0.55rem 0.75rem;
  background: rgba(16, 24, 32, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  font-weight: 900;
}

.document-card.locked .doc-download {
  pointer-events: none;
  opacity: 0.55;
}

.doc-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 36px;
  padding: 0.5rem 0.75rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 125, 143, 0.14);
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.doc-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 125, 143, 0.24);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.35rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--brand);
  font-weight: 900;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.reveal {
  animation: rise 0.75s ease both;
}

.feature-card:nth-child(2),
.skill-column:nth-child(2),
.foundation-card:nth-child(2) {
  animation-delay: 0.08s;
}

.feature-card:nth-child(3),
.skill-column:nth-child(3) {
  animation-delay: 0.16s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scan {
  0%,
  35% {
    transform: translateX(-100%);
  }
  70%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes dotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 197, 66, 0.18);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 3px rgba(245, 197, 66, 0);
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 940px) {
  .hero,
  .role-card,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .skills-board,
  .documents-grid,
  .foundation-grid,
  .feature-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    width: 100%;
    margin-top: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-role {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 0.05em;
  }

  .nav-toggle {
    flex: 0 0 44px;
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    display: none;
    width: min(280px, calc(100vw - 2rem));
    padding: 0.75rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .hero {
    width: 100%;
    max-width: 100vw;
    min-height: auto;
    padding: 1.65rem 0.75rem 1.75rem;
    align-items: start;
    overflow: hidden;
    text-align: left;
  }

  .hero-copy,
  .hero-lead,
  .hero-support,
  .section-heading {
    width: 100%;
    max-width: 100%;
  }

  .hero-support {
    font-size: 0.92rem;
  }

  .section,
  .page-hero,
  .site-footer {
    width: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

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

  .section + .section {
    padding-top: 1rem;
  }

  .documents-hero {
    margin-left: 0;
    margin-right: 0;
  }

  .auth-panel,
  .signin-form,
  .signin-row,
  .signin-row select,
  .signin-row button,
  .logout-link,
  .document-note {
    width: 100%;
    max-width: 100%;
  }

  .signin-row {
    display: grid;
    grid-template-columns: 1fr 108px;
  }

  .document-note {
    padding: 0.75rem;
    font-size: 0.95rem;
  }

  .document-card > div:last-child {
    gap: 0.6rem;
  }

  .doc-download {
    width: 100%;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .hero-copy {
    overflow: visible;
  }

  .hero-lead,
  .page-hero p,
  .feature-card p,
  .role-card p,
  .foundation-card p,
  .cta-section p {
    font-size: 1rem;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.07em;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .focus-grid,
  .skills-board,
  .documents-grid,
  .foundation-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .role-card,
  .foundation-card,
  .document-card,
  .skill-column,
  .mobile-skills-summary article {
    border-radius: 0;
  }

  .feature-card,
  .role-card,
  .foundation-card {
    padding: 1rem;
  }

  .role-card,
  .foundation-card {
    text-align: left;
  }

  .role-meta {
    justify-items: start;
  }

  .desktop-role-copy {
    display: none;
  }

  .mobile-role-copy {
    display: block;
  }

  .dark-lab .section-heading h2 {
    font-size: 0;
  }

  .dark-lab .section-heading h2::after {
    content: "Core capabilities.";
    font-size: clamp(1.9rem, 10vw, 2.35rem);
    line-height: 1;
  }

  .skills-board {
    display: none;
  }

  .mobile-skills-summary {
    display: grid;
    gap: 0.75rem;
  }

  .mobile-skills-summary article {
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
  }

  .mobile-skills-summary span {
    display: block;
    color: var(--accent);
    font-weight: 900;
    margin-bottom: 0.2rem;
  }

  .mobile-skills-summary p {
    margin: 0;
    color: #eafefe;
    font-size: 0.95rem;
  }

  .document-cta {
    width: 100%;
    justify-content: center;
  }

  .dark-lab {
    padding: 1.1rem 1rem;
    border-radius: 0;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .studio-panel {
    display: grid;
    margin-top: 1.25rem;
    padding: 0.85rem;
    grid-template-rows: auto auto auto;
  }

  .studio-panel .panel-top {
    margin-bottom: 0.65rem;
    font-size: 0.78rem;
  }

  .studio-panel .code-window {
    padding: 0.75rem;
    gap: 0.35rem;
  }

  .studio-panel .code-line {
    font-size: 0.74rem;
  }

  .studio-panel .code-line:nth-child(n+5) {
    display: none;
  }

  .studio-panel .focus-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 0.4rem;
    margin-top: 0.65rem;
  }

  .studio-panel .focus-grid button {
    min-height: 34px;
    padding: 0.35rem;
    font-size: 0.72rem;
  }

  .education-card-header {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
  }

  .education-card-header img {
    display: none;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
