* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #fafafa;
  --card-bg: #ffffff;
  --card-border: rgba(0, 0, 0, 0.09);
  --window-bar-bg: #f6f5f4;
  --topbar-bg: rgba(246, 245, 244, 0.78);
  --dock-bg: #ffffff;
  --text-primary: #1c1c1c;
  --text-secondary: #6e6e6e;
  --text-meta: #8a8a8a;
  --avatar-bg: #e3edfb;
  --status-dot: #26a269;
  --badge-bg: #f0f0f0;
  --badge-text: #4a4a4a;
  --link: #3c6eb4;
  --flagship-border: #c88800;
  --flagship-badge-bg: #fdf1d9;
  --flagship-badge-text: #8a6a10;
  --ai-badge-bg: #e2f6ec;
  --ai-badge-text: #1c7a4d;
  --status-badge-bg: #dcf3e6;
  --status-badge-text: #1c7a4d;
  --placeholder-text: #b3b3b3;
  --node-source: #ff7800;
  --node-pipeline: #3c6eb4;
  --node-gate: #9141ac;
  --node-dest: #26a269;
  --statusbar-bg: #3c6eb4;
  --statusbar-text: #ffffff;
  --glow-accent: rgba(60, 110, 180, 0.09);
  --glow-secondary: rgba(41, 65, 114, 0.07);
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --ui-font: "Cantarell", "Noto Sans", "Ubuntu", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  /* Fixed terminal palette — always dark, regardless of light/dark theme */
  --terminal-bg: #0b0f0c;
  --terminal-border: #1c2620;
  --terminal-text: #b9d6c1;
  --terminal-bright: #eafbee;
  --terminal-accent: #4ade80;
  --terminal-logo: #6fa3e0;
}

[data-theme="dark"] {
  --bg: #1e1e1e;
  --card-bg: #303030;
  --card-border: rgba(255, 255, 255, 0.09);
  --window-bar-bg: #2a2a2a;
  --topbar-bg: rgba(20, 20, 20, 0.72);
  --dock-bg: #303030;
  --text-primary: #ffffff;
  --text-secondary: #c0bfbc;
  --text-meta: #9a9996;
  --avatar-bg: #26364a;
  --status-dot: #57e389;
  --badge-bg: #3a3a3a;
  --badge-text: #d6d6d6;
  --link: #6fa3e0;
  --flagship-border: #cd9309;
  --flagship-badge-bg: #2e2610;
  --flagship-badge-text: #f8e45c;
  --ai-badge-bg: #12271c;
  --ai-badge-text: #57e389;
  --status-badge-bg: #14251b;
  --status-badge-text: #8ff0a4;
  --placeholder-text: #6e6e6e;
  --node-source: #ffa348;
  --node-pipeline: #6fa3e0;
  --node-gate: #c061cb;
  --node-dest: #57e389;
  --statusbar-bg: #294172;
  --statusbar-text: #ffffff;
  --glow-accent: rgba(111, 163, 224, 0.13);
  --glow-secondary: rgba(41, 65, 114, 0.12);
}

body {
  font-family: var(--ui-font);
  background:
    radial-gradient(650px circle at 8% -5%, var(--glow-accent), transparent 60%),
    radial-gradient(650px circle at 95% 25%, var(--glow-secondary), transparent 60%),
    var(--bg);
  color: var(--text-primary);
  transition: background 0.2s ease, color 0.2s ease;
}

/* --- always-reserved, thin page scrollbar (prevents layout shift between short/tall tabs) --- */
html {
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: var(--card-border) transparent;
}
html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: transparent; }
html::-webkit-scrollbar-thumb { background: var(--card-border); border-radius: 3px; }

a { color: var(--link); }
code { font-family: var(--mono); }

/* --- error.html: simple centered text page --- */
body.error-page {
  max-width: 40rem;
  margin: 4rem auto;
  padding: 0 1rem;
  font-family: var(--ui-font);
}
body.error-page h1 { font-size: 1.5rem; }

/* --- main site --- */
body.site { min-height: 100vh; }

/* --- top bar (GNOME shell panel) --- */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 14px;
  background: var(--topbar-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  z-index: 20;
  font-size: 13px;
}
.top-bar-zone { display: flex; align-items: center; gap: 10px; min-width: 0; }
.top-bar-zone.left {
  align-self: stretch;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 0 10px;
  margin-left: -10px;
  border-radius: 4px;
  transition: background 0.15s ease;
}
.top-bar-zone.left:hover { background: var(--badge-bg); }
.top-bar-zone.center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}
.top-bar-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 12px;
}
.theme-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.theme-toggle:hover { background: var(--badge-bg); color: var(--text-primary); }

.page {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: calc(40px + 2.5rem) 1.5rem calc(96px + 2.5rem);
}

/* --- window chrome (headerbar) --- */
.window {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.tab-panel[hidden] { display: none; }
.window-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--window-bar-bg);
  border-bottom: 1px solid var(--card-border);
}
.window-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--link);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.window-icon svg { width: 12px; height: 12px; }
.window-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.window-body { padding: 2rem; }
#terminal .window-body { padding: 0; }

/* --- hero --- */
.hero-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 1.5rem;
}
.hero-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.hero-cv {
  align-items: flex-end;
  text-align: right;
}
.hero-divider {
  width: 1px;
  background: var(--card-border);
}
.identity {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.identity-text { min-width: 0; }
.hero-availability-title {
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--text-meta);
  margin-bottom: 0.6rem;
}
.hero-signal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  padding: 3px 0;
}
.hero-signal-label { color: var(--text-meta); }
.hero-signal-value { color: var(--text-primary); display: flex; align-items: center; gap: 5px; }
.hero-signal-value .hero-time-mono { font-family: var(--mono); }
.hero-cv-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--link);
  background: var(--window-bar-bg);
  border: 1px solid var(--link);
  border-radius: 8px;
  padding: 8px 14px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  width: fit-content;
}
.hero-cv-link:hover { background: var(--link); color: #fff; }
.hero-cv-link svg { flex-shrink: 0; }
.hero-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  margin-top: 10px;
}
.hero-email-link:hover { color: var(--link); }
.hero-email-link svg { flex-shrink: 0; }
.hero-accounts { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.hero-account-link { display: inline-flex; color: var(--text-secondary); transition: color 0.15s ease; }
.hero-account-link:hover { color: var(--link); }
.avatar {
  width: clamp(56px, 20vw, 76px);
  height: clamp(56px, 20vw, 76px);
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.identity h1 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.title {
  font-size: 14px;
  color: var(--text-secondary);
  min-height: 1.4em;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.title::after {
  content: "|";
  margin-left: 2px;
  color: var(--link);
  animation: title-cursor-blink 1s step-end infinite;
}
@keyframes title-cursor-blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}
.pitch {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 68ch;
}

.status-dot-inline {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--status-dot);
  flex-shrink: 0;
}

/* --- sections --- */
.section-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.accent-dot { color: var(--node-pipeline); }
.title-accent {
  width: 44px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--node-source), var(--node-pipeline));
  margin-bottom: 1.25rem;
}
.section-lede {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.subsection-title {
  font-size: 15px;
  font-weight: 700;
  margin: 2rem 0 1rem;
}
.subsection-title:first-of-type { margin-top: 0; }
.infra-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-meta);
  margin-top: 1rem;
  text-align: center;
}

/* --- placeholder blocks (Resume/Certifications) --- */
.placeholder-block {
  border: 1px dashed var(--card-border);
  border-radius: 10px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: var(--placeholder-text);
}
.placeholder-badge {
  display: inline-block;
  font-size: 11px;
  background: var(--badge-bg);
  color: var(--badge-text);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.placeholder-block p { font-size: 13px; }

/* --- experience (resume) --- */
.experience-list { list-style: none; margin-bottom: 1.5rem; }
.experience-entry { padding-bottom: 1.75rem; margin-bottom: 1.75rem; border-bottom: 1px solid var(--card-border); }
.experience-entry:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.experience-title { font-weight: 700; font-size: 15px; }
.experience-company { color: var(--text-secondary); font-weight: 600; font-size: 13px; margin-top: 2px; }
.experience-meta { font-size: 12px; color: var(--text-meta); margin: 4px 0 0.75rem; }
.experience-entry .focus-list { margin-bottom: 0.5rem; }
.experience-award { font-size: 12px; color: var(--ai-badge-text); margin-top: 0.5rem; }

/* --- certifications --- */
.cert-list { list-style: none; margin-bottom: 1.5rem; }
.cert-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--card-border);
  font-size: 13px;
}
.cert-list li:last-child { border-bottom: none; }
.cert-logo {
  width: clamp(44px, 15vw, 60px);
  height: clamp(44px, 15vw, 60px);
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
}
.cert-name { font-weight: 600; flex: 1; }
.cert-meta { font-size: 12px; color: var(--text-meta); white-space: nowrap; }
.cert-expired .cert-name, .cert-expired .cert-meta { color: var(--placeholder-text); }
.cert-expired .cert-logo { opacity: 0.5; }

/* --- contact form --- */
.contact-columns {
  display: flex;
  align-items: stretch;
  gap: 2rem;
}
.contact-column { flex: 1; min-width: 0; }
.contact-status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 12px;
  color: var(--text-secondary);
}
.contact-status-item { display: inline-flex; align-items: center; gap: 6px; }
.contact-status-badge {
  background: var(--status-badge-bg);
  color: var(--status-badge-text);
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 11px;
}
.contact-status-item svg { flex-shrink: 0; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0.5rem;
  max-width: 440px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-meta);
}
.form-row input, .form-row textarea {
  font-family: inherit;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--window-bar-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  transition: border-color 0.15s ease;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--link); }
.form-row textarea { resize: vertical; min-height: 100px; }
.contact-form-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--link);
  background: var(--window-bar-bg);
  border: 1px solid var(--link);
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.contact-form-submit:hover { background: var(--link); color: #fff; }

/* --- contact links --- */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  text-decoration: none;
  color: var(--text-primary);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.contact-link:hover { border-color: var(--link); background: var(--window-bar-bg); }
.contact-link-icon { flex-shrink: 0; width: 18px; height: 18px; color: var(--text-secondary); }
.contact-link-text { display: flex; flex-direction: column; gap: 2px; }
.contact-link-label { font-weight: 600; font-size: 13px; }
.contact-link-value { font-size: 12px; color: var(--text-secondary); }
.focus-list {
  list-style: none;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.focus-list li { padding-left: 1rem; position: relative; }
.focus-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--node-pipeline);
}

/* --- dock (GNOME shell dash) --- */
.dock {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 8px 10px 6px;
  background: var(--dock-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  max-width: calc(100vw - 24px);
  overflow-x: auto;
  scrollbar-width: none;
}
.dock::-webkit-scrollbar { display: none; }
.dock-btn {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.dock-btn:hover { background: var(--badge-bg); color: var(--text-primary); transform: translateY(-4px); }
.dock-btn:focus-visible { outline: 2px solid var(--link); outline-offset: 2px; }
.dock-icon { width: 20px; height: 20px; }
.dock-indicator {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.15s ease;
}
.dock-btn.active { color: var(--link); background: var(--avatar-bg); }
.dock-btn.active .dock-indicator { background: var(--link); }
.dock-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--window-bar-bg);
  color: var(--text-primary);
  border: 1px solid var(--card-border);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  padding: 4px 9px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.12s ease, transform 0.12s ease;
}
.dock-btn:hover .dock-tooltip,
.dock-btn:focus-visible .dock-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* --- terminal --- */
.terminal {
  font-family: var(--mono);
  font-size: 13px;
  background: var(--terminal-bg);
  border: none;
  border-radius: 0;
  padding: 1.25rem;
  height: 420px;
  overflow-y: auto;
  cursor: text;
}
@media (max-height: 640px) {
  .terminal { height: clamp(200px, 50vh, 420px); }
}
.terminal-output {
  color: var(--terminal-text);
  line-height: 1.6;
}
.terminal-output p { margin-bottom: 2px; white-space: pre-wrap; }
.terminal-output .cmd-echo { color: var(--terminal-bright); }
.terminal-output .cmd-echo::before { content: "daryl@homelab:~$ "; color: var(--terminal-accent); }
.terminal-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.6;
}
.terminal-prompt { color: var(--terminal-accent); font-weight: 700; flex-shrink: 0; }
.terminal-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  caret-color: var(--terminal-accent);
  color: var(--terminal-bright);
  font-family: var(--mono);
  font-size: 13px;
}
.fastfetch-logo { color: var(--terminal-logo); font-weight: 700; }
.fastfetch-label { color: var(--terminal-accent); font-weight: 700; }
.fastfetch-header { color: var(--terminal-bright); font-weight: 700; }
.fastfetch-rule { color: var(--terminal-text); }

/* --- projects grid --- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.project-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.project-card.flagship { border-color: var(--flagship-border); }
.project-card.placeholder {
  border-style: dashed;
  color: var(--placeholder-text);
}
.project-card.placeholder .project-tagline,
.project-card.placeholder .project-description { color: var(--placeholder-text); }
.project-card.clickable { cursor: pointer; }
.project-card.clickable:hover { border-color: var(--link); }
.project-card.clickable:focus-visible { outline: 2px solid var(--link); outline-offset: 2px; }
.project-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}
.project-header h3 {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.project-toggle-icon {
  color: var(--text-meta);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}
.project-details[hidden] { display: none; }
.flagship-badge, .ai-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
}
.flagship-badge {
  background: var(--flagship-badge-bg);
  color: var(--flagship-badge-text);
}
.ai-badge {
  background: var(--ai-badge-bg);
  color: var(--ai-badge-text);
}
.project-tagline {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}
.project-description {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0.9rem;
}
.badge {
  font-size: 11px;
  background: var(--badge-bg);
  color: var(--badge-text);
  padding: 4px 10px;
  border-radius: 6px;
}
.project-highlights {
  list-style: none;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}
.project-highlights li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 4px;
}
.project-highlights li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--text-meta);
}

@keyframes status-dot-pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  70% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.status-dot-glow {
  box-shadow: 0 0 0 0 var(--node-dest);
  animation: status-dot-pulse 2s ease-out infinite;
}
.top-bar-status .status-dot-inline { background: var(--node-dest); }

/* --- dev watermark --- */
.dev-watermark {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='220'%20height='160'%3E%3Ctext%20x='30'%20y='95'%20font-family='sans-serif'%20font-size='42'%20font-weight='800'%20letter-spacing='4'%20fill='%23d97706'%20fill-opacity='0.16'%20transform='rotate(-20%20110%2080)'%3EDEV%3C/text%3E%3C/svg%3E");
  background-repeat: repeat;
}
[data-theme="dark"] .dev-watermark {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='220'%20height='160'%3E%3Ctext%20x='30'%20y='95'%20font-family='sans-serif'%20font-size='42'%20font-weight='800'%20letter-spacing='4'%20fill='%23fbbf24'%20fill-opacity='0.2'%20transform='rotate(-20%20110%2080)'%3EDEV%3C/text%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .dock-btn:hover { transform: none; }
}

@media (max-width: 640px) {
  .window-body { padding: 1.5rem; }
  .hero-body { grid-template-columns: 1fr; gap: 1.25rem; }
  .hero-divider { display: none; }
  .title { white-space: normal; overflow: visible; text-overflow: clip; }
  .contact-columns { flex-direction: column; gap: 1.5rem; }
  .hero-account-link { padding: 8px; margin: -8px; }
  .hero-cv-link { padding: 12px 16px; }
  .contact-form-submit { padding: 12px 16px; }
  .terminal-input { font-size: 16px; }
  .top-bar-zone.center { display: none; }
  .top-bar-zone.left { font-size: 11px; }
  .dock-btn { width: 40px; height: 40px; }
}
