:root {
  color-scheme: light;
  --ink: #111418;
  --muted: #5a6472;
  --line: #d8dee7;
  --paper: #f4f7f5;
  --surface: #ffffff;
  --surface-2: #edf7f3;
  --teal: #0a7f78;
  --teal-dark: #075f5a;
  --coral: #d65f4a;
  --amber: #d79b25;
  --violet: #6d5bd0;
  --code: #15191e;
  --shadow: 0 20px 60px rgba(17, 20, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 127, 120, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(214, 95, 74, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 68%);
}

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

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

#data-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px 5vw;
  border-bottom: 1px solid rgba(17, 20, 24, 0.08);
  background: rgba(247, 245, 239, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(10, 127, 120, 0.35);
  border-radius: 8px;
  background: var(--surface);
  color: var(--teal-dark);
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 8px 11px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(10, 127, 120, 0.1);
  color: var(--teal-dark);
  outline: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 54px;
  min-height: auto;
  padding: 42px 5vw 24px;
}

.hero-copy,
.section-heading,
.learning-copy,
.contact-section > div:first-child {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: 4rem;
}

h2 {
  font-size: 2.00rem;
}

h3 {
  font-size: 1.16rem;
}

.hero-lead,
.section-heading p,
.learning-copy p,
.contact-section p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.role-line {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 1.48rem;
  font-weight: 760;
  line-height: 1.25;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  max-width: 100%;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  line-height: 1.1;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.button.primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 14px 30px rgba(10, 127, 120, 0.26);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal-dark);
}

.button.secondary {
  border-color: rgba(17, 20, 24, 0.14);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(10, 127, 120, 0.35);
  background: var(--surface);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
}

.hero-stats div {
  min-height: 110px;
  padding: 16px;
  border: 1px solid rgba(17, 20, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.hero-stats dt {
  margin: 0 0 6px;
  color: var(--teal-dark);
  font-size: 1.55rem;
  font-weight: 830;
  line-height: 1.05;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.identity-visual {
  position: relative;
  min-height: 520px;
  padding: 28px;
  border: 1px solid rgba(17, 20, 24, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(237, 247, 243, 0.92)),
    radial-gradient(circle at top right, rgba(214, 95, 74, 0.2), transparent 42%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.identity-visual::before,
.identity-visual::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.identity-visual::before {
  top: 36px;
  right: 28px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(109, 91, 208, 0.3);
  border-radius: 50%;
}

.identity-visual::after {
  right: -70px;
  bottom: 74px;
  width: 200px;
  height: 200px;
  border: 1px dashed rgba(10, 127, 120, 0.34);
  border-radius: 50%;
}

.portrait-wrap {
  position: relative;
  z-index: 2;
  width: 210px;
  aspect-ratio: 1;
  border: 6px solid var(--surface);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(17, 20, 24, 0.16);
  overflow: hidden;
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.terminal-panel {
  position: relative;
  z-index: 3;
  margin-top: -24px;
  margin-left: 72px;
  padding: 18px;
  border-radius: 8px;
  background: var(--code);
  color: #d7eee9;
  box-shadow: 0 20px 44px rgba(17, 20, 24, 0.28);
}

.terminal-top {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
}

.terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-top span:nth-child(1) {
  background: var(--coral);
}

.terminal-top span:nth-child(2) {
  background: var(--amber);
}

.terminal-top span:nth-child(3) {
  background: var(--teal);
}

.terminal-panel pre {
  margin: 0;
  white-space: pre-wrap;
}

.terminal-panel code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.9rem;
  line-height: 1.65;
}

.availability {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(17, 20, 24, 0.12);
  color: var(--teal-dark);
  font-weight: 760;
}

.status-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(10, 127, 120, 0.14);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 5vw 56px;
}

.trust-strip span {
  padding: 9px 12px;
  border: 1px solid rgba(17, 20, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 690;
}

.section-target {
  padding-top: 0;
}

.target-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(10, 127, 120, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(237, 247, 243, 0.82)),
    var(--surface);
  box-shadow: 0 16px 40px rgba(17, 20, 24, 0.08);
}

.target-panel p:not(.eyebrow) {
  max-width: 780px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.target-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
}

.target-tags span {
  padding: 9px 11px;
  border: 1px solid rgba(10, 127, 120, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--teal-dark);
  font-weight: 760;
}

.section {
  padding: 56px 5vw;
}

.section-light {
  background: rgba(255, 255, 255, 0.62);
  border-block: 1px solid rgba(17, 20, 24, 0.08);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.compact {
  margin-bottom: 16px;
}

.service-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.project-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(17, 20, 24, 0.1);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(17, 20, 24, 0.06);
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-index {
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 830;
}

.service-card p,
.project-card p,
.timeline-item p,
.workstyle-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.section-results {
  background: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(17, 20, 24, 0.08);
}

.results-grid,
.workstyle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.result-card,
.workstyle-card {
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(17, 20, 24, 0.1);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(17, 20, 24, 0.06);
}

.result-card strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1.62rem;
  line-height: 1.05;
}

.result-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.section-skills {
  background:
    linear-gradient(90deg, rgba(10, 127, 120, 0.1), rgba(214, 95, 74, 0.08)),
    rgba(247, 245, 239, 0.78);
}

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

.skill-tabs {
  display: grid;
  gap: 10px;
}

.skill-tab {
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid rgba(17, 20, 24, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 770;
  text-align: left;
}

.skill-tab.is-active,
.skill-tab:hover,
.skill-tab:focus-visible {
  border-color: rgba(10, 127, 120, 0.35);
  background: var(--surface);
  color: var(--teal-dark);
  outline: none;
}

.skill-panels {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(17, 20, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-list span {
  padding: 10px 12px;
  border: 1px solid rgba(17, 20, 24, 0.1);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 690;
}

.section-material {
  background: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(17, 20, 24, 0.08);
}

.material-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(17, 20, 24, 0.1);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(17, 20, 24, 0.08);
}

.material-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
}

.material-copy .button {
  margin-top: 24px;
}

.material-preview {
  min-height: 250px;
  padding: 22px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(21, 25, 30, 0.92), rgba(7, 95, 90, 0.9)),
    var(--code);
  color: #d7eee9;
  position: relative;
  overflow: hidden;
}

.material-preview::after {
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(112, 208, 200, 0.34);
  border-radius: 50%;
  content: "";
}

.material-year {
  display: inline-grid;
  min-width: 62px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(112, 208, 200, 0.34);
  border-radius: 8px;
  color: #70d0c8;
  font-weight: 830;
}

.slide-lines {
  display: grid;
  gap: 10px;
  margin: 42px 0 22px;
}

.slide-lines span {
  display: block;
  height: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.slide-lines span:nth-child(1) {
  width: 76%;
}

.slide-lines span:nth-child(2) {
  width: 58%;
}

.slide-lines span:nth-child(3) {
  width: 84%;
}

.material-preview code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.92rem;
  line-height: 1.7;
}

.practice-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 14px;
  padding: 20px 22px;
  border: 1px solid rgba(17, 20, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: inherit;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.practice-card:hover,
.practice-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(10, 127, 120, 0.34);
  box-shadow: 0 14px 34px rgba(17, 20, 24, 0.08);
  outline: none;
}

.practice-kicker {
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 830;
}

.practice-card h3 {
  margin-top: 4px;
  font-size: 1.1rem;
}

.practice-card p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
}

.practice-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: 270px;
}

.practice-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(10, 127, 120, 0.18);
  border-radius: 8px;
  background: rgba(237, 247, 243, 0.88);
  color: var(--teal-dark);
  font-size: 0.84rem;
  font-weight: 760;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 24px;
  padding: 10px 0;
  border-top: 1px solid rgba(17, 20, 24, 0.12);
}

.timeline-date {
  color: var(--teal-dark);
  font-weight: 830;
}

.section-projects {
  background: var(--paper);
}

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

.project-card {
  min-height: 190px;
}

.section-learning {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: center;
  background: #17201d;
  color: #eef7f3;
}

.section-learning .eyebrow {
  color: #70d0c8;
}

.section-learning p {
  color: #bed0ca;
}

.learning-visual {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.bar-row {
  display: grid;
  gap: 8px;
}

.bar-row span {
  font-weight: 780;
}

.bar-row strong {
  display: block;
  height: 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, #70d0c8 var(--value), rgba(255, 255, 255, 0.14) var(--value));
}

/* DATA LEARNING TRACK START: aktuális képzések és bizonyítvány */
.learning-track {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.training-card {
  display: flex;
  min-height: 238px;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.training-head {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.training-provider {
  color: #8fe0d8;
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.training-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border: 1px solid rgba(243, 197, 108, 0.32);
  border-radius: 8px;
  background: rgba(243, 197, 108, 0.12);
  color: #f3c56c;
  font-size: 0.78rem;
  font-weight: 820;
  line-height: 1;
}

.training-status.done {
  border-color: rgba(143, 224, 216, 0.32);
  background: rgba(143, 224, 216, 0.12);
  color: #8fe0d8;
}

.training-card h3 {
  font-size: 1.02rem;
  line-height: 1.18;
}

.training-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

.training-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.training-tags span {
  padding: 6px 8px;
  border: 1px solid rgba(143, 224, 216, 0.2);
  border-radius: 8px;
  background: rgba(143, 224, 216, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 760;
}

.training-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  color: #8fe0d8;
  font-size: 0.92rem;
  font-weight: 820;
}

.naplo-link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: auto;
  color: #8fe0d8;
  font-size: 0.92rem;
  font-weight: 820;
}

.training-link:hover,
.training-link:focus-visible {
  color: #f3c56c;
  outline: none;
}
/* DATA LEARNING TRACK END */

.section-workstyle {
  background: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(17, 20, 24, 0.08);
}

.workstyle-card span {
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 830;
}

.workstyle-card h3 {
  margin-top: 34px;
}

/* HOBBIES SECTION START: személyes blokk, egyben törölhető */
.section-hobbies {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(237, 247, 243, 0.68)),
    var(--paper);
  border-top: 1px solid rgba(17, 20, 24, 0.08);
}

.hobby-card {
  border: 1px solid rgba(17, 20, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 32px rgba(17, 20, 24, 0.06);
}

.hobby-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: rgba(10, 127, 120, 0.1);
  color: var(--teal-dark);
  margin-bottom: 18px;
}

.hobby-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hobby-card h3 {
  font-size: 1.05rem;
}

.hobby-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.hobby-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.hobby-card {
  min-height: 210px;
  padding: 20px;
}

.hobby-card.wide {
  grid-column: span 2;
}
/* HOBBIES SECTION END */

/* JOB SEARCH TIMELINE START: frissíthető álláskeresési napló */
.section-joblog {
  scroll-margin-top: 88px;
  background:
    linear-gradient(135deg, rgba(17, 20, 24, 0.92), rgba(10, 95, 90, 0.86)),
    var(--code);
  color: var(--surface);
  border-top: 1px solid rgba(17, 20, 24, 0.08);
}

.section-joblog .eyebrow {
  color: #8fe0d8;
}

.section-joblog .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.joblog-timeline {
  position: relative;
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.joblog-timeline::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 118px;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, #8fe0d8, rgba(215, 155, 37, 0.78));
}

.joblog-item {
  position: relative;
  display: grid;
  grid-template-columns: 104px 76px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
}

.joblog-item::before {
  position: absolute;
  top: 50%;
  left: 111px;
  width: 16px;
  height: 16px;
  border: 3px solid var(--code);
  border-radius: 50%;
  content: "";
  background: var(--amber);
  transform: translateY(-50%);
}

.joblog-item time {
  color: #8fe0d8;
  font-size: 0.9rem;
  font-weight: 830;
  letter-spacing: 0;
}

.joblog-day {
  display: inline-grid;
  min-width: 58px;
  min-height: 34px;
  place-items: center;
  justify-self: start;
  border: 1px solid rgba(143, 224, 216, 0.38);
  border-radius: 8px;
  background: rgba(143, 224, 216, 0.1);
  color: #f3c56c;
  font-size: 0.88rem;
  font-weight: 840;
}

.joblog-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 450;
}
/* JOB SEARCH TIMELINE END */

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 44px;
  align-items: center;
  padding: 62px 5vw;
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(17, 20, 24, 0.08);
}

.contact-actions {
  justify-content: flex-start;
  margin-top: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 5vw;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer a {
  font-weight: 760;
  color: var(--teal-dark);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .identity-visual {
    max-width: 620px;
  }

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

  .target-panel,
  .contact-section,
  .section-learning,
  .material-card,
  .practice-card {
    grid-template-columns: 1fr;
  }

  .target-tags {
    justify-content: flex-start;
  }

  .results-grid,
  .workstyle-grid,
  .learning-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .material-preview {
    max-width: 420px;
  }

  .practice-tags {
    justify-content: flex-start;
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lead,
  .role-line,
  .section-heading p,
  .learning-copy p,
  .contact-section p {
    font-size: 1rem;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero-stats,
  .service-grid,
  .project-grid,
    .results-grid,
    .workstyle-grid,
    .learning-track,
    .hobby-card-grid,
    .skills-layout {
      grid-template-columns: 1fr;
  }

  .hobby-card.wide {
    grid-column: auto;
  }

  .identity-visual {
    min-height: 0;
    padding: 22px;
  }

  .terminal-panel {
    margin-left: 0;
    margin-top: 18px;
  }

  .portrait-wrap {
    width: 176px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .joblog-timeline {
    gap: 12px;
    margin-top: 30px;
  }

  .joblog-timeline::before {
    top: 18px;
    bottom: 18px;
    left: 24px;
  }

  .joblog-item {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    padding: 16px 16px 16px 58px;
  }

  .joblog-item::before {
    top: 24px;
    left: 17px;
    transform: none;
  }

  .joblog-day {
    min-width: 54px;
  }

  .section,
  .contact-section {
    padding-block: 46px;
  }

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

@media (max-width: 470px) {
  .brand {
    width: 100%;
  }

  .site-nav a {
    padding-inline: 8px;
  }

  h1 {
    font-size: 2.25rem;
  }

  .joblog-item {
    padding: 15px 14px 15px 52px;
  }

  .joblog-timeline::before {
    left: 20px;
  }

  .joblog-item::before {
    left: 13px;
  }

  .terminal-panel code {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
