* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #050505;
  color: #ffffff;
  font-family:
    "Pretendard",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  word-break: keep-all;
}

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

.shell {
  width: min(100% - 48px, 1200px);
  margin: 0 auto;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: blur(0px);
  transition:
    background 360ms ease,
    backdrop-filter 360ms ease,
    border-color 360ms ease;
}

.nav.is-scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(16px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand__logo {
  display: grid;
  width: 76px;
  height: 25px;
  place-items: center;
}

.brand__logo img {
  display: block;
  width: 76px;
  height: 25px;
  filter: invert(1);
}

.brand__name {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav__links a {
  transition: color 160ms ease, opacity 160ms ease;
}

.nav__links a[href="experience.html"] {
  order: 1;
}

.nav__links a[href="about.html"] {
  order: 2;
}

.nav__links a[href="service.html"] {
  order: 3;
}

.nav__links a[href="contact.html"] {
  order: 4;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: #ffffff;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.nav__toggle span,
.nav__toggle::before,
.nav__toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav__toggle::after {
  display: none;
}

.nav.is-open {
  min-height: 100svh;
  border-bottom: 0 !important;
  background: #1c1d1d !important;
  backdrop-filter: none !important;
}

.nav.is-open .nav__toggle span {
  transform: translateY(-3.5px) rotate(45deg);
}

.nav.is-open .nav__toggle::before {
  transform: translateY(3.5px) rotate(-45deg);
}

/* ── Hero (index 동일 구조) ────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 136px 0 104px;
  overflow: hidden;
  background: #050505;
  color: #ffffff;
}

.hero::before {
  position: absolute;
  inset: 0;
  height: auto;
  background-image:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 32%),
    radial-gradient(circle, rgba(255, 255, 255, 0.34) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255, 255, 255, 0.28) 1px, transparent 1.5px);
  background-position: center, 0 0, 24px 24px;
  background-size: auto, 32px 32px, 96px 96px;
  content: "";
  mask-image:
    radial-gradient(ellipse at center, #000 0 48%, transparent 78%),
    linear-gradient(to bottom, transparent, #000 14%, #000 82%, transparent);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, transparent 44%, rgba(5, 5, 5, 0.86) 100%),
    radial-gradient(ellipse at center, transparent 0 34%, rgba(5, 5, 5, 0.62) 76%, #050505 100%);
  content: "";
  pointer-events: none;
}

.hero-network-video {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.7s ease;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: calc(100svh - 240px);
}

.hero__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 500px;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  margin: 0 0 28px;
  padding: 8px 18px;
  border: 1px solid rgba(64, 224, 208, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(52px, 5.3vw, 84px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 19px;
  line-height: 31px;
  text-align: center;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.hero .button {
  min-height: 56px;
  padding: 0 28px;
  font-size: 16px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease;
}

.hero .button:hover {
  border-color: rgba(64, 224, 208, 0.64);
}

.hero .button--primary {
  border-color: #40e0d0;
  background: #40e0d0;
  color: #041313;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
  text-decoration: none;
}

.hero__scroll-mouse {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 7px;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 13px;
}

.hero__scroll-wheel {
  display: block;
  width: 4px;
  height: 7px;
  border-radius: 2px;
  background: #ffffff;
  animation: scrollWheel 1.6s ease-in-out infinite;
}

.hero__scroll-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #40e0d0;
}

@keyframes scrollWheel {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50%       { opacity: 0.3; transform: translateY(10px); }
}
/* ──────────────────────────────────────────── */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 176px 0 92px;
  background:
    radial-gradient(circle at 70% 18%, rgba(64, 224, 208, 0.13), transparent 30%),
    linear-gradient(180deg, #060606 0%, #101112 100%);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  opacity: 0.24;
  pointer-events: none;
}

.page-hero .shell,
.section .shell {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
}

.page-hero p {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 32px;
}

.section {
  padding: 96px 0;
  background: #f7f8fa;
  color: #111111;
}

.section--dark {
  background: #0b0b0c;
  color: #ffffff;
}

.section__head {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}

.section__head h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.12;
}

.section__head p {
  max-width: 640px;
  margin: 0;
  color: #6b7280;
  font-size: 17px;
  line-height: 30px;
}

.section--dark .section__head p {
  color: rgba(255, 255, 255, 0.62);
}

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

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

.card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
}

.section--dark .card {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 46%),
    #171a1a;
}

.card strong {
  display: block;
  color: #40e0d0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card h3 {
  margin: 18px 0 0;
  font-size: 24px;
  line-height: 1.24;
}

.card p {
  margin: 16px 0 0;
  color: #6b7280;
  font-size: 15px;
  line-height: 26px;
}

.section--dark .card p {
  color: rgba(255, 255, 255, 0.58);
}

.metric {
  display: grid;
  gap: 22px;
}

.metric b {
  color: #40e0d0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.95;
}

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

.project-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 46%),
    #171a1a;
}

.project-card img {
  display: block;
  width: 118px;
  height: 30px;
  object-fit: contain;
  filter: grayscale(1) invert(1) brightness(1.62) contrast(0.8);
  opacity: 0.72;
}

.project-card h3 {
  margin: 58px 0 0;
  font-size: 22px;
  line-height: 28px;
}

.project-card small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
}

.step span {
  color: #40e0d0;
  font-size: 14px;
  font-weight: 800;
}

.step h3 {
  margin: 0;
  font-size: 22px;
}

.step p {
  margin: 10px 0 0;
  color: #6b7280;
  line-height: 26px;
}

.service-page {
  background: #050505;
}

.service-main {
  background: #050505;
}

.service-hero h1 {
  max-width: 1100px;
  font-size: 60px;
  line-height: 90px;
}

.service-hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.8) 42%, rgba(5, 5, 5, 0.38) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.16) 0%, rgba(5, 5, 5, 0.72) 100%),
    url("service-hero-bg.jpg") right center / cover no-repeat;
  animation: serviceHeroDrift 14s ease-out both;
}

.service-hero::before {
  background:
    linear-gradient(rgba(64, 224, 208, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(64, 224, 208, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.3;
}

@keyframes serviceHeroDrift {
  from { background-position: center center, center center, 88% center; }
  to { background-position: center center, center center, right center; }
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.service-chips a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.service-chips a:hover,
.service-chips a:focus-visible {
  border-color: rgba(64, 224, 208, 0.58);
  color: #ffffff;
}

.service-chips span {
  color: #40e0d0;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.service-section {
  padding: 108px 0;
}

.service-section--light {
  background: #050505;
  color: #ffffff;
}

.service-section--dark {
  background: #0b0b0c;
  color: #ffffff;
}

.service-section__head {
  display: grid;
  gap: 16px;
  margin-bottom: 44px;
}

.service-section__head--row {
  grid-template-columns: 1fr auto;
  align-items: end;
}

.service-section__head h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.service-section__head p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 30px;
}

.service-section--dark .service-section__head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
}

.service-problems,
.service-offerings {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-problem,
.service-offering {
  border-radius: 8px;
}

.service-problem {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 48%),
    #141616;
}

.service-problem span,
.service-offering small {
  display: block;
  color: #40e0d0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-problem h3,
.service-offering h3 {
  margin: 18px 0 0;
  font-size: 26px;
  line-height: 1.22;
}

.service-problem p,
.service-offering p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 27px;
}

.service-problem strong {
  display: inline-block;
  margin-top: 24px;
  color: #ffffff;
  font-size: 14px;
}

.service-problem strong::before {
  margin-right: 8px;
  color: #40e0d0;
  content: "→";
}

.service-offering {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(64, 224, 208, 0.1), transparent 44%),
    #171a1a;
}

.service-offering p {
  color: rgba(255, 255, 255, 0.62);
}

.service-offering ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 30px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
}

.service-offering li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 24px;
}

.service-offering li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 1px;
  background: #40e0d0;
  content: "";
}

.service-ax-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: stretch;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(64, 224, 208, 0.1), transparent 42%),
    #111313;
}

.service-ax__stat b {
  display: inline-flex;
  align-items: baseline;
  color: #40e0d0;
  font-size: clamp(92px, 14vw, 176px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.service-ax__stat b span {
  display: inline;
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

.service-ax__stat > span {
  display: block;
  margin-top: 18px;
  font-size: 20px;
  font-weight: 800;
}

.service-ax__stat p {
  max-width: 460px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 30px;
}

.service-ax-bars {
  display: grid;
  gap: 18px;
  align-content: center;
}

.service-ax-bars article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 48%),
    #141616;
}

.service-ax-bars div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.service-ax-bars strong {
  display: inline-block;
  color: #ffffff;
  font-size: 20px;
}

.service-ax-bars span {
  display: inline-block;
  color: #40e0d0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.service-ax-bars p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 24px;
}

.service-ax-bars i {
  display: block;
  height: 7px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.service-ax-bars i::before {
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #40e0d0, #ffffff);
  content: "";
  transition: width 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-ax-dashboard.is-visible .service-ax-bars i::before {
  width: var(--bar);
  animation: serviceBarFill 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes serviceBarFill {
  from { width: 0; }
  to { width: var(--bar); }
}

.service-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.service-timeline article {
  position: relative;
  min-height: 210px;
  padding: 30px 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 48%),
    #171a1a;
  transform: none;
  opacity: 1;
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-page.service-animate .service-timeline:not(.is-visible) article {
  transform: translateY(18px);
  opacity: 0;
}

.service-timeline.is-visible article {
  transform: translateY(0);
  opacity: 1;
  animation: serviceCardReveal 650ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes serviceCardReveal {
  from { transform: translateY(18px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.service-timeline article:nth-of-type(2) { animation-delay: 120ms; }
.service-timeline article:nth-of-type(3) { animation-delay: 240ms; }
.service-timeline article:nth-of-type(4) { animation-delay: 360ms; }

.service-timeline article span,
.service-method-list article > span {
  display: block;
  color: #40e0d0;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.service-timeline small,
.service-method-list small {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-timeline h3,
.service-method-list h3 {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.2;
}

.service-timeline p,
.service-method-list p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 27px;
}

.service-method-list {
  display: grid;
  gap: 16px;
}

.service-method-list article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  align-items: start;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(64, 224, 208, 0.08), transparent 34%),
    #141616;
}

.service-page.service-animate .service-method-list:not(.is-visible) article {
  transform: translateY(18px);
  opacity: 0;
}

.service-method-list.is-visible article {
  animation: serviceMethodReveal 650ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.service-method-list.is-visible article:nth-child(2) { animation-delay: 100ms; }
.service-method-list.is-visible article:nth-child(3) { animation-delay: 200ms; }
.service-method-list.is-visible article:nth-child(4) { animation-delay: 300ms; }

@keyframes serviceMethodReveal {
  from { transform: translateY(18px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.service-method-list strong {
  display: block;
  margin-top: 12px;
  color: #ffffff;
  font-size: 15px;
}

.service-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-top: 64px;
  padding: 42px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.78) 58%, rgba(5, 5, 5, 0.6) 100%),
    url("service-hero-bg.jpg") right center / cover no-repeat,
    #111111;
  color: #ffffff;
}

.service-cta h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.18;
}

.reveal-up {
  transform: none;
  opacity: 1;
}

.reveal-up.is-visible,
.service-ax-dashboard.is-visible,
.service-timeline.is-visible {
  transform: translateY(0);
  opacity: 1;
  animation: serviceRevealUp 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes serviceRevealUp {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(64, 224, 208, 0.12), transparent 36%),
    #111111;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  font-size: 14px;
  font-weight: 800;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0b0c;
  color: #ffffff;
}

.footer__inner {
  display: grid;
  gap: 12px;
  align-items: start;
  padding: 52px 0 34px;
}

.footer__logo {
  display: block;
  width: 76px;
  height: auto;
  filter: invert(1);
}

.footer__info {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-style: normal;
  line-height: 24px;
}

.footer__name {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.footer__bottom {
  padding: 22px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

.portfolio-page {
  background: #050505;
  color: #ffffff;
}

.portfolio-page .nav {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.72);
}

.portfolio-page .brand__logo img {
  filter: invert(1);
}

.portfolio-page .nav__links {
  color: rgba(255, 255, 255, 0.58);
}

.portfolio-page .nav__links a:hover,
.portfolio-page .nav__links a.is-active {
  color: #ffffff;
}

.portfolio-main {
  box-sizing: border-box;
  margin: 0 auto;
  width: min(100% - 48px, 1200px);
  padding: 200px 0 110px;
}

.portfolio-top-text {
  margin: 0 0 110px;
  color: #ffffff;
  font-size: 60px;
  font-weight: 800;
  line-height: 90px;
}

.portfolio-list {
  padding-bottom: 60px;
}

.portfolio-list__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 104px 64px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.portfolio-item {
  min-width: 0;
}

.portfolio-card {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}

.portfolio-card__thumb {
  position: relative;
  overflow: hidden;
  display: block;
  margin-bottom: 35px;
  padding-top: 100%;
  background: rgba(255, 255, 255, 0.08);
}

.portfolio-card__thumb img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.portfolio-card__meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}

.portfolio-card__year {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}

.portfolio-card__service {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
}

.portfolio-card__title {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 36px;
}

.portfolio-card__logo {
  position: absolute;
  z-index: 10;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 17, 17, 0.7);
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-card__logo img {
  position: static;
  display: block;
  width: 55%;
  max-width: 200px;
  max-height: 100px;
  height: auto;
  object-fit: contain;
  transform: none;
}

.portfolio-card:hover .portfolio-card__logo,
.portfolio-card:focus-visible .portfolio-card__logo {
  opacity: 1;
}

.portfolio-card__overlay {
  display: block;
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0);
  font-size: 18px;
  font-weight: 300;
  line-height: 22px;
  text-align: center;
  text-decoration: none;
  padding-top: 50%;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-card__overlay span {
  display: inline-block;
  vertical-align: top;
  padding-top: 55px;
}

.portfolio-card__overlay span::after {
  content: "";
  display: block;
  height: 1px;
  margin-top: 2px;
  background-color: #ffffff;
}

.portfolio-card:hover .portfolio-card__overlay,
.portfolio-card:focus-visible .portfolio-card__overlay {
  opacity: 1;
}

.portfolio-card:hover .portfolio-card__thumb img,
.portfolio-card:focus-visible .portfolio-card__thumb img {
  transform: scale(1.035);
}

.portfolio-page .footer {
  border-top-color: rgba(255, 255, 255, 0.08);
  background: #0b0b0c;
  color: #ffffff;
}

.portfolio-page .footer__logo {
  filter: invert(1);
}

.portfolio-page .footer__bottom {
  border-top-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.42);
}

.about-page {
  background: #050505;
  color: #ffffff;
}

.about-main {
  overflow: hidden;
}

.about-hero {
  position: relative;
  min-height: calc(100svh - 80px);
  margin-top: 80px;
  overflow: hidden;
  isolation: isolate;
  background:
    url("about-hero-bg.png") center center / cover no-repeat,
    #050505;
  animation: aboutHeroFocus 2.6s ease-out both;
}

.about-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(5, 5, 5, 0.76);
  content: "";
  animation: aboutDimOut 2.2s ease-out 0.15s both;
}

.about-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, #050505 90%);
  content: "";
  pointer-events: none;
}

.about-hero__mark {
  position: absolute;
  left: clamp(24px, 5vw, 72px);
  bottom: clamp(28px, 6vw, 72px);
  color: rgba(255, 255, 255, 0.26);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

@keyframes aboutDimOut {
  from { background: rgba(5, 5, 5, 0.82); }
  to { background: rgba(5, 5, 5, 0.28); }
}

@keyframes aboutHeroFocus {
  from { background-size: 106% auto; }
  to { background-size: 100% auto; }
}

@keyframes aboutHeroFocusMobile {
  from { background-size: 140% auto; }
  to { background-size: 130% auto; }
}

.about-section--muted::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  opacity: 0.2;
  pointer-events: none;
}

.about-hero .shell,
.about-intro .shell,
.about-section .shell {
  position: relative;
  z-index: 1;
}

.about-intro {
  padding: 120px 0 104px;
  background: #050505;
  color: #ffffff;
}

.about-kicker {
  margin: 0 0 20px;
  color: #40e0d0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-intro h1 {
  max-width: 1200px;
  margin: 0;
  color: #ffffff;
  font-size: 60px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 90px;
}

.about-hero__lead {
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.42;
}

.about-hero__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 960px;
  margin-top: 52px;
}

.about-hero__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
  line-height: 31px;
}

.about-hero__body p:only-child {
  max-width: 700px;
}

.about-section {
  padding: 104px 0;
  background: #050505;
  color: #ffffff;
}

.about-section--split {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0b0c;
}

.about-section--muted {
  position: relative;
  background:
    linear-gradient(180deg, rgba(64, 224, 208, 0.08), transparent 360px),
    #090909;
}

.about-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: start;
}

.about-section__head {
  display: grid;
  gap: 20px;
  max-width: 780px;
  margin-bottom: 48px;
}

.about-section__head--row {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  max-width: none;
}

.about-section__head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.12;
}

.about-section__head p:not(.about-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
  line-height: 31px;
}

.about-updated {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(64, 224, 208, 0.32);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
}

.phase-grid {
  display: grid;
  gap: 16px;
}

.phase-card,
.about-stat,
.timeline-item,
.clients-cloud span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 48%),
    #141616;
}

.phase-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 8px 24px;
  align-items: start;
  padding: 28px;
  border-radius: 8px;
}

.phase-card--now {
  border-color: rgba(64, 224, 208, 0.36);
  background:
    linear-gradient(135deg, rgba(64, 224, 208, 0.13), transparent 48%),
    #141616;
}

.phase-card span {
  grid-row: span 4;
  color: #40e0d0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.phase-card small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.phase-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.phase-card strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.phase-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 25px;
}

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

.about-stat {
  min-height: 250px;
  padding: 24px;
  border-radius: 8px;
}

.about-stat small {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-stat b {
  display: block;
  margin-top: 42px;
  color: #40e0d0;
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: 0.92;
}

.about-stat strong {
  display: block;
  margin-top: 22px;
  color: #ffffff;
  font-size: 18px;
}

.about-stat p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 24px;
}

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

.timeline-item {
  overflow: hidden;
  border-radius: 8px;
}

.timeline-item summary {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto 18px;
  gap: 22px;
  align-items: center;
  min-height: 86px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
}

.timeline-item summary::-webkit-details-marker {
  display: none;
}

.timeline-item summary::after {
  justify-self: end;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(255, 255, 255, 0.72);
  border-bottom: 2px solid rgba(255, 255, 255, 0.72);
  content: "";
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.timeline-item[open] summary::after {
  transform: translateY(4px) rotate(225deg);
}

.timeline-item summary span {
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.timeline-item summary strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.4;
}

.timeline-item summary em {
  color: #40e0d0;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline-item ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 0;
  padding: 0 28px 30px 210px;
  color: rgba(255, 255, 255, 0.62);
  list-style: none;
}

.timeline-item li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  line-height: 25px;
}

.timeline-item li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #40e0d0;
  content: "";
}

.clients-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.clients-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 62px;
  padding: 0 24px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  font-weight: 800;
}

.contact-page {
  min-height: 100vh;
  background: #050505;
  color: #ffffff;
}

.contact-main {
  box-sizing: border-box;
  width: min(100% - 48px, 1200px);
  margin: 0 auto;
  min-height: calc(100vh - 40px);
  padding: 210px 0 160px;
}

.contact-title {
  max-width: 760px;
  margin: 0 0 108px;
  color: #ffffff;
  font-size: clamp(48px, 5.2vw, 72px);
  font-weight: 800;
  line-height: 1.26;
}

.contact-address {
  margin: 0 0 48px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(20px, 1.9vw, 28px);
  font-style: normal;
  font-weight: 750;
  line-height: 1.72;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 72px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 700;
  line-height: 1.5;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  margin-top: 96px;
}

.contact-inquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-bottom: 2px solid currentColor;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  transition: color 180ms ease;
}

.contact-download {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 68px;
  padding: 0 52px 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 800;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.contact-download::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 0;
  height: 0;
  border-top: 5px solid currentColor;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: "";
  transform: translateY(-30%);
}

.contact-inquire:hover,
.contact-inquire:focus-visible {
  color: #40e0d0;
  outline: 0;
}

.contact-download:hover,
.contact-download:focus-visible {
  border-color: rgba(64, 224, 208, 0.42);
  background: rgba(64, 224, 208, 0.1);
  color: #ffffff;
  outline: 0;
}

@media (max-width: 900px) {
  .nav__links {
    gap: 18px;
    font-size: 15px;
  }

  .page-hero {
    padding: 140px 0 72px;
  }

  .grid,
  .grid--four,
  .project-grid,
  .contact-panel,
  .about-split,
  .stats-grid,
  .service-problems,
  .service-offerings,
  .service-ax-dashboard,
  .service-timeline,
  .service-cta,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .about-hero {
    min-height: 100svh;
  }

  .about-intro {
    padding: 96px 0 84px;
  }

  .about-hero__body {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .about-section {
    padding: 84px 0;
  }

  .service-section {
    padding: 84px 0;
  }

  .about-section__head--row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
  }

  .service-section__head--row {
    grid-template-columns: 1fr;
  }

  .service-ax-dashboard {
    padding: 30px;
  }

  .service-timeline {
    gap: 16px;
    padding-top: 0;
    padding-left: 0;
  }

  .timeline-item summary {
    grid-template-columns: 1fr 18px;
    gap: 12px 18px;
  }

  .timeline-item summary::after {
    grid-column: 2;
    grid-row: 1;
  }

  .timeline-item summary span,
  .timeline-item summary strong,
  .timeline-item summary em {
    grid-column: 1;
  }

  .timeline-item ul {
    grid-template-columns: 1fr;
    padding-left: 28px;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .portfolio-main {
    padding: 180px 0 90px;
  }

  .portfolio-top-text {
    margin-bottom: 85px;
    font-size: 50px;
    line-height: 80px;
  }

  .service-hero h1 {
    font-size: 50px;
    line-height: 80px;
  }

  .service-hero {
    min-height: 100svh;
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.82) 55%, rgba(5, 5, 5, 0.54) 100%),
      linear-gradient(180deg, rgba(5, 5, 5, 0.22) 0%, rgba(5, 5, 5, 0.78) 100%),
      url("service-hero-bg.jpg") 72% center / cover no-repeat;
  }

  .portfolio-list__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 85px 32px;
  }

  .portfolio-card__thumb {
    margin-bottom: 25px;
  }

  .portfolio-card__year {
    font-size: 18px;
    line-height: 24px;
  }

  .portfolio-card__service {
    font-size: 14px;
    line-height: 24px;
  }

  .portfolio-card__title {
    font-size: 18px;
    line-height: 28px;
  }

  .contact-main {
    min-height: calc(100vh - 32px);
    padding: 180px 0 128px;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 32px, 1200px);
  }

  .hero {
    min-height: 100svh;
    padding: 116px 0 84px;
  }

  .hero__layout {
    min-height: calc(100svh - 200px);
  }

  .hero__content {
    min-height: auto;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 46px;
  }

  .hero p {
    margin-top: 0;
    font-size: 16px;
    line-height: 20px;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
  }

  .hero__actions {
    display: grid;
    margin-top: 40px;
  }

  .hero .button {
    width: 100%;
  }

  .hero__scroll {
    bottom: 18px;
  }

  .nav__inner {
    height: 64px;
    padding: 0;
    align-items: center;
    flex-direction: row;
    gap: 0;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 28px;
    padding: 80px 32px 40px;
    background: #1c1d1d;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .nav.is-open .nav__links {
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
  }

  .brand__name {
    display: none;
  }

  .brand__logo {
    width: 66px;
    height: 22px;
  }

  .brand__logo img {
    width: 66px;
    height: 22px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .service-hero h1 {
    font-size: 50px;
    line-height: 80px;
  }

  .service-hero {
    min-height: 100svh;
  }

  .about-hero {
    min-height: calc(100svh - 64px);
    margin-top: 64px;
    background-position: center center;
    background-size: cover;
  }

  .about-intro h1 {
    font-size: 50px;
    line-height: 80px;
  }

  .about-hero__lead {
    font-size: 18px;
  }

  .about-hero__body p {
    font-size: 15px;
    line-height: 27px;
  }

  .about-section {
    padding: 66px 0;
  }

  .about-section__head h2 {
    font-size: 30px;
  }

  .about-section__head {
    margin-bottom: 24px;
  }

  .service-chips a {
    width: 100%;
    justify-content: space-between;
  }

  .service-section {
    padding: 68px 0;
  }

  .service-section__head h2 {
    font-size: 30px;
  }

  .service-problem,
  .service-offering,
  .service-timeline article,
  .service-method-list article {
    min-height: auto;
    padding: 24px;
  }

  .service-method-list article {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-offering ul {
    grid-template-columns: 1fr;
  }

  .service-ax__stat b {
    font-size: 88px;
  }

  .service-cta {
    padding: 28px;
  }

  .service-cta .button {
    width: 100%;
  }

  .phase-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .phase-card span {
    grid-row: auto;
  }

  .about-stat {
    min-height: 210px;
  }

  .timeline-item summary {
    padding: 22px;
  }

  .timeline-item summary::after {
    justify-self: end;
  }

  .timeline-item summary span {
    font-size: 22px;
  }

  .timeline-item summary strong {
    padding-right: 26px;
    font-size: 16px;
  }

  .timeline-item ul {
    padding: 0 22px 26px;
  }

  .clients-cloud span {
    min-height: 52px;
    padding: 0 18px;
    font-size: 15px;
  }

  .section {
    padding: 72px 0;
  }

  .contact-panel {
    padding: 28px;
  }

  .portfolio-main {
    width: min(100% - 32px, 1200px);
    padding: 140px 0 70px;
  }

  .portfolio-top-text {
    margin-bottom: 70px;
    font-size: 28px;
    line-height: 46px;
  }

  .service-hero h1 {
    font-size: 28px;
    line-height: 46px;
  }

  .service-hero {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.82) 52%, rgba(5, 5, 5, 0.94) 100%),
      url("service-hero-bg.jpg") 72% center / cover no-repeat;
  }

  .about-hero {
    min-height: 32svh;
    margin-top: 64px;
    overflow: hidden;
    animation: aboutHeroFocusMobile 2.6s ease-out both;
    background:
      url("about-hero-bg.png") center center / 130% auto no-repeat,
      #050505;
  }

  .about-hero__mark {
    bottom: 12px;
  }

  .about-intro {
    padding: 56px 0 64px;
  }

  .about-intro h1 {
    font-size: 28px;
    line-height: 40px;
  }

  .about-hero__lead {
    font-size: 16px;
    line-height: 26px;
    margin-top: 20px;
  }

  .about-hero__body {
    margin-top: 28px;
  }

  .portfolio-list__items {
    grid-template-columns: 1fr;
    gap: 75px;
  }

  .portfolio-card__meta {
    margin-bottom: 8px;
  }

  .portfolio-card__year {
    font-size: 14px;
    line-height: 20px;
  }

  .portfolio-card__service {
    font-size: 12px;
    line-height: 20px;
  }

  .portfolio-card__title {
    font-size: 16px;
    line-height: 26px;
  }

  .contact-main {
    width: min(100% - 32px, 1200px);
    min-height: auto;
    padding: 140px 0 96px;
  }

  .contact-title {
    margin-bottom: 60px;
    font-size: 36px;
  }

  .contact-list li {
    font-size: 16px;
  }

  .contact-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 64px;
  }

  .contact-inquire {
    font-size: 22px;
  }

  .contact-download {
    min-width: 0;
    min-height: 52px;
    padding: 0 40px 0 20px;
    font-size: 14px;
    justify-content: flex-start;
  }
}
