:root {
  --bg: #ffffff;
  --text: #080808;
  --muted: #616161;
  --subtle: #8a8a8a;
  --line: #dadde3;
  --line-strong: #b8c3d9;
  --soft: #f5f7fa;
  --soft-2: #e8edf7;
  --dark: #0b1220;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-soft: #dbeafe;
  --on-dark: #ffffff;
  --shadow: 0 24px 70px rgba(11, 18, 32, 0.1);
  --shadow-soft: 0 14px 34px rgba(11, 18, 32, 0.07);
  --header-height: 76px;
}

[data-theme="dark"] {
  --bg: #080c14;
  --text: #f8fafc;
  --muted: #aeb8c7;
  --subtle: #8090a5;
  --line: #1f2a3a;
  --line-strong: #334155;
  --soft: #101827;
  --soft-2: #162033;
  --dark: #0b1220;
  --accent: #38bdf8;
  --accent-dark: #7dd3fc;
  --accent-soft: #0f2d40;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.48);
  --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  background:
    linear-gradient(rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 44px 44px;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

[data-theme="dark"] body {
  background:
    radial-gradient(circle at 18% 8%, rgba(56, 189, 248, 0.18), transparent 28%),
    radial-gradient(circle at 82% 4%, rgba(37, 99, 235, 0.16), transparent 24%),
    linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px),
    var(--bg);
  background-size: 100% 100%, 100% 100%, 44px 44px, 44px 44px, auto;
}

body.nav-open {
  overflow: hidden;
}

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

a,
p,
h1,
h2,
h3,
span {
  overflow-wrap: break-word;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

[data-theme="dark"] .site-header {
  background: rgba(8, 12, 20, 0.82);
  border-bottom-color: rgba(148, 163, 184, 0.18);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--accent);
  color: var(--on-dark);
  border: 1px solid var(--accent);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  border-radius: 8px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  background: var(--accent);
  color: var(--on-dark);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.theme-toggle {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-left: 4px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: var(--accent);
  transform: translateY(-1px);
  outline: none;
}

.theme-icon {
  position: absolute;
  width: 13px;
  height: 13px;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.theme-icon-sun {
  border: 2px solid var(--accent);
  border-radius: 50%;
}

.theme-icon-sun::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from 0deg,
    var(--accent) 0deg 10deg,
    transparent 10deg 45deg
  );
  mask: radial-gradient(circle, transparent 0 7px, #000 8px);
}

.theme-icon-moon {
  border-radius: 50%;
  box-shadow: -4px 0 0 var(--accent);
  opacity: 0;
  transform: translateX(4px) rotate(-18deg);
}

[data-theme="dark"] .theme-icon-sun {
  opacity: 0;
  transform: rotate(90deg) scale(0.6);
}

[data-theme="dark"] .theme-icon-moon {
  opacity: 1;
  transform: translateX(4px) rotate(-18deg) scale(1);
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  scroll-margin-top: calc(var(--header-height) + 24px);
  padding: 104px 0;
}

.section-muted {
  background: rgba(246, 246, 246, 0.92);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

[data-theme="dark"] .section-muted {
  background: rgba(16, 24, 39, 0.82);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 86px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 64px;
}

.eyebrow,
.section-label,
.project-type {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin-bottom: 12px;
  font-size: clamp(2.7rem, 5.6vw, 5.2rem);
  line-height: 1;
  letter-spacing: 0;
}

#typed-name {
  display: inline-block;
  max-width: 100%;
  min-width: 0;
}

#typed-name.is-typing::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 0.78em;
  margin-left: 0.08em;
  background: var(--accent);
  animation: cursor-blink 800ms steps(1) infinite;
  transform: translateY(0.08em);
}

@keyframes cursor-blink {
  50% {
    opacity: 0;
  }
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-text {
  max-width: 670px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-title {
  display: inline-flex;
  max-width: 100%;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 8px 12px;
  background: var(--accent-soft);
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 0.98rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-weight: 800;
  border: 1px solid var(--dark);
  border-radius: 8px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.btn-primary {
  background: var(--accent);
  color: var(--on-dark);
  border-color: var(--accent);
  box-shadow: 8px 8px 0 var(--accent-soft);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 5px 5px 0 var(--line-strong);
}

.btn-secondary {
  background: var(--bg);
  color: var(--text);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--soft);
}

.hero-stats {
  display: grid;
  max-width: 560px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

[data-theme="dark"] .hero-stats {
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(148, 163, 184, 0.18);
}

.hero-stats div {
  min-width: 0;
  padding: 18px 16px;
  border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.5rem;
  line-height: 1;
}

.hero-stats span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.terminal-card {
  overflow: hidden;
  max-width: 100%;
  border: 1px solid var(--dark);
  border-radius: 10px;
  background: var(--dark);
  color: var(--on-dark);
  box-shadow: 16px 16px 0 var(--soft-2);
}

[data-theme="dark"] .terminal-card {
  background: #07111f;
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow: 16px 16px 0 rgba(56, 189, 248, 0.12);
}

.terminal-top {
  display: flex;
  gap: 7px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.terminal-top span {
  width: 10px;
  height: 10px;
  border: 1px solid var(--accent-soft);
  border-radius: 50%;
}

.terminal-body {
  display: grid;
  gap: 8px;
  padding: 22px;
  font-family: "Courier New", monospace;
  font-size: 0.95rem;
}

.terminal-body p {
  margin: 0;
  overflow-wrap: anywhere;
}

.terminal-body span {
  color: #93c5fd;
}

.focus-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.focus-list span {
  display: flex;
  min-width: 0;
  min-height: 74px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

[data-theme="dark"] .focus-list span {
  background: rgba(15, 23, 42, 0.78);
  border-color: rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow-soft);
}

.focus-list span:hover {
  border-color: var(--accent);
}

.section-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
}

.section-copy {
  position: relative;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-copy::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 4px;
  width: 2px;
  height: calc(100% - 8px);
  background: var(--accent);
}

.section-copy p:last-child,
.education-card p:last-child,
.contact-intro {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.skills-grid,
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.skill-card,
.project-card,
.education-card {
  min-width: 0;
  min-height: 100%;
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

[data-theme="dark"] .skill-card,
[data-theme="dark"] .project-card,
[data-theme="dark"] .education-card {
  background: rgba(15, 23, 42, 0.84);
  border-color: rgba(148, 163, 184, 0.16);
}

.skill-card {
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--accent);
}

.skill-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.skill-card li {
  padding: 8px 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

[data-theme="dark"] .skill-card li {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.18);
  color: #dbeafe;
}

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

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding-top: 72px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 5px solid var(--accent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.1);
}

.project-card:hover::after {
  opacity: 1;
}

.project-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: var(--accent-soft);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
  z-index: 0;
}

[data-theme="dark"] .project-number {
  color: rgba(56, 189, 248, 0.18);
}

.project-card .project-type,
.project-card h3,
.project-card p {
  position: relative;
  z-index: 1;
}

.project-card p:last-child,
.education-card p {
  color: var(--muted);
}

.education-card {
  border-color: var(--accent);
  box-shadow: 12px 12px 0 var(--soft-2);
}

.education-title {
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 800;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.16), transparent 42%),
    var(--dark);
  color: var(--on-dark);
}

[data-theme="dark"] .contact-section {
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.1), transparent 42%),
    #07111f;
}

[data-theme="dark"] .contact-section .section-label,
[data-theme="dark"] .contact-section .contact-intro,
[data-theme="dark"] .contact-note span,
[data-theme="dark"] .contact-detail span {
  color: #b9c6d8;
}

[data-theme="dark"] .education-card p,
[data-theme="dark"] .project-card p:last-child,
[data-theme="dark"] .section-copy,
[data-theme="dark"] .hero-text,
[data-theme="dark"] .hero-stats span,
[data-theme="dark"] .project-type,
[data-theme="dark"] .footer {
  color: #d8d8d8;
}

[data-theme="dark"] .footer {
  border-top-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .hero-title {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.28);
  color: #bae6fd;
}

[data-theme="dark"] .btn-primary {
  box-shadow: 8px 8px 0 rgba(56, 189, 248, 0.12);
}

[data-theme="dark"] .btn-secondary,
[data-theme="dark"] .nav-toggle,
[data-theme="dark"] .theme-toggle {
  background: rgba(15, 23, 42, 0.86);
  border-color: rgba(148, 163, 184, 0.2);
}

[data-theme="dark"] .project-card:hover {
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.34);
}

[data-theme="dark"] .contact-note,
[data-theme="dark"] .contact-links a {
  background: rgba(15, 23, 42, 0.72);
  border-color: rgba(148, 163, 184, 0.18);
}

[data-theme="dark"] .contact-icon {
  color: #04111f;
}

[data-theme="dark"] .contact-links a:hover,
[data-theme="dark"] .contact-links a:focus-visible {
  background: rgba(15, 23, 42, 0.94);
  border-color: rgba(56, 189, 248, 0.34);
}

.contact-section .section-label,
.contact-section .contact-intro {
  color: #c9c9c9;
}

.contact-intro {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-note {
  display: inline-grid;
  gap: 2px;
  margin-top: 28px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-note span,
.contact-detail span {
  color: #c9d4e3;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-note strong {
  color: var(--on-dark);
  font-size: 0.96rem;
}

.contact-links {
  display: grid;
  gap: 14px;
}

.contact-links a {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 84px;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--on-dark);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.contact-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 4px solid var(--accent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.contact-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: var(--accent);
  border-radius: 8px;
  color: var(--on-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-detail {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  gap: 4px;
}

.contact-detail strong {
  color: var(--on-dark);
  font-size: 1rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-links a::after {
  position: relative;
  z-index: 1;
  content: "\2197";
  color: #dbeafe;
  font-size: 1rem;
  font-weight: 800;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--on-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  outline: none;
}

.contact-links a:hover::before,
.contact-links a:focus-visible::before {
  opacity: 1;
}

.footer {
  padding: 28px 0;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #c9c9c9;
  font-size: 0.92rem;
}

.footer p {
  margin: 0;
}

body.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

}

@media (max-width: 920px) {
  .hero-grid,
  .section-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .section-copy::before {
    display: none;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

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

  .nav-links {
    position: fixed;
    inset: var(--header-height) 14px auto 14px;
    max-height: calc(100dvh - var(--header-height) - 28px);
    overflow-y: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 12px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  }

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

  .nav-links a {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 72px 0;
  }

  .section {
    padding: 76px 0;
  }

  .skills-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero-stats,
  .focus-list {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 2.75rem);
    line-height: 1.06;
  }

  h2 {
    font-size: 2rem;
  }

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

  .btn-primary {
    box-shadow: none;
  }

  .skill-card,
  .project-card,
  .education-card {
    padding: 22px;
  }

  .project-card {
    min-height: auto;
    padding-top: 68px;
  }

  .terminal-body {
    padding: 18px;
    font-size: 0.86rem;
  }

  .contact-links a {
    min-height: 78px;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 16px;
    overflow-wrap: anywhere;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
  }

  .contact-detail strong {
    font-size: 0.94rem;
  }
}

@media (max-width: 360px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(100% - 24px, 1120px);
  }

  .nav {
    gap: 8px;
  }

  .brand {
    gap: 8px;
    font-size: 0.88rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 0.78rem;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .theme-toggle {
    width: 32px;
    height: 32px;
    margin-left: 0;
  }

  .hero {
    padding: 56px 0;
  }

  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: clamp(2rem, 10.5vw, 2.32rem);
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-title {
    border-radius: 8px;
    font-size: 0.94rem;
  }

  .terminal-card,
  .education-card {
    box-shadow: none;
  }

  .project-number {
    font-size: 2.8rem;
    right: 18px;
  }

  .contact-links a {
    grid-template-columns: 1fr auto;
  }

  .contact-icon {
    display: none;
  }
}
