@font-face {
  font-display: swap;
  font-family: "Rajdhani";
  font-weight: 400;
  src: url(../fonts/rajdhani-v17-latin-regular.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Rajdhani";
  font-weight: 500;
  src: url(../fonts/rajdhani-v17-latin-500.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Rajdhani";
  font-weight: 600;
  src: url(../fonts/rajdhani-v17-latin-600.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Rajdhani";
  font-weight: 700;
  src: url(../fonts/rajdhani-v17-latin-700.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "IBM Plex Mono";
  font-weight: 400;
  src: url(../fonts/ibm-plex-mono-v20-latin-regular.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "IBM Plex Mono";
  font-weight: 700;
  src: url(../fonts/ibm-plex-mono-v20-latin-700.woff2) format("woff2");
}
:root {
  --main-color: #f39220;
  --main-color-rgb:
    243,
    146,
    32;
  --wa-color: #25d366;
  --wa-color-rgb:
    37,
    211,
    102;
  --text-x-light-gray: hsl(0, 0%, 90%);
  --bg-black: hsl(0, 0%, 0%);
  --bg-black-alpha-70: hsla(0, 0%, 0%, 0.7);
  --bg-black-alpha-95: hsla(0, 0%, 0%, 0.95);
  --border-color: hsla(0, 0%, 100%, 0.3);
  --container: 1170px;
  --fs-sm: 16px;
  --fs-md: 20px;
  --fs-lg: 23px;
  --fs-xl: 26px;
  --fs-2xl: 32px;
  --fs-3xl: clamp(35px, 5vw, 60px);
  --fs-body: var(--fs-md);
  --main-font: "IBM Plex Mono";
}
@media (max-width: 767px) {
  :root {
    --fs-md: 18px;
    --fs-lg: 20px;
    --fs-xl: 23px;
    --fs-2xl: 26px;
  }
}
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::before,
::after {
  box-sizing: border-box;
}
body {
  font-family: "Rajdhani", sans-serif;
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--text-x-light-gray);
  background-color: var(--bg-black);
  -webkit-text-size-adjust: 100%;
  -webkit-top-highlight-color: transparent;
}
a {
  color: var(--main-color);
  text-decoration: none;
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-x-light-gray);
  line-height: 1.3;
}
button {
  cursor: pointer;
  font-family: inherit;
}
::selection {
  color: var(--text-x-light-gray);
  background-color: var(--main-color);
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background-color: var(--bg-black);
}
::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}
[data-aos=fade-up] {
  transform: translate3d(0, 70%, 0);
}
[data-aos=scale-x-right] {
  transform: scale(0, 1);
  transform-origin: left;
}
[data-aos=scale-x-right].aos-animate {
  transform: scale(1);
}
body.t-img-gray img:not(.logo) {
}
.page-wrapper {
  overflow: hidden;
}
.container {
  max-width: var(--container);
  margin: auto;
  padding: 0 15px;
}
.img-cover {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--bg-black);
}
.img-cover[data-aos=slide-right] {
  left: 100%;
}
.grayscale-img {
  filter: grayscale(100%);
}
.img-cover:nth-of-type(2) {
  opacity: 0.8;
}
.line {
  height: 1px;
  background-color: var(--border-color);
  width: 100%;
  display: block;
}
.section-header--center {
  text-align: center;
}
.section-header__title {
  font-size: var(--fs-3xl);
  font-weight: 600;
  text-transform: capitalize;
}
.social {
  display: flex;
  gap: 25px;
}
.social--vertical {
  flex-direction: column;
}
.social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  transition: color 0.5s ease;
}
.social__link:hover {
  color: var(--text-x-light-gray);
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(11px);
  background-color: rgba(10, 10, 10, 0.62);
  background-image: linear-gradient(rgba(40, 40, 40, 0.25), rgba(30, 30, 30, 0.15));
  border-bottom: 1px solid rgba(243, 146, 32, 0.12);
  box-shadow: rgba(243, 146, 32, 0.05) 0px 1px 0px 0px inset, rgba(0, 0, 0, 0.6) 0px 1px 8px 0px;
  height: 60px;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.drawer-open {
  height: 520px;
}
.header.scrolled:not(.drawer-open) {
  background-color: rgba(10, 10, 10, 0.85);
  border-bottom-color: rgba(243, 146, 32, 0.2);
  box-shadow: rgba(243, 146, 32, 0.08) 0px 1px 0px 0px inset, rgba(243, 146, 32, 0.15) 0px 4px 20px 0px;
}
.header__container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  min-height: 60px;
}
.header-wrapper-l {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__logo-link {
  text-decoration: none;
  color: var(--main-color);
  font-family: "IBM Plex Mono", monospace;
  font-size: var(--fs-xl);
  font-weight: 700;
}
.language-selector {
  display: flex;
  gap: 8px;
  list-style: none;
  font-size: var(--fs-md);
  opacity: 0.7;
}
.language-selector a {
  color: var(--text-x-light-gray);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.language-selector a:hover,
.language-selector a.active {
  opacity: 1;
  color: var(--main-color);
}
.header__toggler {
  width: 60px;
  color: var(--text-x-light-gray);
  font-size: var(--fs-body);
  font-weight: 500;
  text-transform: capitalize;
  border: none;
  background-color: transparent;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  z-index: 110;
}
.header__toggler-text {
  position: relative;
  display: block;
  transition: transform 0.5s ease;
}
.header__toggler.active .header__toggler-text {
  transform: translateY(-100%);
}
.header__toggler-text::after {
  content: attr(data-text);
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}
.header__drawer {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease 0.1s, visibility 0.3s ease 0.1s;
  padding: 20px 0 40px;
}
.header.drawer-open .header__drawer {
  opacity: 1;
  visibility: visible;
}
.header__drawer-list {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
}
.header__drawer-item {
}
.header__drawer-link {
  display: block;
  color: var(--text-x-light-gray);
  font-size: var(--fs-xl);
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 20px;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 4px;
  text-decoration: none;
}
.header__drawer-link:hover {
  color: var(--main-color);
  background: rgba(243, 146, 32, 0.05);
}
.header__drawer-link.active {
  color: var(--main-color);
}
.header__drawer-link.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: var(--main-color);
  border-radius: 0 2px 2px 0;
}
.header__drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.header__drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 767px) {
  .header.drawer-open {
    height: 410px;
  }
  .header__drawer-link {
    font-size: var(--fs-lg);
    padding: 10px 15px;
  }
  .header-wrapper-l {
    gap: 20px;
  }
}
.d-flex {
  display: flex;
}
#scroll-progress-bar {
  position: fixed;
  height: 2px;
  width: 100%;
  background-color: var(--main-color);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.2s ease;
  z-index: 101;
}
.hero__content .scramble-step[data-step=logo-reveal] {
  display: none;
}
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 60px 0px;
  overflow: hidden;
}
@supports (height: 100dvh) {
  .hero {
    min-height: 100dvh;
  }
  @media (max-width: 860px) {
    .hero {
      min-height: 100svh;
    }
  }
}
.hero__wave-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(20, 40, 90, 0.25) 0%,
      rgba(4, 18, 32, 0.95) 55%,
      #000 100%);
  overflow: hidden;
  filter: blur(11px) saturate(1.05);
  will-change: transform;
}
.hero__wave-bg canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto auto;
  column-gap: 60px;
  row-gap: 18px;
  align-items: center;
}
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1;
  grid-row: 1 / span 2;
}
.hero__canvas {
  width: 100%;
  max-width: 540px;
  max-height: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  will-change: transform;
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  grid-column: 2;
  grid-row: 1;
}
.hero__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-x-light-gray);
  margin: 0;
}
.hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.6;
  color: var(--text-x-light-gray);
  opacity: 0.9;
  margin: 0;
}
.hero__tagline {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-x-light-gray);
}
.hero__tagline .highlight {
  color: var(--main-color);
}
.hero__cta {
  display: flex;
  gap: 20px;
  margin-top: 0;
  flex-wrap: wrap;
  grid-column: 2;
  grid-row: 2;
}
@media (max-width: 860px) {
  .hero {
    min-height: auto;
    padding: 86px 0 48px;
  }
  .hero__container {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: left;
  }
  .hero__visual,
  .hero__content,
  .hero__cta {
    grid-column: auto;
    grid-row: auto;
  }
  .hero__content {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .hero__title {
    align-self: flex-start;
  }
  .hero__subtitle {
    align-self: flex-start;
    font-size: clamp(0.85rem, 2vw, 1rem);
    opacity: 0.7;
    text-align: left;
    margin-top: 4px;
  }
  .hero__tagline {
    align-self: center;
    text-align: center;
    margin-top: 8px;
  }
  .hero__visual {
    order: 2;
    margin-top: -15px;
  }
  .hero__cta {
    order: 3;
    justify-content: center;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .hero__visual {
    min-height: 0;
  }
  .hero__canvas {
    width: min(420px, 100%);
    aspect-ratio: 1 / 1;
    height: auto;
    max-height: 280px;
  }
  .hero__cta {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .hero__cta .btn {
    width: min(420px, 100%);
  }
}
@media (max-width: 480px) {
  .hero__title br,
  .hero__subtitle br {
    display: none;
  }
  .hero__visual {
    min-height: 0;
  }
  .hero__canvas {
    min-height: 0;
  }
}
@property --angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@property --angle2 { syntax: "<angle>"; initial-value: 180deg; inherits: false; }
@keyframes spin {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}
@keyframes spin2 {
  from {
    --angle2: 180deg;
  }
  to {
    --angle2: 540deg;
  }
}
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  min-width: 200px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #f39220;
  background: transparent;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s ease;
  isolation: isolate;
  z-index: 0;
}
.btn:hover {
  color: hsl(0, 0%, 90%);
}
.btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 4px;
  z-index: 0;
  padding: 2px;
  background-image:
    conic-gradient(
      from var(--angle),
      #a53f00,
      #e55c00,
      #f77f00,
      #ff9d00,
      #ffb84d,
      #ffcc80,
      #ffb84d,
      #ff9d00,
      #f77f00,
      #e55c00,
      #a53f00);
  animation: spin 4s linear infinite;
  transition: background-image 0.3s ease;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.btn::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 7px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 4px;
  background-image:
    conic-gradient(
      from var(--angle2),
      #a53f00bb 0%,
      #ffcc80aa 25%,
      #a53f00bb 50%,
      #ffcc80aa 75%,
      #a53f00bb 100%);
  animation: spin2 6s linear infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.btn {
  z-index: 0;
}
.btn::after {
  z-index: 0;
}
.btn::before {
  z-index: -1;
}
.btn.is-scramble-paint-hidden::after,
.btn.is-scramble-paint-hidden::before {
  opacity: 0 !important;
  animation: none !important;
}
.btn:hover::after {
  inset: -1.5px;
  background-image:
    conic-gradient(
      from var(--angle),
      #a53f00 0%,
      #e55c00 10%,
      #ffcc80 20%,
      #f77f00 30%,
      #a53f00 45%,
      #ff9d00 55%,
      #ffcc80 65%,
      #e55c00 75%,
      #a53f00 90%,
      #f77f00 100%);
  animation: spin 2.5s linear infinite;
}
.btn:hover::before {
  opacity: 1;
}
.btn--primary {
  background: rgba(var(--main-color-rgb), 0.3);
  color: var(--text-x-light-gray);
  transition: background-color 0.5s ease;
}
.btn--primary:hover {
  background-color: transparent;
  box-shadow:
    0 0 20px rgba(var(--main-color-rgb), 0.35),
    0 0 60px rgba(var(--main-color-rgb), 0.12),
    inset 0 0 12px rgba(255, 255, 255, 0.08);
}
.btn--primary:active {
  box-shadow: 0 0 8px rgba(var(--main-color-rgb), 0.3), inset 0 0 8px rgba(0, 0, 0, 0.15);
}
.btn--secondary {
  background: transparent;
  color: var(--main-color);
  border: 1.5px solid rgba(var(--main-color-rgb), 0.45);
  box-shadow: 0 0 8px rgba(var(--main-color-rgb), 0.06), inset 0 0 8px rgba(var(--main-color-rgb), 0.03);
}
.btn--secondary:hover {
  border-color: rgba(var(--main-color-rgb), 0.8);
  color: var(--text-x-light-gray);
  box-shadow:
    0 0 18px rgba(var(--main-color-rgb), 0.2),
    0 0 50px rgba(var(--main-color-rgb), 0.06),
    inset 0 0 14px rgba(var(--main-color-rgb), 0.06);
}
.btn--secondary:active {
  background: rgba(var(--main-color-rgb), 0.06);
  box-shadow: 0 0 6px rgba(var(--main-color-rgb), 0.15), inset 0 0 10px rgba(var(--main-color-rgb), 0.05);
}
.btn--wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-color);
  color: #fff;
  box-shadow: 0 0 12px rgba(var(--wa-color-rgb), 0.15), 0 0 2px rgba(var(--wa-color-rgb), 0.2);
}
.btn--wa:hover {
  background: #20ba5a;
  box-shadow:
    0 0 20px rgba(var(--wa-color-rgb), 0.35),
    0 0 60px rgba(var(--wa-color-rgb), 0.1),
    inset 0 0 12px rgba(255, 255, 255, 0.08);
}
.btn--wa:active {
  box-shadow: 0 0 8px rgba(var(--wa-color-rgb), 0.3), inset 0 0 8px rgba(0, 0, 0, 0.15);
}
.btn--wa::after {
  background-image:
    conic-gradient(
      from var(--angle),
      #0a6640,
      #128c7e,
      #25d366,
      #20ba5a,
      #6fcf97,
      #25d366,
      #20ba5a,
      #128c7e,
      #0a6640);
}
.btn--wa:hover::after {
  background-image:
    conic-gradient(
      from var(--angle),
      #0a6640 0%,
      #128c7e 10%,
      #6fcf97 20%,
      #25d366 30%,
      #0a6640 45%,
      #20ba5a 55%,
      #6fcf97 65%,
      #128c7e 75%,
      #0a6640 90%,
      #25d366 100%);
}
.btn--wa:hover::before {
  background-image:
    conic-gradient(
      from var(--angle2),
      #0a664099 0%,
      #6fcf97aa 25%,
      #0a664099 50%,
      #6fcf97aa 75%,
      #0a664099 100%);
}
.btn--wa svg {
  display: block;
  fill: currentColor;
  flex-shrink: 0;
}
.btn--lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}
@media (max-width: 480px) {
  .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
  .btn--lg {
    padding: 16px 32px;
    font-size: 1rem;
  }
}
.work__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 80px;
}
.work__header-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--text-x-light-gray);
  letter-spacing: -0.02em;
}
.work__header-title span {
  color: var(--main-color);
}
.work__lead {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.65;
  opacity: 0.75;
  color: var(--text-x-light-gray);
}
@media (max-width: 768px) {
  .work__header {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }
}
.work {
  padding: 100px 0;
  margin-top: 100px;
  position: relative;
}
.work__slider {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  padding: 0 44px;
  box-sizing: border-box;
  --arrow-inset: 0px;
}
@media (max-width: 1024px) {
  .work__slider {
    padding: 0;
  }
}
.work__slides {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.work__slides-track {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform 0.6s ease;
}
.work__slide {
  min-width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  padding: 0 56px;
}
@media (max-width: 1024px) {
  .work__slide {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .work {
    padding: 60px 0;
  }
  .work__slide {
    padding: 0 16px;
  }
}
.work__slide-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  min-height: 560px;
}
@media (max-width: 1024px) {
  .work__slide-inner {
    gap: 40px;
    min-height: 560px;
  }
}
@media (max-width: 768px) {
  .work__slide-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }
}
.work__image-column {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.work__devices {
  position: relative;
  width: min(640px, 100%);
  aspect-ratio: 640 / 520;
  margin: 0 auto;
  --desktop-frame-radius: 12px;
  --desktop-screen-radius: 6px;
  --phone-frame-radius: 16px;
  --phone-screen-radius: 6px;
}
@media (max-width: 1024px) {
  .work__devices {
    width: min(560px, 100%);
    aspect-ratio: 560 / 480;
  }
}
@media (max-width: 768px) {
  .work__devices {
    width: 100%;
    aspect-ratio: 16 / 10;
  }
}
.work__device-mockup {
  position: absolute;
  background: #141414;
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 30px 70px rgba(0, 0, 0, 0.6);
}
.work__device-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02) 45%,
      rgba(255, 255, 255, 0));
  pointer-events: none;
}
.work__device-screen {
  position: absolute;
  isolation: isolate;
  overflow: hidden;
  background: #0b0b0b;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.work__device-screen::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 10px;
  height: 10px;
  transform: translateX(-50%) rotate(45deg);
  border-right: 2px solid var(--main-color);
  border-bottom: 2px solid var(--main-color);
  opacity: 0.85;
  pointer-events: none;
  z-index: 4;
  animation: workChevronBottom 1.15s ease-in-out infinite;
}
.work__device-screen::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44px;
  background:
    linear-gradient(
      to bottom,
      rgba(11, 11, 11, 0),
      rgba(11, 11, 11, 0.85));
  pointer-events: none;
  z-index: 3;
  opacity: 0.9;
}
.work__device-mockup:hover .work__device-screen::before,
.work__device-mockup:hover .work__device-screen::after {
  opacity: 0;
  animation: none;
  transition: opacity 0.25s ease;
}
@keyframes workChevronBottom {
  0%, 100% {
    bottom: 10px;
    opacity: 0.55;
  }
  50% {
    bottom: 12px;
    opacity: 0.95;
  }
}
.work__device-viewport {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(243, 146, 32, 0.4) rgba(255, 255, 255, 0.06);
}
.work__device-viewport img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
  object-position: top;
}
.work__device-viewport::-webkit-scrollbar {
  width: 6px;
}
.work__device-viewport::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}
.work__device-viewport::-webkit-scrollbar-thumb {
  background: rgba(243, 146, 32, 0.35);
  border-radius: 999px;
}
.work__device-viewport::-webkit-scrollbar-thumb:hover {
  background: rgba(243, 146, 32, 0.55);
}
.work__device-mockup--phone .work__device-viewport::-webkit-scrollbar {
  width: 4px;
}
.work__device-mockup--desktop {
  isolation: isolate;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 86%;
  height: 72%;
  border-radius: var(--desktop-frame-radius);
  z-index: 1;
}
.work__device-mockup--desktop .work__device-screen {
  inset: 14px;
  z-index: 2;
  border-radius: var(--desktop-screen-radius);
}
@media (max-width: 768px) {
  .work__device-mockup--desktop {
    width: 100%;
    height: 100%;
    position: absolute;
  }
  .work__device-mockup--desktop::after {
    display: none;
  }
}
.work__device-mockup--phone {
  right: 0;
  bottom: 0;
  width: 30%;
  height: 78%;
  border-radius: var(--phone-frame-radius);
  z-index: 2;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 35px 70px rgba(0, 0, 0, 0.65);
}
.work__device-mockup--phone .work__device-screen {
  inset: 10px;
  border-radius: var(--phone-screen-radius);
}
@media (max-width: 768px) {
  .work__device-mockup--phone {
    display: none;
  }
}
.work__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  padding: 12px;
  cursor: pointer;
  color: var(--main-color);
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.work__arrow--prev {
  left: var(--arrow-inset);
}
.work__arrow--next {
  right: var(--arrow-inset);
}
.work__arrow::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}
.work__arrow--prev::before {
  transform: rotate(-135deg);
}
.work__arrow--next::before {
  transform: rotate(45deg);
}
.work__arrow:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.15);
}
@media (max-width: 1024px) {
  .work__arrow {
    display: none;
  }
}
.work__content-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}
.work__details {
  max-width: 600px;
}
.work__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--text-x-light-gray);
  margin-bottom: 8px;
  line-height: 1.2;
}
.work__subtitle {
  font-size: 1.1rem;
  color: var(--main-color);
  margin-bottom: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.work__quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-x-light-gray);
  font-style: italic;
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 3px solid var(--main-color);
  opacity: 0.9;
}
.work__quote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  font-style: normal;
  opacity: 0.7;
}
.work__features {
  margin-bottom: 30px;
}
.work__features-title {
  font-size: 1.1rem;
  color: var(--main-color);
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.work__features-list {
  list-style: none;
  padding: 0;
}
.work__features-list li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-x-light-gray);
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}
.work__features-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--main-color);
  font-weight: bold;
}
.work__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--main-color);
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}
.work__link:hover {
  gap: 12px;
}
.work__progress {
  width: 100%;
  height: 4px;
  background: var(--border-color);
  margin: 4px 0 14px;
  border-radius: 2px;
  overflow: hidden;
}
.work__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--main-color);
  transition: none;
}
.work__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  border: none;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    width 0.3s ease;
  padding: 0;
}
.dot:hover {
  background: var(--main-color);
  transform: scale(1.2);
}
.dot.active {
  background: var(--main-color);
  width: 32px;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .work__content-column {
    padding: 0 10px;
  }
  .work__title {
    font-size: 1.5rem;
  }
  .work__subtitle {
    font-size: 0.95rem;
  }
  .work__quote {
    font-size: 0.95rem;
    padding-left: 15px;
    margin-bottom: 25px;
  }
  .work__quote cite {
    font-size: 0.85rem;
  }
  .work__features {
    margin-bottom: 25px;
  }
  .work__features-title {
    font-size: 1rem;
  }
  .work__features-list li {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  .work__link {
    font-size: 1rem;
  }
}
.why {
  padding: 140px 0 160px;
  position: relative;
  overflow: hidden;
}
.why__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.why__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 100px;
}
.why__title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--text-x-light-gray);
  letter-spacing: -0.02em;
}
.why__title span {
  color: var(--main-color);
}
.why__lead {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.65;
  opacity: 0.75;
  max-width: 440px;
  justify-self: end;
  align-self: end;
}
.why__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 20px;
}
.why__card {
  position: relative;
  padding: 48px 36px 44px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.4s ease, background 0.4s ease;
  display: flex;
  flex-direction: column;
}
.why__num {
  font-size: clamp(4.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--main-color);
  opacity: 0.12;
  position: absolute;
  top: -8px;
  right: 20px;
  user-select: none;
  pointer-events: none;
}
.why__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--main-color);
  opacity: 0.85;
  margin-bottom: 20px;
}
.why__card-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-x-light-gray);
  margin-bottom: 18px;
}
.why__card-text {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.75;
  flex: 1;
}
.why__card:hover::after {
  transform: scaleX(1);
}
@media (max-width: 1024px) {
  .why {
    padding: 100px 0 120px;
  }
  .why__header {
    margin-bottom: 72px;
  }
  .why__grid {
    grid-template-columns: 1fr 1fr;
  }
  .why__card:last-child {
    grid-column: 1 / -1;
  }
}
@media (max-width: 680px) {
  .why {
    padding: 80px 0 100px;
  }
  .why__header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 56px;
  }
  .why__lead {
    justify-self: start;
    max-width: 100%;
  }
  .why__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why__card:last-child {
    grid-column: auto;
  }
  .why__card {
    padding: 40px 28px 36px;
  }
  .why__num {
    font-size: 4rem;
    top: -4px;
    right: 16px;
  }
}
.process {
  padding: 140px 0 160px;
  position: relative;
  overflow: hidden;
}
.process__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.process__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 100px;
}
.process__title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--text-x-light-gray);
  letter-spacing: -0.02em;
}
.process__title span {
  color: var(--main-color);
}
.process__lead {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.65;
  opacity: 0.75;
  max-width: 440px;
  justify-self: end;
  align-self: end;
}
.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process__progress {
  position: absolute;
  left: 140px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(243, 146, 32, 0.14) 15%,
      rgba(243, 146, 32, 0.14) 85%,
      transparent);
  pointer-events: none;
  overflow: hidden;
}
.process__progress-fill {
  position: absolute;
  inset: 0;
  transform-origin: top;
  transform: scaleY(0);
  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(243, 146, 32, 0.65) 15%,
      rgba(243, 146, 32, 0.65) 85%,
      transparent);
  transition: transform 220ms ease-out;
}
.process__step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  align-items: start;
  position: relative;
}
.process__step:nth-child(2) .process__body {
  margin-left: 0;
}
.process__step:nth-child(3) .process__body {
  margin-left: 60px;
}
.process__step:nth-child(4) .process__body {
  margin-left: 120px;
}
.process__step:nth-child(5) .process__body {
  margin-left: 40px;
}
.process__step::after {
  content: "";
  position: absolute;
  left: 140px;
  top: calc(40px + 64px + 4px);
  height: 1px;
  width: 0;
  background: rgba(243, 146, 32, 0.55);
  transition: width 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.process__step.is-active::after {
  width: var(--connector-px, 0px);
}
.process__num-col {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
.process__num {
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text-x-light-gray);
  opacity: 0.06;
  transition: opacity 0.5s ease;
  user-select: none;
}
.process__num-col::after {
  content: "";
  position: absolute;
  left: 140px;
  top: 64px;
  transform: translateX(-50%) scale(0.92);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg-black);
  border: 2px solid rgba(243, 146, 32, 0.4);
  transition:
    border-color 0.4s ease,
    background 0.4s ease,
    transform 0.5s ease;
}
.process__body {
  padding: 40px 40px 48px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
  border-radius: 3px;
  transform: translateX(28px);
  opacity: 0;
  will-change: transform, opacity;
  transition:
    transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 600ms ease,
    border-color 0.4s ease,
    background 0.4s ease;
}
.process.process--measuring .process__body {
  transform: none !important;
}
.process__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--main-color);
  opacity: 0.85;
  margin-bottom: 14px;
}
.process__step-title {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-x-light-gray);
  margin-bottom: 16px;
}
.process__step-text {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.7;
  max-width: 540px;
}
.process__delivers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.process__tag {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-x-light-gray);
  opacity: 0.55;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}
.process__step.is-active .process__num {
  opacity: 0.14;
}
.process__step.is-active .process__num-col::after {
  border-color: var(--main-color);
  background: var(--main-color);
  transform: translateX(-50%) scale(1);
}
.process__step.is-active .process__body {
  transform: translateX(0);
  opacity: 1;
  border-color: rgba(243, 146, 32, 0.18);
  background: rgba(243, 146, 32, 0.025);
}
.process__step.is-active .process__tag {
  opacity: 0.8;
  border-color: rgba(243, 146, 32, 0.15);
}
@media (max-width: 1024px) {
  .process {
    padding: 100px 0 120px;
  }
  .process__header {
    margin-bottom: 72px;
  }
  .process__progress {
    left: 100px;
  }
  .process__step {
    grid-template-columns: 100px 1fr;
  }
  .process__step::after {
    left: 100px;
  }
  .process__num-col::after {
    left: 100px;
  }
  .process__step:nth-child(2) .process__body {
    margin-left: 0;
  }
  .process__step:nth-child(3) .process__body {
    margin-left: 30px;
  }
  .process__step:nth-child(4) .process__body {
    margin-left: 60px;
  }
  .process__step:nth-child(5) .process__body {
    margin-left: 20px;
  }
  .process__num {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
  }
}
@media (max-width: 680px) {
  .process {
    overflow: visible;
    padding: 80px 0 100px;
  }
  .process__progress {
    display: block;
    left: 18px;
    top: 6px;
    bottom: 6px;
  }
  .process__step {
    grid-template-columns: 18px 1fr;
  }
  .process__num-col {
    padding: 0;
  }
  .process__num-col::after {
    left: 18px;
    top: 22px;
    transform: translateX(-50%) scale(0.92);
  }
  .process__step::after {
    left: 18px;
    top: 26px;
  }
  .process__body {
    margin-left: 0;
    padding: 28px 20px 30px;
    transform: translateX(12px);
  }
  .process__num {
    position: absolute;
    right: 14px;
    top: 14px;
    font-size: 0.95rem;
    opacity: 0.32;
    letter-spacing: 0.06em;
    line-height: 1;
    pointer-events: none;
  }
}
[data-reveal] {
  transition: opacity 0.6s ease, transform 0.6s ease !important;
}
[data-reveal]:not(.is-visible) {
  opacity: 0;
}
[data-reveal=up],
[data-reveal] {
  transform: translateY(28px);
}
[data-reveal=down] {
  transform: translateY(-28px);
}
[data-reveal=left] {
  transform: translateX(-28px);
}
[data-reveal=right] {
  transform: translateX(28px);
}
[data-reveal=fade] {
  transform: none;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .process__progress-fill {
    transition: none;
  }
  .process__body {
    transform: none;
    opacity: 1;
    transition: none;
  }
  .process__step::after {
    transition: none;
  }
  .process__step.is-active::after {
    width: var(--connector-px, 0px);
  }
  @media (max-width: 680px) {
    .process__step.is-active::after {
      width: 14px;
    }
  }
}
.about {
  padding: 140px 0 160px;
  position: relative;
  overflow: hidden;
}
.about__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.about__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 100px;
}
.about__title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--text-x-light-gray);
  letter-spacing: -0.02em;
}
.about__title span {
  color: var(--main-color);
}
.about__lead {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.65;
  opacity: 0.75;
  max-width: 440px;
  justify-self: end;
  align-self: end;
}
.about__team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 100px;
}
.about__person {
  position: relative;
}
.about__person:not(.is-visible) .about__linkedin {
  opacity: 0 !important;
}
.about__person:nth-child(2) {
  margin-top: 80px;
}
.about__photo-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.about__photo {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(1) brightness(0.9) contrast(1.05);
  transition: opacity 0.5s ease;
}
.about__person:hover .about__photo {
  opacity: 0.45;
}
.about__linkedin {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-x-light-gray);
  opacity: 0;
  transition:
    opacity 0.4s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}
.about__person:hover .about__linkedin {
  opacity: 1;
}
.about__linkedin:hover {
  border-color: rgba(243, 146, 32, 0.4);
  color: var(--main-color);
}
.about__linkedin svg {
  display: block;
  fill: currentColor;
}
.about__role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--main-color);
  opacity: 0.85;
  margin-bottom: 6px;
}
.about__name {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-x-light-gray);
}
.about__badges {
  text-align: center;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.about__badges-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-bottom: 28px;
}
.about__badges-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}
.about__badge-img {
  height: 70px;
  filter: grayscale(1) brightness(0.7);
  opacity: 0.45;
  transition: all 0.4s ease;
}
.about__badge-img:hover {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}
@media (max-width: 1024px) {
  .about {
    padding: 100px 0 120px;
  }
  .about__header {
    margin-bottom: 72px;
  }
  .about__team {
    margin-bottom: 80px;
  }
  .about__person:nth-child(2) {
    margin-top: 60px;
  }
}
@media (max-width: 680px) {
  .about {
    padding: 80px 0 100px;
  }
  .about__header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 56px;
  }
  .about__lead {
    justify-self: start;
    max-width: 100%;
  }
  .about__team {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 100%;
  }
  .about__person:nth-child(2) {
    margin-top: 0;
  }
  .about__person:nth-child(1) {
    max-width: 300px;
    justify-self: start;
  }
  .about__person:nth-child(2) {
    max-width: 300px;
    justify-self: end;
    text-align: right;
  }
  .about__linkedin {
    opacity: 1;
  }
  .about__badges {
    padding-top: 48px;
  }
  .about__badges-row {
    gap: 28px;
  }
  .about__badge-img {
    height: 56px;
    filter: grayscale(0) brightness(0.7);
    opacity: 0.75;
  }
}
@media (max-width: 400px) {
  .about__person:nth-child(1),
  .about__person:nth-child(2) {
    max-width: 240px;
  }
}
.contact {
  padding: 140px 0 0;
  position: relative;
}
.contact__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.contact__header {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 80px;
}
.contact__title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--text-x-light-gray);
  letter-spacing: -0.02em;
}
.contact__title span {
  color: var(--main-color);
}
.contact__lead {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.65;
  opacity: 0.75;
  max-width: 440px;
  justify-self: end;
  align-self: end;
}
.contact__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.contact__primary {
  padding: 52px 44px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 3px;
  transition: border-color 0.4s ease, background 0.4s ease;
}
.contact__primary:hover {
  border-color: rgba(37, 211, 102, 0.15);
  background: rgba(37, 211, 102, 0.02);
}
.contact__primary-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--main-color);
  opacity: 0.85;
  margin-bottom: 18px;
}
.contact__primary-heading {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-x-light-gray);
  margin-bottom: 14px;
}
.contact__primary-text {
  font-size: 1.05rem;
  line-height: 1.65;
  opacity: 0.65;
  margin-bottom: 32px;
  max-width: 380px;
}
.contact__secondary {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact__detail {
  padding: 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: none;
  background: rgba(255, 255, 255, 0.015);
}
.contact__detail:first-child {
  border-radius: 3px 3px 0 0;
}
.contact__detail:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0 0 3px 3px;
}
.contact__detail-link {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: inherit;
}
.contact__detail-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-x-light-gray);
  opacity: 0.5;
  transition:
    opacity 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}
.contact__detail:hover .contact__detail-icon {
  opacity: 1;
  border-color: rgba(243, 146, 32, 0.25);
  color: var(--main-color);
}
.contact__detail:hover {
  background: rgba(243, 146, 32, 0.025);
}
.contact__detail-icon svg {
  display: block;
  fill: currentColor;
}
.contact__detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 2px;
}
.contact__detail-value {
  font-size: 1.05rem;
  color: var(--text-x-light-gray);
  line-height: 1.4;
  transition: color 0.3s ease;
}
.contact__detail:hover .contact__detail-value {
  color: var(--main-color);
}
.contact__detail-note {
  font-size: 0.82rem;
  opacity: 0.4;
  font-style: italic;
  margin-top: 2px;
}
@media (max-width: 1024px) {
  .contact {
    padding: 100px 0 60px;
  }
  .contact__header {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .contact {
    padding: 80px 0 48px;
  }
  .contact__header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }
  .contact__lead {
    justify-self: start;
    max-width: 100%;
  }
  .contact__body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact__primary {
    padding: 40px 28px;
  }
  .contact__detail {
    padding: 22px 24px;
  }
}
.footer {
  max-width: var(--container);
  margin: 80px auto 0;
  padding: 32px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__text {
  font-size: 0.9rem;
  opacity: 0.45;
}
.footer__link {
  color: var(--text-x-light-gray);
  opacity: 0.45;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.footer__link:hover {
  opacity: 1;
  color: var(--main-color);
}
