/* =========================================================
   YAZONII — PREMIUM PORTFOLIO
   style.css
   ========================================================= */

:root {
  --bg: #050505;
  --bg-soft: #0a0a0a;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-hover: rgba(255, 255, 255, 0.085);

  --text: #f5f5f5;
  --muted: #929292;
  --dim: #5d5d5d;

  --line: rgba(255, 255, 255, 0.1);
  --line-bright: rgba(255, 255, 255, 0.18);

  --orange: #ff681a;
  --orange-soft: rgba(255, 104, 26, 0.18);

  --radius: 28px;
  --radius-small: 16px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --viewport-height: 100vh;
}


/* =========================================================
   RESET
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
  background: var(--bg);
}


body {
  min-height: 100vh;

  background:
    radial-gradient(
      circle at 50% -20%,
      rgba(255, 104, 26, 0.055),
      transparent 38%
    ),
    var(--bg);

  color: var(--text);

  font-family:
    "Inter",
    Arial,
    sans-serif;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


body.page-hidden * {
  animation-play-state: paused !important;
}


::selection {
  background: var(--orange);
  color: #050505;
}


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


button,
a {
  -webkit-tap-highlight-color: transparent;
}


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


button,
input,
textarea {
  font: inherit;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.ambient {
  position: fixed;
  inset: 0;

  z-index: -5;

  pointer-events: none;

  overflow: hidden;
}


.background-grid {
  position: absolute;
  inset: 0;

  opacity: 0.18;

  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: 70px 70px;

  mask-image:
    radial-gradient(
      ellipse at center,
      black 0%,
      transparent 75%
    );
}


.orb {
  position: absolute;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  filter: blur(90px);

  opacity: 0.13;

  will-change: transform;
}


.orb-one {
  top: 5%;
  left: -12%;

  background: var(--orange);

  animation:
    orbFloatOne 12s ease-in-out infinite;
}


.orb-two {
  right: -12%;
  top: 35%;

  background: #6a3cff;

  opacity: 0.08;

  animation:
    orbFloatTwo 15s ease-in-out infinite;
}


.orb-three {
  left: 35%;
  bottom: -20%;

  background: #ff4b0a;

  opacity: 0.055;

  animation:
    orbFloatThree 18s ease-in-out infinite;
}


@keyframes orbFloatOne {

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

  50% {
    transform: translate3d(100px, 60px, 0);
  }

}


@keyframes orbFloatTwo {

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

  50% {
    transform: translate3d(-80px, 70px, 0);
  }

}


@keyframes orbFloatThree {

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

  50% {
    transform: translate3d(60px, -80px, 0);
  }

}


/* =========================================================
   SPARKLES
   ========================================================= */

.sparkle-field {
  position: fixed;
  inset: 0;

  z-index: 2;

  pointer-events: none;

  overflow: hidden;
}


.generated-sparkle {
  position: absolute;

  width: var(--spark-size);
  height: var(--spark-size);

  display: grid;
  place-items: center;

  color: rgba(255,255,255,0.65);

  font-size: var(--spark-size);

  opacity: 0;

  animation:
    sparkleFloat
    var(--spark-duration)
    var(--ease)
    var(--spark-delay)
    forwards;

  text-shadow:
    0 0 12px rgba(255,255,255,0.3);
}


@keyframes sparkleFloat {

  0% {
    opacity: 0;
    transform:
      translate3d(0, 20px, 0)
      scale(0.5)
      rotate(0deg);
  }

  20% {
    opacity: 0.8;
  }

  70% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform:
      translate3d(0, -70px, 0)
      scale(1.2)
      rotate(45deg);
  }

}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
  position: fixed;

  top: 22px;
  left: 50%;

  width: min(
    calc(100% - 40px),
    1180px
  );

  transform:
    translateX(-50%);

  z-index: 100;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 13px 12px 19px;

  border: 1px solid var(--line);

  transition:
    background 0.5s var(--ease),
    border-color 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    transform 0.5s var(--ease);
}


.navbar-scrolled {
  background:
    rgba(10, 10, 10, 0.78);

  border-color:
    var(--line-bright);

  box-shadow:
    0 20px 70px
    rgba(0,0,0,0.35);
}


.liquid-glass {
  position: relative;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.08),
      rgba(255,255,255,0.025)
    );

  backdrop-filter:
    blur(22px)
    saturate(140%);

  -webkit-backdrop-filter:
    blur(22px)
    saturate(140%);

  border: 1px solid var(--line);

  overflow: hidden;
}


.liquid-glass::before {
  content: "";

  position: absolute;

  inset: 0;

  pointer-events: none;

  background:
    radial-gradient(
      260px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(255,255,255,0.12),
      transparent 65%
    );

  opacity: 0;

  transition:
    opacity 0.45s ease;
}


.liquid-glass:hover::before,
.liquid-glass.glass-hover::before {
  opacity: 1;
}


.liquid-glass::after {
  content: "";

  position: absolute;

  top: 0;
  left: 8%;

  width: 84%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.25),
      transparent
    );

  opacity: 0.6;
}


.brand {
  position: relative;

  display: flex;
  align-items: center;

  gap: 3px;

  font-size: 17px;
  font-weight: 700;

  letter-spacing: -0.05em;

  z-index: 2;

  transition:
    transform 0.35s var(--ease);
}


.brand span:first-of-type {
  color: var(--orange);
}


.brand-sparkle {
  position: absolute;

  right: -16px;
  top: -5px;

  color: var(--orange);

  font-size: 10px;

  opacity: 0.8;

  transition:
    transform 0.5s var(--ease),
    opacity 0.3s ease;
}


.sparkle-pop {
  transform:
    rotate(35deg)
    scale(1.7);

  opacity: 1;
}


.nav-links {
  display: flex;
  align-items: center;

  gap: 32px;

  margin-left: 80px;
}


.nav-links a {
  position: relative;

  color: #a5a5a5;

  font-size: 12px;
  font-weight: 500;

  transition:
    color 0.3s ease;
}


.nav-links a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -5px;

  width: 0;
  height: 1px;

  background: var(--orange);

  transition:
    width 0.4s var(--ease);
}


.nav-links a:hover {
  color: white;
}


.nav-links a:hover::after {
  width: 100%;
}


.nav-cta {
  position: relative;

  display: flex;
  align-items: center;
  gap: 9px;

  padding: 11px 16px;

  border-radius: 12px;

  background: #f5f5f5;

  color: #080808;

  font-size: 12px;
  font-weight: 600;

  transition:
    transform 0.3s var(--ease),
    background 0.3s ease;
}


.nav-cta:hover {
  background: white;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;

  min-height:
    var(--viewport-height);

  display: flex;
  align-items: center;

  padding:
    150px
    max(24px, 5vw)
    110px;

  overflow: hidden;
}


.hero-content {
  width: min(
    100%,
    1300px
  );

  margin: 0 auto;

  position: relative;

  z-index: 5;

  will-change: transform;

  transition:
    transform 0.15s linear;
}


.hero-noise {
  position: absolute;
  inset: 0;

  pointer-events: none;

  opacity: 0.045;

  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");

  mix-blend-mode: screen;
}


.availability {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 30px;

  color: #8e8e8e;

  font-family:
    "DM Mono",
    monospace;

  font-size: 10px;

  text-transform: uppercase;

  letter-spacing: 0.12em;
}


.availability-dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #6cff8d;

  box-shadow:
    0 0 0 5px
    rgba(108,255,141,0.06),

    0 0 18px
    rgba(108,255,141,0.5);

  animation:
    availabilityPulse
    2.4s ease-in-out infinite;
}


@keyframes availabilityPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }

}


.hero-title {
  max-width: 1250px;

  font-size:
    clamp(4rem, 9.7vw, 10rem);

  line-height: 0.86;

  letter-spacing:
    -0.075em;

  font-weight: 600;

  text-wrap: balance;
}


.hero-line {
  display: block;
}


.hero-line:not(.hero-line-visible) {
  opacity: 0;

  transform:
    translateY(55px)
    skewY(3deg);

  filter: blur(10px);
}


.hero-line-visible {
  opacity: 1;

  transform:
    translateY(0)
    skewY(0);

  filter: blur(0);

  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease),
    filter 1s var(--ease);
}


.hero-impossible {
  position: relative;

  display: inline-block;

  color: white;
}


.impossible-line {
  position: absolute;

  left: 0;
  bottom: -0.045em;

  width: 0;
  height: 0.065em;

  border-radius: 100px;

  background:
    linear-gradient(
      90deg,
      var(--orange),
      #ff9b63,
      var(--orange)
    );

  box-shadow:
    0 0 25px
    rgba(255,104,26,0.35);

  transform-origin: left;

  transition:
    width 1.5s
    cubic-bezier(0.16, 1, 0.3, 1);
}


.underline-active
.impossible-line {
  width: 100%;
}


.hero-last {
  color: #8a8a8a;
}


.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 50px;

  margin-top: 75px;
}


.hero-description {
  max-width: 430px;

  color: #858585;

  font-size: 15px;

  line-height: 1.7;

  letter-spacing: -0.015em;
}


.hero-actions {
  display: flex;

  align-items: center;

  gap: 10px;
}


.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 18px;

  min-height: 52px;

  padding:
    0 21px;

  border-radius: 14px;

  font-size: 12px;

  font-weight: 600;

  transition:
    transform 0.35s var(--ease),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.4s ease;
}


.button-primary {
  background: white;

  color: #080808;

  box-shadow:
    0 10px 35px
    rgba(255,255,255,0.07);
}


.button-primary:hover {
  box-shadow:
    0 15px 50px
    rgba(255,255,255,0.13);
}


.button-glass {
  background:
    rgba(255,255,255,0.04);

  border:
    1px solid var(--line);

  color: #d8d8d8;

  backdrop-filter:
    blur(12px);
}


.button-glass:hover {
  background:
    rgba(255,255,255,0.08);

  border-color:
    var(--line-bright);
}


.signature-sparkle {
  position: absolute;

  z-index: 4;

  color: white;

  pointer-events: none;

  will-change: transform;

  transition:
    transform 0.3s ease;
}


.sparkle-one {
  right: 13%;
  top: 29%;

  color: var(--orange);

  font-size: 22px;

  animation:
    sparkleTwinkle
    4s ease-in-out infinite;
}


.sparkle-two {
  right: 25%;
  bottom: 28%;

  color: #aaa;

  font-size: 14px;

  animation:
    sparkleTwinkle
    5s
    1s
    ease-in-out
    infinite;
}


.sparkle-three {
  left: 11%;
  bottom: 22%;

  color: #777;

  font-size: 20px;

  animation:
    sparkleTwinkle
    6s
    2s
    ease-in-out
    infinite;
}


@keyframes sparkleTwinkle {

  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.8) rotate(0deg);
  }

  50% {
    opacity: 1;
    transform: scale(1.35) rotate(25deg);
  }

}


.sparkle-burst {
  animation:
    sparkleBurst
    1.2s
    var(--ease);
}


@keyframes sparkleBurst {

  0% {
    transform: scale(1);
    opacity: 0.4;
  }

  35% {
    transform: scale(2.2) rotate(30deg);
    opacity: 1;
  }

  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.3;
  }

}


.scroll-indicator {
  position: absolute;

  left: max(24px, 5vw);
  bottom: 36px;

  display: flex;
  align-items: center;

  gap: 12px;

  color: #555;

  font-family:
    "DM Mono",
    monospace;

  font-size: 9px;

  text-transform: uppercase;

  letter-spacing: 0.1em;
}


.scroll-line {
  position: relative;

  width: 38px;
  height: 1px;

  overflow: hidden;

  background:
    rgba(255,255,255,0.12);
}


.scroll-line span {
  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 100%;

  background: white;

  transform:
    translateX(-100%);

  animation:
    scrollLine
    2.2s
    ease-in-out
    infinite;
}


@keyframes scrollLine {

  0% {
    transform: translateX(-100%);
  }

  50%,
  70% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }

}


.hero-side-text {
  position: absolute;

  right: -70px;
  top: 50%;

  transform:
    rotate(90deg);

  color: #373737;

  font-family:
    "DM Mono",
    monospace;

  font-size: 8px;

  letter-spacing: 0.2em;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.section {
  position: relative;

  width: min(
    calc(100% - 48px),
    1280px
  );

  margin: 0 auto;

  padding:
    150px 0;
}


.section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 35px;

  border-bottom:
    1px solid var(--line);
}


.eyebrow,
.section-number {
  color: #696969;

  font-family:
    "DM Mono",
    monospace;

  font-size: 9px;

  text-transform: uppercase;

  letter-spacing: 0.15em;
}


.section-number {
  color: #424242;
}


.section-heading {
  max-width: 1000px;

  margin-top: 75px;

  font-size:
    clamp(3rem, 7vw, 7.5rem);

  line-height: 0.92;

  letter-spacing:
    -0.07em;

  font-weight: 600;
}


.section-heading span {
  display: block;

  color: #696969;
}


.reveal {
  opacity: 0;

  transform:
    translateY(45px);

  filter: blur(8px);

  transition:
    opacity 0.9s var(--ease),
    transform 1s var(--ease),
    filter 1s var(--ease);
}


.reveal.is-visible {
  opacity: 1;

  transform:
    translateY(0);

  filter: blur(0);
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-content {
  display: grid;

  grid-template-columns:
    minmax(0, 1.4fr)
    minmax(260px, 0.6fr);

  gap: 80px;

  align-items: end;
}


.about-copy {
  max-width: 450px;

  margin-top: 80px;
}


.about-copy p {
  color: #737373;

  font-size: 14px;

  line-height: 1.8;
}


.about-copy .large-copy {
  margin-bottom: 25px;

  color: #cfcfcf;

  font-size: 19px;

  line-height: 1.55;

  letter-spacing: -0.025em;
}


.identity-card {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 30px;

  margin-top: 100px;

  min-height: 220px;

  padding: 30px;

  border-radius: var(--radius);

  transition:
    transform 0.5s var(--ease),
    border-color 0.4s ease;
}


.identity-card:hover {
  transform:
    translateY(-6px);
}


.identity-left {
  position: relative;
  z-index: 2;
}


.identity-label {
  display: block;

  margin-bottom: 14px;

  color: #676767;

  font-family:
    "DM Mono",
    monospace;

  font-size: 9px;

  text-transform: uppercase;

  letter-spacing: 0.13em;
}


.identity-left h3 {
  font-size: 42px;

  line-height: 1;

  letter-spacing: -0.07em;
}


.identity-right {
  display: flex;
  flex-direction: column;

  gap: 7px;

  color: #777;

  font-family:
    "DM Mono",
    monospace;

  font-size: 9px;

  text-align: right;

  text-transform: uppercase;
}


.identity-spark {
  position: absolute;

  top: 24px;
  right: 28px;

  color: var(--orange);

  font-size: 16px;

  animation:
    sparkleTwinkle
    4s
    ease-in-out
    infinite;
}


/* =========================================================
   SERVICES
   ========================================================= */

.process-intro {
  display: grid;

  grid-template-columns:
    minmax(0, 1.5fr)
    minmax(250px, 0.5fr);

  gap: 70px;

  align-items: end;
}


.process-intro > p {
  margin-top: 70px;

  max-width: 360px;

  color: #747474;

  font-size: 14px;

  line-height: 1.8;
}


.service-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 14px;

  margin-top: 90px;
}


.service-card {
  position: relative;

  min-height: 330px;

  padding: 27px;

  border-radius: var(--radius);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  transform-style: preserve-3d;

  transition:
    transform 0.5s var(--ease),
    border-color 0.4s ease,
    background 0.4s ease,
    box-shadow 0.5s var(--ease);

  will-change: transform;
}


.service-card:hover {
  border-color:
    rgba(255,255,255,0.18);

  box-shadow:
    0 30px 90px
    rgba(0,0,0,0.28);
}


.service-top {
  position: relative;

  z-index: 2;

  display: flex;
  justify-content: space-between;
  align-items: center;
}


.service-number {
  color: #555;

  font-family:
    "DM Mono",
    monospace;

  font-size: 9px;

  letter-spacing: 0.12em;
}


.service-icon {
  display: grid;
  place-items: center;

  width: 36px;
  height: 36px;

  border:
    1px solid var(--line);

  border-radius: 50%;

  color: #b5b5b5;

  transition:
    transform 0.5s var(--ease),
    color 0.3s ease,
    border-color 0.3s ease;
}


.service-card:hover
.service-icon {
  transform:
    rotate(20deg)
    scale(1.08);

  color: var(--orange);

  border-color:
    rgba(255,104,26,0.3);
}


.service-card h3 {
  position: relative;

  z-index: 2;

  margin-bottom: 14px;

  font-size: 27px;

  line-height: 1;

  letter-spacing: -0.05em;
}


.service-card p {
  position: relative;

  z-index: 2;

  max-width: 420px;

  color: #777;

  font-size: 13px;

  line-height: 1.7;
}


.card-glow {
  position: absolute;

  width: 240px;
  height: 240px;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255,104,26,0.12),
      transparent 70%
    );

  filter: blur(20px);

  opacity: 0;

  transition:
    opacity 0.6s var(--ease);
}


.service-card:hover
.card-glow {
  opacity: 1;
}


/* =========================================================
   WORK
   ========================================================= */

.work {
  padding-top: 170px;
}


.work .service-card {
  min-height: 290px;
}


.work .service-card:nth-child(1) {
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(255,104,26,0.08),
      transparent 45%
    ),
    var(--surface);
}


.work .service-card:nth-child(2) {
  background:
    radial-gradient(
      circle at 20% 90%,
      rgba(120,90,255,0.07),
      transparent 45%
    ),
    var(--surface);
}


.work .service-card:nth-child(3) {
  background:
    radial-gradient(
      circle at 80% 80%,
      rgba(255,255,255,0.05),
      transparent 50%
    ),
    var(--surface);
}


.work .service-card:nth-child(4) {
  border-style: dashed;

  opacity: 0.7;
}


/* =========================================================
   PROCESS
   ========================================================= */

.process-track {
  position: relative;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 30px;

  margin-top: 120px;
}


.process-line {
  position: absolute;

  left: 0;
  top: 23px;

  width: 100%;
  height: 1px;

  background:
    rgba(255,255,255,0.08);
}


.process-line span {
  display: block;

  width: 1px;
  height: 0;

  background:
    linear-gradient(
      var(--orange),
      #ff9a68
    );

  box-shadow:
    0 0 15px
    rgba(255,104,26,0.4);
}


.process-item {
  position: relative;

  padding-top: 60px;
}


.process-dot {
  position: absolute;

  top: 0;
  left: 0;

  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border:
    1px solid var(--line-bright);

  border-radius: 50%;

  background:
    #090909;

  color: #777;

  font-family:
    "DM Mono",
    monospace;

  font-size: 9px;

  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.4s ease;
}


.process-item:hover
.process-dot {
  color: white;

  border-color:
    var(--orange);

  box-shadow:
    0 0 25px
    rgba(255,104,26,0.15);
}


.process-item h3 {
  margin-bottom: 13px;

  font-size: 22px;

  letter-spacing: -0.04em;
}


.process-item p {
  max-width: 230px;

  color: #6d6d6d;

  font-size: 12px;

  line-height: 1.7;
}


/* =========================================================
   STATEMENT
   ========================================================= */

.statement {
  position: relative;

  min-height: 850px;

  display: flex;
  align-items: center;

  justify-content: center;

  padding:
    150px 24px;

  overflow: hidden;

  border-top:
    1px solid var(--line);

  border-bottom:
    1px solid var(--line);
}


.statement::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      ellipse at center,
      rgba(255,104,26,0.06),
      transparent 55%
    );
}


.statement-orb {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 650px;
  height: 650px;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255,104,26,0.12),
      rgba(255,104,26,0.025) 40%,
      transparent 70%
    );

  filter: blur(25px);

  pointer-events: none;
}


.statement-content {
  position: relative;

  z-index: 2;

  width: min(
    100%,
    1050px
  );

  text-align: center;
}


.statement-content .eyebrow {
  display: block;

  margin-bottom: 50px;
}


.statement h2 {
  font-size:
    clamp(3.5rem, 8vw, 8.5rem);

  line-height: 0.87;

  letter-spacing:
    -0.075em;

  font-weight: 600;
}


.statement h2 span {
  display: block;

  color: #666;
}


.statement p {
  max-width: 430px;

  margin:
    60px auto 0;

  color: #777;

  font-size: 14px;

  line-height: 1.8;
}


.statement-sparkle {
  position: absolute;

  top: 5%;
  right: 7%;

  color: var(--orange);

  font-size: 22px;

  animation:
    sparkleTwinkle
    4s
    ease-in-out
    infinite;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact {
  position: relative;

  min-height: 800px;

  display: flex;
  align-items: center;

  justify-content: center;

  padding:
    140px 24px;

  overflow: hidden;
}


.contact::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      var(--bg),
      #080604
    );
}


.contact-glow {
  position: absolute;

  width: 500px;
  height: 500px;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255,104,26,0.12),
      transparent 70%
    );

  filter: blur(35px);

  pointer-events: none;

  transition:
    left 0.4s ease,
    top 0.4s ease;
}


.contact-content {
  position: relative;

  z-index: 2;

  width: min(
    100%,
    950px
  );

  text-align: center;
}


.contact-content .eyebrow {
  display: block;

  margin-bottom: 45px;
}


.contact h2 {
  font-size:
    clamp(4rem, 9vw, 9rem);

  line-height: 0.86;

  letter-spacing:
    -0.075em;
}


.contact h2 span {
  display: block;

  color: #777;
}


.contact-content > p {
  max-width: 480px;

  margin:
    55px auto 0;

  color: #777;

  font-size: 14px;

  line-height: 1.8;
}


.contact-buttons {
  display: flex;

  justify-content: center;

  gap: 10px;

  margin-top: 45px;
}


.contact-details {
  display: flex;

  justify-content: center;

  align-items: center;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 50px;

  color: #555;

  font-family:
    "DM Mono",
    monospace;

  font-size: 9px;
}


.contact-details a {
  transition:
    color 0.3s ease;
}


.contact-details a:hover {
  color: white;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  position: relative;

  padding:
    28px 24px;

  border-top:
    1px solid var(--line);

  background: #050505;
}


.footer-inner {
  width: min(
    100%,
    1280px
  );

  margin: auto;

  display: grid;

  grid-template-columns:
    1fr 1fr 1fr;

  align-items: center;
}


.footer-brand {
  font-weight: 700;

  font-size: 14px;

  letter-spacing: -0.05em;
}


.footer-brand span {
  color: var(--orange);
}


.footer-center {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  color: #4d4d4d;

  font-family:
    "DM Mono",
    monospace;

  font-size: 8px;

  text-transform: uppercase;

  letter-spacing: 0.12em;
}


.footer-sparkle {
  color: var(--orange);
}


.footer-year {
  color: #444;

  font-family:
    "DM Mono",
    monospace;

  font-size: 8px;

  text-align: right;
}


/* =========================================================
   GENERAL HOVER POLISH
   ========================================================= */

a,
button,
.service-card {
  cursor: pointer;
}


.is-hovering {
  z-index: 5;
}


.magnetic {
  will-change: transform;
}


/* =========================================================
   PAGE LOAD
   ========================================================= */

body:not(.page-ready) {
  opacity: 0;
}


body.page-ready {
  opacity: 1;

  transition:
    opacity 0.8s ease;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 900px) {

  .nav-links {
    gap: 20px;

    margin-left: 20px;
  }


  .hero {
    padding-top: 140px;
  }


  .hero-bottom {
    align-items: flex-start;

    flex-direction: column;

    margin-top: 60px;
  }


  .hero-description {
    max-width: 500px;
  }


  .about-content,
  .process-intro {
    grid-template-columns:
      1fr;
  }


  .about-copy {
    margin-top: 20px;
  }


  .process-intro > p {
    margin-top: 0;
  }


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

    row-gap: 70px;
  }


  .process-line {
    display: none;
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 650px) {

  :root {
    --radius: 22px;
  }


  .navbar {
    top: 12px;

    width:
      calc(100% - 24px);

    padding:
      10px 10px 10px 15px;
  }


  .nav-links {
    display: none;
  }


  .nav-cta {
    padding:
      10px 13px;
  }


  .hero {
    min-height:
      100svh;

    padding:
      130px 20px 100px;
  }


  .hero-title {
    font-size:
      clamp(
        3.4rem,
        15vw,
        5.5rem
      );

    line-height: 0.89;
  }


  .hero-bottom {
    margin-top: 55px;

    gap: 35px;
  }


  .hero-description {
    font-size: 13px;
  }


  .hero-actions {
    width: 100%;

    flex-direction: column;

    align-items: stretch;
  }


  .button {
    width: 100%;
  }


  .signature-sparkle {
    display: none;
  }


  .hero-side-text {
    display: none;
  }


  .scroll-indicator {
    bottom: 22px;

    left: 20px;
  }


  .section {
    width:
      calc(100% - 40px);

    padding:
      105px 0;
  }


  .section-heading {
    margin-top: 50px;

    font-size:
      clamp(
        3rem,
        14vw,
        5rem
      );
  }


  .section-top {
    padding-bottom: 25px;
  }


  .about-copy {
    margin-top: 45px;
  }


  .identity-card {
    min-height: 180px;

    margin-top: 60px;

    padding: 22px;

    align-items:
      flex-start;

    flex-direction:
      column;
  }


  .identity-right {
    text-align: left;
  }


  .service-grid {
    grid-template-columns: 1fr;

    margin-top: 60px;
  }


  .service-card {
    min-height: 290px;

    padding: 22px;
  }


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

    margin-top: 80px;
  }


  .process-item {
    padding-top: 55px;
  }


  .statement {
    min-height: 680px;

    padding:
      110px 20px;
  }


  .statement h2 {
    font-size:
      clamp(
        3.3rem,
        14vw,
        6rem
      );
  }


  .statement p {
    margin-top: 45px;

    font-size: 13px;
  }


  .statement-orb {
    width: 450px;
    height: 450px;
  }


  .contact {
    min-height: 680px;

    padding:
      110px 20px;
  }


  .contact h2 {
    font-size:
      clamp(
        3.6rem,
        15vw,
        6rem
      );
  }


  .contact-content > p {
    margin-top: 40px;
  }


  .contact-buttons {
    flex-direction: column;

    margin-top: 40px;
  }


  .contact-details {
    flex-direction: column;

    gap: 9px;
  }


  .footer-inner {
    grid-template-columns:
      1fr;

    gap: 18px;

    text-align: center;
  }


  .footer-center {
    order: 3;
  }


  .footer-year {
    text-align: center;
  }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }


  *,
  *::before,
  *::after {
    animation-duration:
      0.01ms !important;

    animation-iteration-count:
      1 !important;

    transition-duration:
      0.01ms !important;

    scroll-behavior:
      auto !important;
  }


  .reveal,
  .hero-line {
    opacity: 1 !important;

    transform: none !important;

    filter: none !important;
  }

}


/* =========================================================
   MOBILE PERFORMANCE
   ========================================================= */

@media (max-width: 650px) {

  .orb {
    filter: blur(70px);

    opacity: 0.08;
  }


  .background-grid {
    opacity: 0.1;
  }


  .liquid-glass {
    backdrop-filter:
      blur(15px);

    -webkit-backdrop-filter:
      blur(15px);
  }

}
