:root {
  color-scheme: dark;
  --background: #050907;
  --surface: #09120f;
  --surface-raised: #0d1814;
  --border: #1c3129;
  --border-strong: #2b4b3f;
  --text: #e8f0ec;
  --muted: #91a39b;
  --accent: #55f6a9;
  --accent-dark: #062818;
  --cyan: #5ce1e6;
  --pink: #ff67b3;
  --font-mono: "IBM Plex Mono", Consolas, "Courier New", monospace;
  --radius: 14px;
  --page-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(85, 246, 169, 0.08), transparent 24rem),
    radial-gradient(circle at 90% 35%, rgba(92, 225, 230, 0.06), transparent 28rem),
    var(--background);
  color: var(--text);
  font-family: var(--font-mono);
  line-height: 1.7;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 40px 40px;
  content: "";
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 90%);
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.page-shell {
  width: min(calc(100% - 40px), var(--page-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 80px;
  border-bottom: 1px solid rgba(43, 75, 63, 0.6);
  background: rgba(5, 9, 7, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand span,
.prompt {
  color: var(--accent);
}

.site-nav {
  display: flex;
  gap: clamp(18px, 3vw, 38px);
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.82rem;
  transition: color 160ms ease;
}

.site-nav a::before {
  color: var(--border-strong);
  content: "./";
}

.site-nav a:hover,
.site-nav a[aria-current="true"] {
  color: var(--accent);
}

.sound-toggle {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition:
    border-color 160ms ease,
    color 160ms ease;
}

.sound-toggle:hover,
.sound-toggle[aria-pressed="true"] {
  border-color: var(--accent);
  color: var(--accent);
}

.sound-icon {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-raised);
}

main {
  padding: clamp(34px, 7vw, 82px) 0 0;
}

.terminal {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: rgba(9, 18, 15, 0.94);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.terminal-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-raised);
  color: var(--muted);
  font-size: 0.72rem;
}

.window-controls {
  display: flex;
  gap: 7px;
}

.window-controls span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
}

.window-controls span:nth-child(2) {
  background: #febc2e;
}

.window-controls span:nth-child(3) {
  background: #28c840;
}

.terminal-title {
  justify-self: center;
}

.status {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 7px;
  color: var(--accent);
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px currentColor;
}

.terminal-body {
  padding: clamp(28px, 5vw, 64px);
}

.command {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.85rem;
}

.prompt {
  margin-right: 10px;
  font-weight: 500;
}

.typing-text::after {
  margin-left: 3px;
  color: var(--accent);
  content: "▋";
  animation: blink 900ms steps(1) infinite;
}

.typing-text.done::after {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(42px, 6vw, 76px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.075em;
}

h1 span {
  color: var(--accent);
}

.role {
  margin: 20px 0 0;
  color: var(--pink);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.intro {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.8;
}

.strengths-label {
  margin: 32px 0 10px;
  color: var(--cyan);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.hero-strengths {
  max-width: 620px;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.hero-strengths li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.hero-strengths li > span {
  color: var(--accent);
  font-size: 0.66rem;
}

.hero-strengths strong,
.hero-strengths small {
  display: block;
}

.hero-strengths strong {
  font-size: 0.8rem;
  font-weight: 500;
}

.hero-strengths small {
  margin-top: 1px;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 7px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-dark);
}

.button.primary:hover {
  background: #80ffc0;
  color: var(--accent-dark);
}

.hero-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.7rem;
}

.hero-socials a {
  color: var(--cyan);
}

.hero-socials a:hover {
  color: var(--accent);
}

.profile-column {
  min-width: 0;
}

.profile-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin: 0 0 22px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--surface-raised);
  box-shadow: 16px 16px 0 rgba(85, 246, 169, 0.06);
}

.profile-photo::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(to bottom, transparent 70%, rgba(5, 9, 7, 0.72)),
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 3px,
      rgba(5, 9, 7, 0.035) 4px
    );
  content: "";
  pointer-events: none;
}

.profile-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 220ms ease,
    transform 500ms ease;
}

.profile-photo:hover img {
  filter: saturate(1.05);
  transform: scale(1.025);
}

.profile-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 11px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(232, 240, 236, 0.82);
  font-size: 0.66rem;
}

.profile-photo figcaption span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.quick-facts {
  margin: 0;
  padding: 0;
}

.quick-facts div {
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
}

.quick-facts div:first-child {
  border-top: 1px solid var(--border);
}

.quick-facts dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.7rem;
}

.quick-facts dt::before {
  color: var(--cyan);
  content: "--";
}

.quick-facts dd {
  margin: 0;
  font-size: 0.82rem;
}

.section {
  padding: clamp(88px, 12vw, 150px) 0 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.section-heading .command {
  margin: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.055em;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(44px, 9vw, 120px);
}

.lead {
  margin: 0;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.5;
  letter-spacing: -0.035em;
}

.about-copy {
  color: var(--muted);
  font-family: system-ui, sans-serif;
}

.about-copy > p {
  margin-top: 0;
}

.experience-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(44px, 9vw, 120px);
  align-items: start;
  margin-bottom: clamp(48px, 7vw, 76px);
}

.experience-intro > p:last-child {
  margin: 0;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  line-height: 1.8;
}

.experience-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.experience-item {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 80px);
  padding: clamp(34px, 5vw, 56px) 0;
  border-bottom: 1px solid var(--border);
}

.experience-period {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
}

.experience-index {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.68rem;
}

.experience-period time {
  color: var(--text);
  font-weight: 500;
}

.engagement-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
}

.engagement-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.experience-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}

.company-kicker {
  margin: 0 0 6px;
  color: var(--cyan);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.experience-heading h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  letter-spacing: -0.045em;
}

.experience-heading h3 small {
  color: var(--muted);
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: 0;
}

.company-mark {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface-raised);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
}

.experience-role {
  margin: 10px 0 0;
  color: var(--pink);
  font-size: 0.82rem;
}

.experience-description {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  line-height: 1.75;
}

.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.experience-tags li {
  padding: 5px 9px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--muted);
  font-size: 0.68rem;
}

blockquote {
  margin: 36px 0 0;
  padding-left: 20px;
  border-left: 2px solid var(--accent);
  color: var(--text);
}

cite {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-style: normal;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.featured-project {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(36px, 7vw, 86px);
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 20%, rgba(92, 225, 230, 0.09), transparent 20rem),
    linear-gradient(145deg, rgba(13, 24, 20, 0.98), rgba(7, 14, 11, 0.98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.featured-project-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.68rem;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
}

.featured-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 9px currentColor;
}

.project-number {
  margin: 58px 0 10px;
  color: var(--cyan);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.featured-project h3 {
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 3.9rem);
  line-height: 1.05;
  letter-spacing: -0.065em;
}

.featured-project h3 span {
  color: var(--accent);
}

.featured-project-lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--text);
  font-family: system-ui, sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.7;
}

.featured-project-description {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  line-height: 1.75;
}

.featured-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  list-style: none;
}

.featured-highlights li {
  padding: 16px 14px 16px 0;
}

.featured-highlights li + li {
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

.featured-highlights span,
.featured-highlights small {
  display: block;
}

.featured-highlights span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
}

.featured-highlights small {
  margin-top: 3px;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: 0.68rem;
  line-height: 1.45;
}

.featured-actions {
  margin-top: 28px;
}

.privacy-visual {
  display: flex;
  min-width: 0;
  align-self: center;
  flex-direction: column;
  gap: 14px;
}

.privacy-window {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: #07100d;
  box-shadow:
    18px 18px 0 rgba(85, 246, 169, 0.055),
    0 24px 60px rgba(0, 0, 0, 0.35);
  transform: rotate(1.25deg);
  transition: transform 220ms ease;
}

.featured-project:hover .privacy-window {
  transform: rotate(0);
}

.privacy-window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-raised);
  color: var(--muted);
  font-size: 0.58rem;
}

.privacy-window-bar > span:nth-child(2) {
  justify-self: center;
}

.privacy-lock {
  justify-self: end;
  color: var(--accent);
}

.privacy-window-body {
  display: flex;
  min-height: 430px;
  align-items: center;
  padding: 42px 24px 30px;
  flex-direction: column;
  text-align: center;
}

.privacy-shield {
  display: grid;
  width: 90px;
  height: 102px;
  place-items: center;
  border: 2px solid var(--accent);
  background: rgba(85, 246, 169, 0.07);
  color: var(--accent);
  clip-path: polygon(50% 0, 94% 16%, 88% 71%, 50% 100%, 12% 71%, 6% 16%);
}

.privacy-shield span {
  font-size: 2rem;
}

.privacy-window-body > p {
  margin: 24px 0 5px;
  color: var(--cyan);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.privacy-window-body > strong {
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  line-height: 1.3;
  letter-spacing: -0.045em;
}

.privacy-flow {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.privacy-flow span {
  padding: 7px 9px;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--muted);
  font-size: 0.58rem;
}

.privacy-flow i {
  color: var(--accent);
  font-style: normal;
}

.privacy-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: auto;
  color: var(--muted);
  font-size: 0.6rem;
}

.privacy-status span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.privacy-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.privacy-visual > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.62rem;
  text-align: center;
}

.privacy-visual > p span {
  color: var(--accent);
}

.more-work-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: clamp(58px, 8vw, 88px) 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.more-work-heading span:first-child {
  color: var(--text);
}

.project-card {
  display: flex;
  min-height: 330px;
  padding: 26px;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(13, 24, 20, 0.9), rgba(7, 14, 11, 0.9));
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.project-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-5px);
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: var(--muted);
  font-size: 0.68rem;
}

.project-meta span:first-child {
  color: var(--accent);
}

.project-card h3 {
  margin: 40px 0 14px;
  font-size: 1.25rem;
  letter-spacing: -0.035em;
}

.project-card p {
  margin: 0;
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.7;
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: auto;
  padding-top: 30px;
}

.project-links a {
  color: var(--cyan);
  font-size: 0.78rem;
}

.project-links a:hover {
  color: var(--accent);
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tech-list li {
  padding: 12px 17px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.82rem;
}

.tech-list li::before {
  margin-right: 9px;
  color: var(--accent);
  content: "+";
}

.contact {
  margin-top: clamp(88px, 12vw, 150px);
}

.contact-content {
  text-align: center;
}

.contact-content .command {
  margin-bottom: 18px;
}

.contact-content h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.contact-content > p:not(.command) {
  margin: 18px 0 0;
  color: var(--muted);
}

.contact-content .actions {
  justify-content: center;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 38px 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.footer a {
  color: var(--cyan);
}

.footer a:hover,
.footer a[aria-current="page"] {
  color: var(--accent);
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@media (max-width: 840px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: fixed;
    right: 20px;
    bottom: 18px;
    left: 20px;
    z-index: 20;
    justify-content: space-around;
    gap: 0;
    padding: 13px 10px;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    background: rgba(9, 18, 15, 0.94);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
  }

  .site-nav a::before {
    content: "";
  }

  .hero-grid,
  .about-grid,
  .experience-intro {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 680px;
  }

  .profile-column {
    width: min(100%, 520px);
  }

  .quick-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .quick-facts div,
  .quick-facts div:first-child {
    border-top: 1px solid var(--border);
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .featured-project {
    grid-template-columns: 1fr;
  }

  .privacy-visual {
    width: min(100%, 560px);
  }

  .project-card {
    min-height: 285px;
  }

  .footer {
    padding-bottom: 100px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--page-width));
  }

  .site-header {
    min-height: 68px;
  }

  .sound-label {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0, 0, 0, 0);
  }

  main {
    padding-top: 22px;
  }

  .terminal-bar {
    grid-template-columns: auto 1fr;
    gap: 14px;
  }

  .terminal-title {
    justify-self: start;
  }

  .status {
    display: none;
  }

  .terminal-body {
    padding: 26px 20px 32px;
  }

  .command {
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: clamp(2.25rem, 13vw, 3.6rem);
  }

  .quick-facts {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .experience-item {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .experience-period {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .experience-index {
    grid-row: 1 / 3;
    margin: 0 10px 0 0;
  }

  .company-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .featured-highlights {
    grid-template-columns: 1fr;
  }

  .featured-highlights li + li {
    padding-left: 0;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .privacy-window-body {
    min-height: 380px;
  }

  .privacy-flow {
    flex-wrap: wrap;
  }

  .section-heading {
    align-items: start;
    flex-direction: column-reverse;
  }

  .section-heading .command {
    font-size: 0.72rem;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .project-meta {
    align-items: start;
    flex-direction: column;
  }

  .footer {
    align-items: start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
