:root {
  --bg-primary: #000000;
  --bg-secondary: #464545;
  --bg-card: #181818;
  --border-soft: #7d817b;
  --surface-light: #dfdedc;
  --surface-muted: #a6a7a2;
  --text-primary: #dfdedc;
  --text-secondary: #c9c9c6;
  --text-muted: #a6a7a2;
  --accent-primary: #00acac;
  --accent-secondary: #47c1c1;
  --accent-glow: #8ad8d3;
  --success: #9fd0a9;
  --hero-gradient: linear-gradient(135deg, #00acac 0%, #47c1c1 100%);
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.36);
  --shadow-glow: 0 0 0 1px rgba(0, 172, 172, 0.14), 0 26px 70px rgba(0, 172, 172, 0.12);
  --radius-card: 24px;
  --radius-control: 16px;
  --container: min(1180px, calc(100vw - 40px));
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(0, 172, 172, 0.14), transparent 22%),
    linear-gradient(180deg, #050505 0%, #151515 100%);
  color: var(--text-primary);
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
  padding-top: var(--header-height);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid rgba(166, 167, 162, 0.12);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled:not(.is-on-hero) {
  background: rgba(9, 9, 9, 0.96);
  border-color: rgba(0, 172, 172, 0.18);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.site-header.is-on-hero {
  background: rgba(0, 0, 0, 0.98);
  border-color: transparent;
  box-shadow: none;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-text {
  font-family: "Syne", sans-serif;
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
  color: var(--text-primary);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--hero-gradient);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-primary);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--accent-primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(166, 167, 162, 0.22);
  border-radius: 14px;
  background: rgba(70, 69, 69, 0.28);
  color: var(--text-primary);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  padding: 36px 0 72px;
  overflow: hidden;
  isolation: isolate;
}
.hero-spline-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-spline-bg iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: auto;
  transform: scale(1.35);
  transform-origin: center center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.42) 42%,
      rgba(0, 0, 0, 0.58) 100%
    );
}
.hero-backdrop,
.hero-socials,
.hero-grid,
.hero-mail {
  position: relative;
  z-index: 2;
}
.hero-copy,
.hero-visual {
  position: relative;
  z-index: 3;
}

.hero-backdrop {
  position: absolute;
  inset: auto 4% -140px auto;
  width: min(620px, 54vw);
  height: min(620px, 54vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 172, 172, 0.18), transparent 68%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-socials {
  position: absolute;
  left: 0;
  width: 72px;
  top: 35%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transform: translateY(-8%);
}

.hero-socials a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--text-primary);
  transition: transform 180ms ease, color 180ms ease, background-color 180ms ease;
}

.hero-socials a:hover,
.hero-socials a:focus-visible {
  transform: translateY(-2px);
  color: var(--accent-primary);
  background: rgba(0, 172, 172, 0.08);
}

.hero-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.hero-copy,
.hero-visual {
  position: relative;
  z-index: 3;
}
.hero-backdrop {
  position: absolute;
  inset: auto 4% -140px auto;
  width: min(620px, 54vw);
  height: min(620px, 54vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 172, 172, 0.16), transparent 68%);
  filter: blur(24px);
  pointer-events: none;
  z-index: 2;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1.18fr);
  align-items: center;
  gap: 24px;
  min-height: calc(100vh - 120px);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding-left: clamp(8px, 1vw, 18px);
}

.hero-eyebrow {
  margin: 0 0 14px;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-title {
  margin: 0;
}

.hero-title-accent {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: clamp(4.8rem, 9vw, 7.6rem);
  line-height: 0.88;
  letter-spacing: -0.07em;
  color: var(--accent-primary);
  text-shadow: 0 10px 30px rgba(0, 172, 172, 0.22);
}

.hero-role-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 22px 0 0;
  min-height: 48px;
  color: var(--text-primary);
  font-family: "Syne", sans-serif;
  font-size: clamp(1.18rem, 1.8vw, 1.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.hero-role-prefix {
  display: inline-block;
  min-width: 11.5ch;
  text-align: left;
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero-role-prefix.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

.hero-role-accent {
  color: var(--text-primary);
  opacity: 0.96;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 38px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 8px;
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.hero-button-primary {
  background: var(--hero-gradient);
  color: #041414;
  box-shadow: 0 12px 28px rgba(0, 172, 172, 0.22);
}

.hero-button-secondary {
  color: rgba(223, 222, 220, 0.92);
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 56px;
  margin-top: 42px;
  border: 2px solid rgba(166, 167, 162, 0.9);
  border-radius: 999px;
}

.hero-scroll-wheel {
  width: 4px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent-primary);
  animation: scrollWheel 1.6s ease-in-out infinite;
}

.hero-visual {
  position: relative;
  min-height: 700px;
}

.hero-outline-name {
  position: absolute;
  right: 12px;
  top: 152px;
  z-index: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(6rem, 14vw, 11rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(166, 167, 162, 0.18);
  opacity: 0.62;
}

.portrait-block,
.portrait-frame {
  position: absolute;
  pointer-events: none;
}

.portrait-block {
  z-index: 0;
  background: linear-gradient(135deg, rgba(0, 172, 172, 0.88), rgba(166, 167, 162, 0.9));
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.24);
}

.portrait-block-large {
  top: 24px;
  right: 68px;
  width: min(25vw, 350px);
  aspect-ratio: 1 / 1.34;
}

.portrait-block-small {
  bottom: 54px;
  left: 86px;
  width: min(11vw, 156px);
  aspect-ratio: 1;
}

.portrait-frame {
  border: 3px solid rgba(223, 222, 220, 0.82);
}

.portrait-frame-main {
  top: 86px;
  left: 122px;
  width: min(25vw, 390px);
  height: min(31vw, 438px);
}

.portrait-frame-secondary {
  top: 192px;
  right: 38px;
  width: 60px;
  height: 142px;
  border-color: rgba(166, 167, 162, 0.22);
}

.hero-portrait {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  margin: 0;
  transform: translateY(-56px);
}

.hero-portrait img {
  width: min(100%, 560px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 48px rgba(2, 8, 20, 0.4));
}

.hero-mail {
  position: absolute;
  left: clamp(28px, 3vw, 42px);
  bottom: 88px;
  z-index: 2;
}

.hero-mail a {
  color: rgba(223, 222, 220, 0.92);
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.about {
  position: relative;
  padding: 120px 0 110px;
  background:
    radial-gradient(circle at 16% 24%, rgba(0, 172, 172, 0.12), transparent 22%),
    linear-gradient(180deg, #dfdedc 0%, #d4d3cf 100%);
  color: #111111;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(200px, 0.56fr) minmax(520px, 1.3fr) minmax(180px, 0.48fr);
  align-items: center;
  gap: 32px;
}

.about-media {
  position: relative;
  min-height: 420px;
}

.about-photo-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.14);
}

.about-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-photo-frame-tall {
  margin-top: 84px;
}

.about-shape,
.about-outline {
  position: absolute;
  pointer-events: none;
}

.about-shape {
  background: var(--hero-gradient);
  box-shadow: 0 20px 44px rgba(0, 172, 172, 0.16);
}

.about-shape-left {
  left: -38px;
  bottom: -34px;
  width: 200px;
  height: 200px;
}

.about-shape-right {
  right: -30px;
  top: 38px;
  width: 170px;
  height: 170px;
}

.about-outline-left {
  left: -140px;
  top: 58px;
  width: 230px;
  height: 190px;
  border: 2px solid rgba(70, 69, 69, 0.16);
}

.about-copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.about-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent-primary);
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.about-title {
  margin: 0;
  color: #111111;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.3rem, 3.4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.about-title + .about-title {
  margin-top: 2px;
}

.about-title span {
  color: var(--accent-primary);
}

.about-location {
  display: inline-block;
  margin-top: 18px;
  color: #464545;
  font-family: "Syne", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.about-text {
  margin-top: 32px;
  color: #464545;
  max-width: 64ch;
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-text p {
  margin: 0;
}

.about-text p + p {
  margin-top: 18px;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.about-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 172, 172, 0.2);
  background: rgba(255, 255, 255, 0.42);
  color: #464545;
  font-size: 0.94rem;
  font-weight: 600;
}

.about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  margin-top: 36px;
  border-radius: 10px;
  background: var(--hero-gradient);
  color: #041414;
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: 0 14px 28px rgba(0, 172, 172, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.about-button:hover,
.about-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 172, 172, 0.26);
}

.experience {
  position: relative;
  padding: 118px 0 120px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 172, 172, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(23, 23, 23, 1) 100%);
}

.experience::before {
  content: "";
  position: absolute;
  left: 4%;
  top: 88px;
  width: min(280px, 22vw);
  height: min(280px, 22vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 172, 172, 0.12), transparent 68%);
  pointer-events: none;
}

.experience-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.experience-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent-secondary);
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.experience-heading h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.7rem, 4.6vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.experience-heading p {
  max-width: 64ch;
  margin: 22px 0 0;
  color: rgba(223, 222, 220, 0.76);
  font-size: 1rem;
  line-height: 1.8;
}

.experience-timeline {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  margin-top: 46px;
}

.experience-timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 168px;
  width: 1px;
  background: linear-gradient(180deg, rgba(0, 172, 172, 0.04) 0%, rgba(0, 172, 172, 0.3) 20%, rgba(0, 172, 172, 0.3) 80%, rgba(0, 172, 172, 0.04) 100%);
}

.experience-item {
  position: relative;
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.experience-item::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 159px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-primary);
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.96);
}

.experience-item-current::before {
  background: var(--surface-light);
  box-shadow:
    0 0 0 6px rgba(0, 0, 0, 0.96),
    0 0 18px rgba(0, 172, 172, 0.36);
}

.experience-meta {
  display: grid;
  justify-items: end;
  gap: 6px;
  padding-top: 4px;
  text-align: right;
}

.experience-date {
  color: var(--text-primary);
  font-family: "Syne", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.experience-mode,
.experience-place {
  color: rgba(223, 222, 220, 0.66);
  font-size: 0.9rem;
  line-height: 1.45;
}

.experience-card {
  padding: 28px 28px 24px;
  border: 1px solid rgba(166, 167, 162, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.014) 100%),
    rgba(24, 24, 24, 0.94);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.experience-item-current .experience-card {
  border-color: rgba(0, 172, 172, 0.28);
  box-shadow:
    0 0 0 1px rgba(0, 172, 172, 0.08),
    0 24px 54px rgba(0, 172, 172, 0.14);
}

.experience-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.experience-company {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-secondary);
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.experience-card h3 {
  margin: 0;
  max-width: 30ch;
  font-family: "Syne", sans-serif;
  font-size: 1.55rem;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.experience-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 10px;
}

.experience-badges span,
.experience-stack span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 172, 172, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(223, 222, 220, 0.86);
  font-size: 0.86rem;
  font-weight: 600;
}

.experience-copy {
  margin: 18px 0 0;
  max-width: 62ch;
  color: rgba(223, 222, 220, 0.72);
  font-size: 0.98rem;
  line-height: 1.75;
}

.experience-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.services {
  position: relative;
  padding: 118px 0 120px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 172, 172, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.98) 0%, rgba(33, 33, 33, 1) 100%);
}

.services::before {
  content: "";
  position: absolute;
  right: 4%;
  top: 92px;
  width: min(320px, 28vw);
  height: min(320px, 28vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 172, 172, 0.12), transparent 68%);
  pointer-events: none;
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.services-intro {
  max-width: 760px;
}

.services-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent-secondary);
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.services-intro h2 {
  margin: 0;
  max-width: 12ch;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.services-intro p {
  margin: 24px 0 0;
  color: rgba(223, 222, 220, 0.78);
  font-size: 1rem;
  line-height: 1.8;
}

.services-intro p a {
  display: inline-block;
  padding: 0 0.32rem;
  border-radius: 0.45rem;
  color: var(--accent-primary);
  font-weight: 700;
  text-decoration: none;
  background: rgba(0, 194, 209, 0.12);
  box-shadow: inset 0 -1px 0 rgba(0, 194, 209, 0.28);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.services-intro p a:hover,
.services-intro p a:focus-visible {
  background: rgba(0, 194, 209, 0.2);
  color: #ffffff;
  transform: translateY(-1px);
}

.services-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.services-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 172, 172, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(223, 222, 220, 0.88);
  font-size: 0.86rem;
  font-weight: 600;
}

.services-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  margin-top: 26px;
  border-radius: 10px;
  background: var(--hero-gradient);
  color: #041414;
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: 0 14px 28px rgba(0, 172, 172, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.services-button:hover,
.services-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 172, 172, 0.26);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 188px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(166, 167, 162, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.018) 100%),
    rgba(24, 24, 24, 0.92);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(0, 172, 172, 0.28);
  box-shadow: 0 22px 54px rgba(0, 172, 172, 0.12);
}

.service-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(0, 172, 172, 0.08);
  color: var(--accent-secondary);
  font-family: "Syne", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.service-card h3 {
  margin: 16px 0 0;
  color: var(--text-primary);
  font-family: "Syne", sans-serif;
  font-size: 1.16rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.service-card p {
  margin: 12px 0 0;
  max-width: none;
  color: rgba(223, 222, 220, 0.72);
  font-size: 0.88rem;
  line-height: 1.58;
}

.portfolio {
  position: relative;
  padding: 118px 0 120px;
  background: linear-gradient(
    180deg,
    rgba(70, 69, 69, 0.96) 0%,
    rgba(70, 69, 69, 0.96) 42%,
    rgba(223, 222, 220, 0.98) 42%,
    rgba(223, 222, 220, 0.98) 100%
  );
}

.portfolio::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 220px;
  width: 250px;
  height: 110px;
  border: 3px solid rgba(0, 172, 172, 0.28);
  border-right: 0;
  pointer-events: none;
}

.portfolio-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--surface-light);
}

.portfolio-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.portfolio-heading h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.portfolio-heading p {
  max-width: 620px;
  margin: 18px auto 0;
  color: rgba(223, 222, 220, 0.82);
  font-size: 1.04rem;
  line-height: 1.8;
}

.portfolio-heading p a {
  display: inline-block;
  padding: 0 0.32rem;
  border-radius: 0.45rem;
  color: var(--accent-primary);
  font-weight: 700;
  text-decoration: none;
  background: rgba(0, 194, 209, 0.12);
  box-shadow: inset 0 -1px 0 rgba(0, 194, 209, 0.28);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.portfolio-heading p a:hover,
.portfolio-heading p a:focus-visible {
  background: rgba(0, 194, 209, 0.2);
  color: #ffffff;
  transform: translateY(-1px);
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}

.portfolio-filter button {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  background: rgba(16, 21, 28, 0.08);
  color: rgba(16, 21, 28, 0.72);
  font-family: "Syne", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.portfolio-filter button:hover,
.portfolio-filter button:focus-visible {
  background: rgba(0, 194, 209, 0.12);
  color: var(--accent-primary);
  transform: translateY(-1px);
}

.portfolio-filter button.is-active {
  background: rgba(255, 255, 255, 0.96);
  color: var(--accent-primary);
  transform: translateY(-1px);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 46px;
  align-items: start;
}

.portfolio-bridge {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding: 28px 30px;
  border: 1px solid rgba(70, 69, 69, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.56);
  color: #111111;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.portfolio-bridge-copy {
  max-width: 700px;
}

.portfolio-bridge-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-primary);
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.portfolio-bridge h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.portfolio-bridge p {
  margin: 14px 0 0;
  color: #464545;
  font-size: 0.98rem;
  line-height: 1.75;
}

.portfolio-bridge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 12px;
  background: var(--accent-primary);
  color: #041414;
  font-family: "Syne", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.portfolio-bridge-link:hover,
.portfolio-bridge-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 172, 172, 0.22);
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  height: clamp(360px, 24vw, 390px);
  border-radius: 22px;
  background: #111111;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.portfolio-card.is-hidden {
  display: none;
}

.portfolio-card-media,
.portfolio-card-media img {
  width: 100%;
  height: 100%;
}

.portfolio-card-media img {
  display: block;
  object-fit: cover;
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.portfolio-card-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 22px 22px 20px;
  color: #fff;
}

.portfolio-card-category {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.portfolio-card h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.portfolio-card p {
  margin: 12px 0 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.portfolio-card-stack {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  font-weight: 600;
}

.portfolio-card a {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: #fff;
  font-family: "Syne", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
}

.portfolio-card a::after {
  content: "";
  width: 18px;
  height: 2px;
  margin-left: 10px;
  background: currentColor;
}

.portfolio-inline-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.portfolio-inline-carousel-viewport {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.portfolio-inline-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 420ms ease;
  will-change: transform;
}

.portfolio-inline-carousel-slide {
  flex: 0 0 100%;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.portfolio-inline-carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-inline-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(17, 17, 24, 0.12);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateX(-50%) translateY(6px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.portfolio-card:hover .portfolio-inline-carousel-controls,
.portfolio-card:focus-within .portfolio-inline-carousel-controls {
  opacity: 0.72;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.portfolio-inline-carousel-arrow {
  display: none;
}

.portfolio-inline-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.portfolio-inline-carousel-dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.portfolio-inline-carousel-dots button.is-active {
  background: var(--accent-primary);
  transform: scale(1.08);
}

.tech-stack {
  position: relative;
  padding: 118px 0 120px;
  background:
    radial-gradient(circle at left top, rgba(0, 172, 172, 0.12), transparent 20%),
    linear-gradient(180deg, #050505 0%, #1a1a1a 100%);
}

.tech-stack::before {
  content: "";
  position: absolute;
  inset: 84px auto auto 4%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 172, 172, 0.1), transparent 68%);
  pointer-events: none;
}

.tech-stack-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.tech-stack-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent-secondary);
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.tech-stack-heading h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.7rem, 4.6vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.tech-stack-heading p {
  max-width: 62ch;
  margin: 22px 0 0;
  color: rgba(223, 222, 220, 0.76);
  font-size: 1rem;
  line-height: 1.8;
}

.tech-stack-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.tech-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 18px 18px;
  border: 1px solid rgba(166, 167, 162, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038) 0%, rgba(255, 255, 255, 0.018) 100%),
    rgba(24, 24, 24, 0.92);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.2);
}

.tech-group-label {
  display: inline-block;
  margin-bottom: 0;
  color: var(--accent-secondary);
  font-family: "Syne", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
}

.tech-group h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  min-height: 2.15em;
  font-size: 1.28rem;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.tech-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-content: start;
  gap: 10px;
  margin-top: 0;
  padding-top: 0;
}

.tech-group .tech-items-data {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr) minmax(0, 0.82fr);
  column-gap: 14px;
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 92px;
  padding: 8px 4px 6px;
  text-align: center;
  transition: transform 180ms ease;
}

.tech-item:hover,
.tech-item:focus-within {
  transform: translateY(-1px);
}

.tech-item strong {
  display: block;
  width: fit-content;
  color: var(--text-primary);
  max-width: 78px;
  margin: 0 auto;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.tech-group .tech-items-data .tech-item strong {
  max-width: 100%;
}

.tech-item > div {
  width: 100%;
}

.tech-item-postgres strong {
  max-width: 62px;
  font-size: 0.72rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.tech-item-tailwind strong,
.tech-item-ts strong {
  max-width: none;
  font-size: 0.68rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
  overflow-wrap: normal;
  white-space: nowrap;
}

.tech-item-oracle strong {
  max-width: 66px;
  font-size: 0.69rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.tech-icon {
  --icon-size: 22px;
  width: 44px;
  height: 44px;
  position: relative;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 172, 172, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(0, 172, 172, 0.08),
    0 10px 20px rgba(0, 0, 0, 0.18);
}

.tech-icon svg {
  width: var(--icon-size);
  height: var(--icon-size);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.18));
}

.tech-icon-vue {
  background: radial-gradient(circle at 30% 30%, rgba(65, 184, 131, 0.18), rgba(65, 184, 131, 0.04) 55%), #2f323b;
}

.tech-icon-react {
  background: radial-gradient(circle at 50% 32%, rgba(97, 218, 251, 0.18), rgba(97, 218, 251, 0.04) 58%), #2f323b;
}

.tech-icon-next {
  --icon-size: 24px;
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02) 58%), #111318;
}

.tech-icon-next svg {
  transform: translate(-50%, -50%);
}

.tech-icon-tailwind {
  background: radial-gradient(circle at 30% 30%, rgba(56, 189, 248, 0.22), rgba(56, 189, 248, 0.05) 58%), #2f323b;
}

.tech-icon-node {
  background: radial-gradient(circle at 30% 30%, rgba(131, 205, 41, 0.24), rgba(83, 158, 67, 0.05) 56%), #2f323b;
}

.tech-icon-laravel {
  background: radial-gradient(circle at 30% 30%, rgba(255, 45, 32, 0.22), rgba(255, 45, 32, 0.05) 56%), #2f323b;
}

.tech-icon-ts {
  background: radial-gradient(circle at 30% 30%, rgba(49, 120, 198, 0.24), rgba(49, 120, 198, 0.05) 58%), #2f323b;
}

.tech-icon-mysql {
  --icon-size: 24px;
  background: radial-gradient(circle at 30% 30%, rgba(0, 163, 224, 0.2), rgba(242, 145, 17, 0.06) 62%), #2f323b;
}

.tech-icon-postgres {
  --icon-size: 24px;
  background: radial-gradient(circle at 30% 30%, rgba(51, 103, 145, 0.24), rgba(51, 103, 145, 0.05) 58%), #2f323b;
}

.tech-icon-docker {
  --icon-size: 24px;
  background: radial-gradient(circle at 30% 30%, rgba(36, 150, 237, 0.24), rgba(36, 150, 237, 0.05) 58%), #2f323b;
}

.tech-icon-git {
  background: radial-gradient(circle at 30% 30%, rgba(240, 80, 50, 0.22), rgba(240, 80, 50, 0.05) 58%), #2f323b;
}

.tech-icon-oracle {
  --icon-size: 24px;
  background: radial-gradient(circle at 30% 30%, rgba(63, 170, 0, 0.18), rgba(236, 237, 240, 0.1) 58%), #2f323b;
}

.tech-icon-oracle svg {
  transform: translate(-50%, -50%);
}

.process {
  position: relative;
  padding: 118px 0 120px;
  background:
    radial-gradient(circle at 14% 18%, rgba(0, 172, 172, 0.12), transparent 22%),
    linear-gradient(180deg, #0c0c0c 0%, #191919 100%);
}

.process::before {
  content: "";
  position: absolute;
  inset: auto 5% 72px auto;
  width: min(260px, 24vw);
  height: min(260px, 24vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 172, 172, 0.1), transparent 68%);
  pointer-events: none;
}

.process-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.process-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--accent-secondary);
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.process-heading h2 {
  margin: 0;
  max-width: 12ch;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.6rem, 4.4vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.process-heading p {
  max-width: 62ch;
  margin: 22px 0 0;
  color: rgba(223, 222, 220, 0.76);
  font-size: 1rem;
  line-height: 1.8;
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.process-card {
  min-height: 250px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(166, 167, 162, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038) 0%, rgba(255, 255, 255, 0.018) 100%),
    rgba(24, 24, 24, 0.92);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.2);
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(0, 172, 172, 0.1);
  color: var(--accent-secondary);
  font-family: "Syne", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.process-card h3 {
  margin: 18px 0 0;
  font-family: "Syne", sans-serif;
  font-size: 1.34rem;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.process-card p {
  margin: 14px 0 0;
  color: rgba(223, 222, 220, 0.72);
  font-size: 0.95rem;
  line-height: 1.72;
}

.contact {
  position: relative;
  padding: 122px 0 118px;
  background: linear-gradient(180deg, #dfdedc 0%, #d2d2cd 100%);
  color: #111111;
}

.contact::before {
  content: "";
  position: absolute;
  left: max(4%, 28px);
  top: 32px;
  width: 84px;
  height: 28px;
  background: rgba(0, 172, 172, 0.86);
  pointer-events: none;
}

.contact-shell {
  position: relative;
}

.contact-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-primary);
  font-family: "Syne", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
}

.contact-heading h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.contact-heading p {
  margin: 18px auto 0;
  max-width: 620px;
  color: rgba(34, 34, 33, 0.82);
  font-size: 1rem;
  line-height: 1.8;
}

.contact-heading p a {
  display: inline-block;
  padding: 0 0.32rem;
  border-radius: 0.45rem;
  color: var(--accent-primary);
  font-weight: 700;
  text-decoration: none;
  background: rgba(0, 194, 209, 0.12);
  box-shadow: inset 0 -1px 0 rgba(0, 194, 209, 0.28);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-heading p a:hover,
.contact-heading p a:focus-visible {
  background: rgba(0, 194, 209, 0.2);
  color: #ffffff;
  transform: translateY(-1px);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
  margin-top: 62px;
}

.contact-copy {
  padding-top: 6px;
}

.contact-copy p {
  max-width: 31ch;
  margin: 0;
  color: rgba(70, 69, 69, 0.82);
  font-size: 1rem;
  line-height: 1.82;
}

.contact-methods {
  display: grid;
  gap: 26px;
  margin-top: 42px;
}

.contact-method {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  color: inherit;
}

.contact-method-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #464545;
}

.contact-method-icon svg {
  width: 46px;
  height: 46px;
}

.contact-method-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-method-text strong {
  color: #111111;
  font-family: "Syne", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.contact-method-text span {
  color: var(--accent-primary);
  font-family: "Syne", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-field {
  display: grid;
  gap: 10px;
}

.contact-field span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.contact-field input {
  min-height: 60px;
  padding: 0 24px;
}

.contact-field textarea {
  min-height: 210px;
  padding: 20px 24px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(70, 69, 69, 0.52);
}

.contact-field input:focus,
.contact-field textarea:focus {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 2px rgba(0, 172, 172, 0.24),
    0 14px 32px rgba(0, 0, 0, 0.08);
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 64px;
  padding: 0 28px;
  border: 0;
  border-radius: 10px;
  background: var(--accent-primary);
  color: #fff;
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  justify-self: start;
  box-shadow: 0 18px 36px rgba(0, 172, 172, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  transform: translateY(-2px);
  background: #009595;
  box-shadow: 0 24px 42px rgba(0, 172, 172, 0.3);
}

.contact-submit svg {
  width: 18px;
  height: 18px;
}

.site-footer {
  background: #111111;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 22px;
  align-items: end;
  padding: 24px 0 0;
}

.footer-brand {
  padding-bottom: 28px;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 10px;
  color: var(--text-primary);
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.footer-brand p {
  margin: 0;
  color: rgba(223, 222, 220, 0.78);
  font-size: 0.94rem;
  line-height: 1.5;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, auto));
  gap: 12px 28px;
  align-self: center;
}

.footer-nav-column {
  display: grid;
  gap: 10px;
}

.footer-nav a {
  color: rgba(223, 222, 220, 0.7);
  font-size: 0.9rem;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--text-primary);
  transform: translateY(-1px);
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 28px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(223, 222, 220, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
}

.footer-top-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 84px;
  height: 148px;
  align-self: start;
  margin-top: -72px;
  background: var(--accent-primary);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 172, 172, 0.22);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.footer-top-button:hover,
.footer-top-button:focus-visible {
  transform: translateY(-4px);
  background: #009595;
  box-shadow: 0 26px 48px rgba(0, 172, 172, 0.3);
}

.footer-top-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 38%);
  pointer-events: none;
}

.footer-top-chevron {
  position: absolute;
  left: 50%;
  width: 14px;
  height: 14px;
  border-left: 3px solid currentColor;
  border-top: 3px solid currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.footer-top-chevron-primary {
  top: 62px;
  transform: translateX(-50%) rotate(45deg);
}

.footer-top-chevron-secondary {
  top: 78px;
  opacity: 0;
  transform: translateX(-50%) translateY(8px) rotate(45deg);
}

.footer-top-button:hover .footer-top-chevron-primary,
.footer-top-button:focus-visible .footer-top-chevron-primary {
  transform: translateX(-50%) translateY(-6px) rotate(45deg);
}

.footer-top-button:hover .footer-top-chevron-secondary,
.footer-top-button:focus-visible .footer-top-chevron-secondary {
  opacity: 1;
  transform: translateX(-50%) translateY(-6px) rotate(45deg);
}

@keyframes scrollWheel {
  0%,
  100% {
    transform: translateY(-4px);
    opacity: 1;
  }

  50% {
    transform: translateY(8px);
    opacity: 0.55;
  }
}

@media (max-width: 1080px) {
  .hero-socials,
  .hero-mail {
    position: static;
    transform: none;
  }

  .hero-socials {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 18px;
    left: auto;
  }

  .hero-mail {
    margin-top: 28px;
    text-align: center;
  }

  .header-inner {
    gap: 14px;
  }

  .site-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
    padding-top: 20px;
  }

  .hero-copy {
    max-width: none;
    padding-top: 0;
    padding-left: 0;
    text-align: center;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-role-line,
  .hero-buttons {
    justify-content: center;
  }

  .hero-scroll {
    margin-left: auto;
    margin-right: auto;
  }

  .about {
    padding-top: 92px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-copy {
    text-align: center;
  }

  .about-highlights {
    justify-content: center;
  }

  .about-button {
    margin-left: auto;
    margin-right: auto;
  }

  .about-media {
    min-height: auto;
  }

  .about-photo-frame-tall {
    margin-top: 0;
  }

  .about-outline-left {
    left: -24px;
  }

  .experience {
    padding-top: 92px;
  }

  .experience-timeline::before {
    left: 144px;
  }

  .experience-item {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 40px;
  }

  .experience-item::before {
    left: 135px;
  }

  .portfolio {
    padding-top: 92px;
  }

  .services {
    padding-top: 92px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-intro {
    max-width: 680px;
  }

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

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-bridge {
    flex-direction: column;
    align-items: start;
  }

  .tech-stack {
    padding-top: 92px;
  }

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

  .tech-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process {
    padding-top: 92px;
  }

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

  .contact {
    padding-top: 92px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-heading h2 {
    max-width: 12ch;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr auto auto;
    align-items: end;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(120px, auto));
    max-width: none;
  }

  .footer-socials {
    flex-direction: column;
    justify-content: start;
  }
}

@media (max-width: 880px) {
  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.98);
    border: 1px solid rgba(0, 172, 172, 0.16);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(0, 172, 172, 0.12);
  }

  .menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero {
    padding-top: 22px;
    padding-bottom: 56px;
  }

  .hero-socials {
    display: none;
  }

  .hero-visual {
    min-height: 500px;
  }

  .portrait-block-large {
    right: 18px;
  }

  .portrait-frame-main {
    left: 48px;
  }

  .hero-outline-name {
    top: 136px;
    right: 6px;
  }

  .about-shape-left {
    left: -12px;
    width: 150px;
    height: 150px;
  }

  .about-shape-right {
    right: -12px;
    width: 128px;
    height: 128px;
  }

  .experience-timeline::before {
    left: 14px;
  }

  .experience-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 40px;
  }

  .experience-item::before {
    top: 16px;
    left: 5px;
  }

  .experience-meta {
    justify-items: start;
    gap: 4px;
    padding-top: 0;
    text-align: left;
  }

  .experience-card {
    padding: 24px 22px 20px;
  }

  .experience-card-top {
    flex-direction: column;
  }

  .experience-badges {
    justify-content: start;
  }

  .portfolio::before {
    top: 190px;
    width: 180px;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .portfolio-bridge {
    padding: 24px 22px;
  }

  .portfolio-bridge-link {
    width: 100%;
  }

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

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 100%);
  }

  .brand-text {
    font-size: 1.7rem;
  }

  .hero {
    padding-bottom: 56px;
  }

  .hero-eyebrow {
    font-size: 1rem;
  }

  .hero-role-line {
    min-height: 38px;
    font-size: 0.98rem;
    gap: 6px;
  }

  .hero-role-prefix {
    min-width: 10.8ch;
  }

  .hero-buttons {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
  }

  .hero-button {
    min-height: 52px;
    padding: 0 22px;
  }

  .hero-visual {
    min-height: 380px;
  }

  .portrait-block-large {
    top: 18px;
    right: 8px;
    width: 166px;
  }

  .portrait-block-small {
    left: 12px;
    bottom: 40px;
    width: 96px;
  }

  .portrait-frame-main {
    top: 62px;
    left: 22px;
    width: 164px;
    height: 214px;
  }

  .portrait-frame-secondary {
    top: 114px;
    right: 10px;
    width: 36px;
    height: 90px;
  }

  .hero-outline-name {
    top: 96px;
    font-size: 5rem;
  }

  .hero-portrait img {
    width: min(100%, 360px);
  }

  .hero-portrait {
    transform: translateY(-28px);
  }

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

  .tech-stack-grid {
    grid-template-columns: 1fr;
  }

  .tech-item {
    min-height: 112px;
    padding: 14px 10px 12px;
  }

  .tech-item strong {
    font-size: 0.86rem;
  }

  .hero-mail a {
    font-size: 0.82rem;
  }

  .about {
    padding: 76px 0 82px;
  }

  .about-title {
    font-size: 2.2rem;
  }

  .about-location {
    font-size: 1rem;
  }

  .about-text {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .about-outline-left {
    width: 150px;
    height: 120px;
    left: -10px;
    top: 46px;
  }

  .experience {
    padding: 76px 0 84px;
  }

  .experience-heading h2 {
    font-size: 2.35rem;
  }

  .experience-heading p {
    font-size: 0.96rem;
  }

  .experience-card h3 {
    font-size: 1.34rem;
  }

  .experience-copy {
    font-size: 0.95rem;
  }

  .experience-badges span,
  .experience-stack span {
    min-height: 32px;
    font-size: 0.82rem;
  }

  .portfolio {
    padding: 76px 0 84px;
  }

  .portfolio-bridge h3 {
    font-size: 1.72rem;
  }

  .portfolio-bridge p {
    font-size: 0.95rem;
  }

  .services {
    padding: 76px 0 84px;
  }

  .services-intro {
    max-width: none;
  }

  .services-intro h2 {
    max-width: 11ch;
    font-size: 1.92rem;
  }

  .services-intro p {
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .services-points span {
    min-height: 34px;
    font-size: 0.82rem;
  }

  .services-button {
    width: 100%;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 22px 18px 20px;
  }

  .service-card h3 {
    margin-top: 16px;
    font-size: 1.24rem;
  }

  .service-card p {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .process {
    padding: 76px 0 84px;
  }

  .process-heading h2 {
    font-size: 2.3rem;
  }

  .process-heading p {
    font-size: 0.96rem;
  }

  .process-card {
    min-height: auto;
    padding: 22px 18px 20px;
  }

  .process-card h3 {
    font-size: 1.22rem;
  }

  .process-card p {
    font-size: 0.92rem;
  }

  .contact {
    padding: 76px 0 84px;
  }

  .contact::before {
    top: 24px;
    width: 74px;
    height: 22px;
  }

  .contact-heading h2 {
    font-size: 2.3rem;
  }

  .contact-copy p {
    font-size: 0.96rem;
  }

  .contact-method {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }

  .contact-method-icon {
    width: 44px;
    height: 44px;
  }

  .contact-method-icon svg {
    width: 40px;
    height: 40px;
  }

  .contact-method-text strong {
    font-size: 1.08rem;
  }

  .contact-method-text span {
    font-size: 1.08rem;
  }

  .contact-field input {
    min-height: 56px;
    padding: 0 20px;
  }

  .contact-field textarea {
    min-height: 180px;
    padding: 18px 20px;
  }

  .contact-submit {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 0 0;
  }

  .footer-mark {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
    border-radius: 14px;
    font-size: 1.3rem;
  }

  .footer-brand {
    padding-bottom: 0;
  }

  .footer-brand p,
  .footer-nav a,
  .footer-socials a {
    font-size: 0.88rem;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }

  .footer-socials {
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 0;
  }

  .footer-top-button {
    width: 76px;
    height: 132px;
    margin-top: 6px;
    margin-left: auto;
  }

  .footer-top-chevron-primary {
    top: 54px;
  }

  .footer-top-chevron-secondary {
    top: 69px;
  }

  .tech-stack {
    padding: 76px 0 84px;
  }

  .tech-stack-heading h2 {
    font-size: 2.4rem;
  }

  .tech-stack-heading p {
    font-size: 0.96rem;
  }

  .tech-group {
    padding: 24px 20px 20px;
  }

  .tech-group h3 {
    font-size: 1.38rem;
  }

  .tech-item {
    min-height: 122px;
    padding: 16px 12px 14px;
  }

  .tech-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .tech-icon svg {  
    width: 22px;
    height: 22px;
  }

  .portfolio-heading h2 {
    font-size: 2.4rem;
  }

  .portfolio-heading p {
    font-size: 0.96rem;
  }

  .portfolio-filter {
    gap: 8px;
    margin-top: 28px;
  }

  .portfolio-card {
    min-height: 300px;
  }

  .portfolio-card-content {
    padding: 22px 20px 20px;
  }

  .portfolio-card h3 {
    font-size: 1.7rem;
  }

  .portfolio-inline-carousel-controls {
    left: 50%;
    bottom: 14px;
  }
}
