:root {
  --bg: #f6f7f4;
  --surface: #ffffff;
  --surface-muted: #eef1ed;
  --text: #161a17;
  --muted: #667068;
  --line: #dde3dc;
  --accent: #315f4e;
  --accent-dark: #173a30;
  --accent-soft: #dbe7df;
  --shadow: 0 24px 70px rgba(32, 38, 34, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  line-height: 1.6;
}

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

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

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

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 247, 244, 0.88);
  border-bottom: 1px solid rgba(223, 222, 212, 0.75);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 74px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(219, 231, 223, 0.86), rgba(247, 245, 239, 0.08) 48%),
    var(--bg);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-letter,
.hero-glow {
  position: absolute;
  pointer-events: none;
  will-change: transform;
}

.hero-bg-letter {
  opacity: 0.16;
  filter: blur(0);
}

.hero-bg-letter-a {
  width: clamp(560px, 52vw, 900px);
  top: -6%;
  left: 52%;
  animation: hero-float-a 10s ease-in-out infinite;
}

.hero-bg-letter-d {
  width: clamp(620px, 58vw, 980px);
  right: -18%;
  bottom: -16%;
  opacity: 0.14;
  animation: hero-float-d 12s ease-in-out infinite;
}

.hero-glow {
  width: 42vw;
  max-width: 620px;
  aspect-ratio: 1;
  border-radius: 999px;
  opacity: 0.62;
  filter: blur(44px);
}

.hero-glow-a {
  top: 2%;
  left: -12%;
  background: radial-gradient(circle, rgba(49, 95, 78, 0.38), rgba(142, 210, 178, 0.1) 45%, transparent 70%);
  animation: hero-glow-a 11s ease-in-out infinite;
}

.hero-glow-d {
  right: -10%;
  bottom: -14%;
  background: radial-gradient(circle, rgba(116, 94, 186, 0.2), rgba(90, 168, 190, 0.12) 42%, transparent 72%);
  animation: hero-glow-d 13s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 40px;
}

@keyframes hero-float-a {
  0% {
    transform: translate3d(0, 0, 0) rotate(-24deg) scale(1);
  }

  50% {
    transform: translate3d(110px, 116px, 0) rotate(34deg) scale(1.18);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(-24deg) scale(1);
  }
}

@keyframes hero-float-d {
  0% {
    transform: translate3d(0, 0, 0) rotate(28deg) scale(1);
  }

  50% {
    transform: translate3d(-130px, -126px, 0) rotate(-36deg) scale(1.16);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(28deg) scale(1);
  }
}

@keyframes hero-glow-a {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(190px, 94px, 0) scale(1.35);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-glow-d {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-180px, -116px, 0) scale(1.38);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.hero-title {
  margin-bottom: 28px;
  color: var(--accent-dark);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 800;
}

.hero-text,
.about p,
.contact-box p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.cssbuttons-io-button {
  min-height: 2.8em;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 0.9em;
  padding: 0.35em 3.3em 0.35em 1.2em;
  background: var(--accent);
  color: #fff;
  box-shadow: inset 0 0 1.6em -0.6em var(--accent-dark), 0 16px 36px rgba(49, 95, 78, 0.22);
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: transform 180ms ease, background 180ms ease;
}

.cssbuttons-io-button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.cssbuttons-io-button .icon {
  width: 2.2em;
  height: 2.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0.3em;
  border-radius: 0.7em;
  background: #fff;
  box-shadow: 0.1em 0.1em 0.6em 0.2em rgba(23, 58, 48, 0.28);
  color: var(--accent);
  transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
}

.cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}

.hero-image {
  margin: 0;
}

.hero-image img {
  width: 100%;
  max-height: calc(100vh - 98px);
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 0.93rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 36px rgba(49, 95, 78, 0.22);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-dark);
}

.narrow {
  max-width: 880px;
}

.about {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #fbfbf7;
}

.about-stage {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.about-track {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  will-change: transform;
}

.about-panel {
  min-height: 100vh;
  width: 100vw;
  flex: 0 0 100vw;
  display: flex;
  align-items: center;
  padding: 112px 0;
}

.about-panel-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.about-headline {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 9vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.about-panel:not(:first-child) .about-headline {
  max-width: 1050px;
  font-size: clamp(2.25rem, 6vw, 6.5rem);
  line-height: 0.95;
}

.about-word {
  display: inline-block;
  transform-origin: left center;
  will-change: transform, opacity;
}

.about-word-accent {
  color: #315f4e;
}

.about-body {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.5;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-tags span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(49, 95, 78, 0.22);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
  will-change: transform, opacity;
}

.about-bg-words {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 6vw;
  color: var(--accent-dark);
  opacity: 0.08;
  pointer-events: none;
  white-space: nowrap;
  will-change: transform;
}

.about-bg-words span {
  font-size: clamp(4rem, 14vw, 13rem);
  font-weight: 900;
  line-height: 0.85;
}

.about-panel-inner {
  position: relative;
}

.muted {
  background: var(--surface-muted);
}

.tools-marquee {
  overflow: hidden;
  padding: 56px 0;
  background: #315f4e;
}

.tools-marquee-heading {
  width: min(1400px, calc(100% - 40px));
  max-width: none;
  margin: 0 auto 40px;
  text-align: center;
}

.tools-marquee-heading h2 {
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1;
}

.tools-marquee-heading p:last-child {
  width: fit-content;
  max-width: 100%;
  margin: 16px auto 0;
  color: #fff;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  text-align: center;
  white-space: nowrap;
}

.tools-marquee-window {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.tools-marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 8px 16px;
  will-change: transform;
}

.tools-marquee-track .tool-logo {
  flex: 0 0 auto;
  width: 132px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.tools-marquee-track .tool-logo img {
  max-width: 100%;
  max-height: 32px;
  object-fit: contain;
}

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

.section-heading h2 span {
  color: #315f4e;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 42px;
  align-items: end;
}

.section-heading.split p:last-child {
  color: var(--muted);
}

.skills-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding-left: 52px;
}

.skill-card {
  width: 210px;
  height: 280px;
  display: flex;
  position: relative;
  left: 0;
  flex: 0 0 210px;
  border-radius: 10px;
  margin-left: -52px;
  background: #10241d;
  box-shadow: -1rem 0 3rem rgba(12, 28, 22, 0.18);
  color: #fff;
  transition: transform 0.4s ease-out, left 0.4s ease-out, text-shadow 0.4s ease-out;
}

.skill-card:first-child {
  margin-left: 0;
}

.skill-card:hover {
  transform: translateY(-20px);
  text-shadow: 2px 2px 8px rgba(142, 210, 178, 0.45);
}

.skill-card:hover ~ .skill-card {
  left: 50px;
  transform: rotateX(-15deg) rotateY(10deg);
}

.skill-title {
  position: absolute;
  top: 18px;
  left: 20px;
  right: 16px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.15;
}

.skill-content {
  position: absolute;
  top: 84px;
  left: 0;
  right: 0;
  padding: 0 20px;
  color: #dcece5;
  font-size: 0.78rem;
  line-height: 1.45;
}

.skill-button {
  position: absolute;
  top: 204px;
  left: 20px;
  min-width: 112px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #315f4e;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  transition: background 0.4s ease-out, box-shadow 0.4s ease-out;
}

.skill-card:hover .skill-button {
  background: #4f8b73;
  box-shadow:
    0 0 20px rgba(79, 139, 115, 0.42),
    0 5px 5px -1px rgba(49, 95, 78, 0.28),
    inset 4px 4px 8px rgba(185, 232, 210, 0.42),
    inset -4px -4px 8px rgba(24, 70, 55, 0.35);
}

.skill-bar {
  position: absolute;
  top: 250px;
  left: 0;
  width: 100%;
  height: 5px;
}

.skill-emptybar {
  position: absolute;
  inset: 0;
  background: #0b1813;
}

.skill-filledbar {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 0;
  background: linear-gradient(90deg, rgba(49, 95, 78, 0.9), #8ed2b2 100%);
  transition: width 0.6s ease-out;
}

.skill-card:hover .skill-filledbar {
  width: 100%;
  transition: width 0.4s ease-out;
}

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

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 54px rgba(32, 38, 34, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.project-card:hover {
  border-color: rgba(49, 95, 78, 0.28);
  box-shadow: 0 28px 74px rgba(32, 38, 34, 0.13);
  transform: translateY(-5px);
}

.browser-card {
  border-bottom: 1px solid var(--line);
  background: #eff0eb;
}

.browser-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  background: #fbfbf8;
  border-bottom: 1px solid var(--line);
}

.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #c8cbc2;
}

.screenshot-frame {
  height: 390px;
  overflow: hidden;
  background: #f2f2ee;
}

.screenshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1), object-position 900ms ease;
}

.project-card:hover .screenshot-frame img {
  transform: scale(1.035);
  object-position: center 36%;
}

.project-content {
  padding: 24px;
}

.project-content p {
  min-height: 84px;
  margin-bottom: 22px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 28px;
  height: 1px;
  margin-left: 10px;
  background: currentColor;
  transition: width 180ms ease;
}

.text-link:hover::after {
  width: 44px;
}

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

.process-grid article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(49, 95, 78, 0.16);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(32, 38, 34, 0.08);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.process-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: #315f4e;
  transform: translateY(-100%);
  transition: transform 500ms ease;
}

.process-grid article:hover {
  border-color: rgba(49, 95, 78, 0.2);
  box-shadow: 0 24px 54px rgba(49, 95, 78, 0.18);
  transform: translateY(-8px);
}

.process-grid article:hover::after {
  transform: translateY(0);
}

.process-grid span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(49, 95, 78, 0.1);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  transition: background 300ms ease, color 300ms ease, transform 300ms ease;
}

.process-grid article:hover span {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-4px);
}

.process-grid h3 {
  margin-bottom: 0;
  transition: color 300ms ease, transform 300ms ease;
}

.process-grid article:hover h3 {
  color: #fff;
  transform: translateY(-2px);
}

.contact {
  padding-bottom: 80px;
}

.contact-box {
  border-radius: var(--radius);
  padding: clamp(36px, 7vw, 74px);
  background: var(--accent-dark);
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-box .eyebrow,
.contact-box p {
  color: #c8d9cf;
}

.contact-box .button-primary {
  margin-top: 18px;
  background: #fff;
  color: var(--accent-dark);
  box-shadow: none;
}

.contact-box .button-primary:hover {
  background: var(--accent-soft);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin-bottom: 0;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 20, 0.44);
  backdrop-filter: blur(14px);
}

.contact-modal__dialog {
  position: relative;
  width: min(560px, 100%);
  border: 1px solid rgba(223, 227, 220, 0.78);
  border-radius: 18px;
  padding: clamp(28px, 5vw, 42px);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  box-shadow: 0 28px 90px rgba(16, 24, 20, 0.28);
  transform: translateY(14px) scale(0.96);
  transition: transform 220ms ease;
}

.contact-modal.is-open .contact-modal__dialog {
  transform: translateY(0) scale(1);
}

.contact-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--accent-dark);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.contact-modal h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 0.98;
}

.contact-modal p {
  color: var(--muted);
}

.contact-modal__note {
  margin-top: 18px;
  margin-bottom: 26px;
  color: var(--accent-dark);
  font-weight: 800;
}

.contact-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .section {
    padding: 76px 0;
  }

  .hero-grid,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .skills-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding-left: 0;
  }

  .skill-card,
  .skill-card:first-child {
    width: 100%;
    margin-left: 0;
    flex-basis: auto;
  }

  .skill-card:hover ~ .skill-card {
    left: 0;
    transform: none;
  }

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

}

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

  .nav {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 4px;
    font-size: 0.78rem;
  }

  .nav-links a {
    padding: 8px 6px;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-bg-letter {
    opacity: 0.08;
  }

  .hero-bg-letter-a {
    width: clamp(220px, 68vw, 340px);
    top: 7%;
    left: -28%;
  }

  .hero-bg-letter-d {
    width: clamp(240px, 74vw, 360px);
    right: -30%;
    bottom: 12%;
  }

  .hero-glow {
    width: 78vw;
    opacity: 0.26;
  }

  .hero-grid {
    gap: 36px;
  }

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

  .hero-actions .cssbuttons-io-button {
    width: 100%;
    justify-content: center;
  }

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

  .screenshot-frame {
    height: 330px;
  }

  .project-content p {
    min-height: 0;
  }

  .about {
    padding: 0;
  }

  .about-stage {
    min-height: auto;
    overflow: visible;
  }

  .about-bg-words {
    display: none;
  }

  .about-track {
    width: auto;
    display: grid;
    transform: none;
  }

  .about-panel {
    min-height: auto;
    width: auto;
    padding: 72px 0;
    border-bottom: 1px solid var(--line);
  }

  .about-panel-inner {
    width: min(100% - 28px, 1140px);
  }

  .about-headline,
  .about-panel:not(:first-child) .about-headline {
    font-size: clamp(2.75rem, 14vw, 4.25rem);
    line-height: 0.95;
  }

  .about-body {
    max-width: none;
  }

  .tools-marquee {
    padding: 56px 0;
  }

  .tools-marquee-heading p:last-child {
    width: auto;
    white-space: normal;
  }

  .tools-marquee-track {
    gap: 10px;
    padding: 6px 14px;
  }

  .tools-marquee-track .tool-logo {
    width: 104px;
    height: 56px;
    padding: 12px 16px;
  }

  .tools-marquee-track .tool-logo img {
    max-height: 26px;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 3rem;
  }

  .section {
    padding: 64px 0;
  }

  .skill-card,
  .process-grid article {
    border-radius: var(--radius);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-letter,
  .hero-glow {
    animation: none;
  }

  .tools-marquee-window {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .tools-marquee-track {
    width: min(1140px, calc(100% - 28px));
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    transform: none;
  }

  .tools-marquee-track .marquee-clone {
    display: none;
  }

  .skill-card,
  .skill-card:hover,
  .skill-card:hover ~ .skill-card,
  .skill-filledbar,
  .skill-card:hover .skill-filledbar {
    transition: none;
    transform: none;
    left: 0;
  }

  .process-grid article,
  .process-grid article::after,
  .process-grid span,
  .process-grid h3 {
    transition: none;
  }

  .process-grid article:hover,
  .process-grid article:hover span,
  .process-grid article:hover h3 {
    transform: none;
  }
}
